adium/adium

Updated Changes.txt for 1.5.10.4.
adium-1.5.10.4
2017-04-25, Robert Vehse
09440b7b46e0
Updated Changes.txt for 1.5.10.4.
//
// 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