使用DDHotKey在我的Cocoa应用程序中创建用户可定义的热键



已经成功实现了Dave DeLong的DDHotKey,我现在想知道是否有可能使热键用户可定义?

应用中唯一专门处理热键的代码是:

- (IBAction)registerHotKey:(id)sender {
DDHotKeyCenter * c = [[DDHotKeyCenter alloc] init];
[c registerHotKeyWithKeyCode:1 modifierFlags:NSControlKeyMask target:self action:@selector(activateMain:) object:window];
[c release];

- (IBAction) unregisterHotKey:(id)sender {
DDHotKeyCenter * c = [[DDHotKeyCenter alloc] init];
[c unregisterHotKeyWithKeyCode:1 modifierFlags:NSControlKeyMask];
[c release];
}

我认为有必要重写这些部分,但我不确定这是不是真的,如果是真的,我不确定从哪里开始找

在我看来,有必要捕获键盘输入,也许将其保存为字符串…但除此之外,我真的不确定如何进行

是的,您可以使它们用户可配置。您将需要某种UI让用户自己键入键盘快捷键(我过去使用过shortcut Recorder)。从该控件获得的信息应该足以传递给DDHotKey注册函数。

相关内容

  • 没有找到相关文章

最新更新