adium/adium

5883c460b8cb
Updated Sparkle to 1.17.0, to fix a problem when copying broken symlinks.
//
// SGHotKeyCenter.h
// SGHotKeyCenter
//
// Created by Justin Williams on 7/26/09.
// Copyright 2009 Second Gear. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class SGHotKey;
@interface SGHotKeyCenter : NSObject {
NSMutableDictionary *hotKeys; // Keys are NSValue of EventHotKeyRef
BOOL eventHandlerInstalled;
BOOL hasInited;
}
+ (SGHotKeyCenter *)sharedCenter;
- (BOOL)registerHotKey:(SGHotKey *)theHotKey;
- (void)unregisterHotKey:(SGHotKey *)theHotKey;
- (NSArray *)allHotKeys;
- (SGHotKey *)hotKeyWithIdentifier:(id)theIdentifier;
@end