1

我想Notification通过回调向我添加一个动作。我正在使用带有以下代码的 pygobject:

import logging
from time import sleep

import gi
gi.require_version('Notify', '0.7')
from gi.repository import Notify

def callback(*args, **kwargs):
    print("Got callback")
    print(locals())


def main():
    Notify.init("Hello World")
    notification = Notify.Notification.new("Testing")
    notification.add_action("my action", "Submit", callback)
    notification.show()
    sleep(5)

if __name__ == '__main__':
    logging.basicConfig(level=logging.DEBUG)
    main()

当我运行脚本时,我看到带有“提交”按钮的通知,但是当我单击该按钮时,回调没有运行(据我所知)。

当我使用 ipython 进行检查时,我得到以下帮助add_action

In [65]: Notify.Notification.add_action?
Type:        FunctionInfo
String form: gi.FunctionInfo(add_action)
File:        /usr/lib/python3.5/site-packages/gi/__init__.py
Docstring:   add_action(self, action:str, label:str, callback:Notify.ActionCallback, user_data=None)

所以我看到回调应该是一个ActionCallback?然后我检查那个类:

In [67]: Notify.ActionCallback
---------------------------------------------------------------------------
NotImplementedError                       Traceback (most recent call last)
<ipython-input-67-aa40d4997598> in <module>()
----> 1 Notify.ActionCallback

/usr/lib/python3.5/site-packages/gi/module.py in __getattr__(self, name)
    231             wrapper = info.get_value()
    232         else:
--> 233             raise NotImplementedError(info)
    234
    235         # Cache the newly created wrapper which will then be

NotImplementedError: gi.CallbackInfo(ActionCallback)

...我得到一个NotImplementedError. 那么通知操作只是没有在 PyGObject 中实现吗?或者我在将回调传递给方法时做错了add_action什么?

我在arch linux上,使用包python-gobject3.22.0-1,运行python 3.5.2。

4

1 回答 1

4

原来我需要运行 Gtk 主循环:

from gi.repository import Gtk
Gtk.main()

然后回调被调用就好了

于 2016-11-21T19:00:54.423 回答