diff options
Diffstat (limited to 'macosx/HBPreferencesController.h')
-rw-r--r-- | macosx/HBPreferencesController.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/macosx/HBPreferencesController.h b/macosx/HBPreferencesController.h index 6003aa8bd..9b953998c 100644 --- a/macosx/HBPreferencesController.h +++ b/macosx/HBPreferencesController.h @@ -5,6 +5,14 @@ #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; |