我需要检测用户何时在停靠栏菜单中按“退出”。
我的应用程序实际上只是Web界面后端服务器的启动器。我通过手动等待已启动的进程结束(使用轮询和睡眠)将其保留在停靠菜单中。 actvity监视器显示它没有响应所以我添加了一个本机函数来处理像“touches”这样的事件。 没有响应标志现在已经消失,但用户无法退出此应用程序(因为本机函数会处理该事件,我猜)。
我使用ctypes来访问该本机函数。
TVB = subprocess.popen(args)
coreFoundation = cdll.LoadLibrary('/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation')
CFRunLoopRunInMode = coreFoundation.CFRunLoopRunInMode # the native function
CFRunLoopRunInMode.restype = c_int32 # its return type
CFRunLoopRunInMode.argtypes = [ c_void_p, c_double, c_bool ] # its arguments types
defaultMode = c_void_p.in_dll(coreFoundation, u'kCFRunLoopDefaultMode') # the default mode to process events
sleepTime = c_double(5) # the duration to process the events
retAfterSourceHandled = c_bool(0) # do NOT return after processing
while not TVB.poll(): # keep alive as long as TVB is alive
CFRunLoopRunInMode(defaultMode, sleepTime, retAfterSourceHandled)
sleep(5)
#detect 'quit' here and stop TVB, then quit
我还会考虑CFRunLoopRunInMode
的其他解决方案......像processNextEvent()
之类的东西是理想的。
答案 0 :(得分:2)
此问题的可能解决方案是使用PyObjC和自定义UIApplicationDelegate实施。
import AppKit
import Foundation
from PyObjCTools import AppHelper
class ApplicationDelegate(Foundation.NSObject):
""" MAC OS UI specific Delegate class """
def applicationDidFinishLaunching_(self, notification):
""" Here you could register a timer to pull your sub-processes, for example. """
pass
def applicationWillTerminate_(self, notification):
""" This is the hook you get for when the user clicks QUIT in dock """
pass
app = AppKit.NSApplication.sharedApplication()
delegate = ApplicationDelegate.alloc().init()
app.setDelegate_(delegate)
AppHelper.runEventLoop()
最后,PyObjC与你尝试的ctypes加载没有太大的不同,但是它有一些帮助方法(比如AppKit.NSRunLoop.currentRunLoop()或AppHelper.stopEventLoop())可以使python代码更清晰。< / p>
对于这个解决方案,我假设有一个Python项目进一步打包用于部署py2app。我使用了pyObjc 2.3版(在Mac OS x 10.7.5上的Python 2.7中安装了easy_install)。