adium/adium

Docs:
adium-1.5.11
2016-09-04, Robert Vehse
1edf7df32895
Docs:
* Don't advertise services whose support is broken in Adium with no fix in sight.
* Instead, add a list of third-party protocol plugins.
* Minor tweaks.
//
// 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