blob: 48e294a42de8db72175f10e761b3aad3ad3b7583 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* @file
* Interface of class HBPreferencesController.
*/
#import <Cocoa/Cocoa.h>
typedef NS_ENUM(NSUInteger, HBDoneAction) {
HBDoneActionDoNothing = 0,
HBDoneActionAlert = 1,
HBDoneActionNotification = 2,
HBDoneActionAlertAndNotification = 3,
HBDoneActionSleep = 4,
HBDoneActionShutDown = 5,
};
@interface HBPreferencesController : NSWindowController <NSToolbarDelegate>
+ (void)registerUserDefaults;
@end
|