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