blob: bf14a58ac1239b790833676ecb46a6b27c6499f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#import <QSInterface/QSInterface.h>
NS_ASSUME_NONNULL_BEGIN
@interface BBLiquidGlassBezelPrefs : QSPreferencePane {
// Add your preference outlets here
// For example:
// IBOutlet NSButton *enableEffectsButton;
// IBOutlet NSSlider *opacitySlider;
}
// Add any preference action methods here
// - (IBAction)toggleEffects:(id)sender;
// - (IBAction)adjustOpacity:(id)sender;
@end
NS_ASSUME_NONNULL_END
|