我正在尝试使用PyObjC制作一个应用程序,并且努力寻找如何记录箭头键(左右)。我希望能够记录用户每次按向左和向右箭头键的时间。我正在使用另一个在网上找到的示例。我想使用键盘上的箭头键,而不是前面示例中用于增加和减少伤害的按钮。过了一会儿,以为我可以在这里得到一些帮助。谢谢!
from Cocoa import *
from Foundation import NSObject
class TAC_UI_Controller(NSWindowController):
counterTextField = objc.IBOutlet()
def windowDidLoad(self):
NSWindowController.windowDidLoad(self)
# Start the counter
self.count = 0
@objc.IBAction
def increment_(self, sender):
self.count += 1
self.updateDisplay()
@objc.IBAction
def decrement_(self, sender):
self.count -= 1
self.updateDisplay()
def updateDisplay(self):
self.counterTextField.setStringValue_(self.count)
if __name__ == "__main__":
app = NSApplication.sharedApplication()
# Initiate the contrller with a XIB
viewController = test.alloc().initWithWindowNibName_("test")
# Show the window
viewController.showWindow_(viewController)
# Bring app to top
NSApp.activateIgnoringOtherApps_(True)
from PyObjCTools import AppHelper
AppHelper.runEventLoop()
最佳答案
您的NSView
派生类应实现keyDown_
和/或keyUp_
。您还需要使acceptsFirstResponder
返回True:
from AppKit import NSView
class MyView(NSView)
def keyDown_(self, event):
pass
def keyUp_(self, event):
pass
def acceptsFirstResponder(self):
return True
这是您可以使用的PyObjC文档中的示例实现:https://pythonhosted.org/pyobjc/examples/Cocoa/AppKit/DragItemAround/index.html
关于macos - PyObjC中的箭头键事件处理,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27955985/