我正在尝试将 Python 程序从 GTK2 移植到 GTK3。

我了解 GDK_SMOOTH_SCROLL_MASK 的使用,但找不到对 gdk_event_get_scroll_deltas() 实现的引用。

最佳答案

它应该在 Gdk.Event.get_scroll_deltas 中。如果没有,您应该检查您的库版本。

eric@hum:():~$ python3
Python 3.2.3 (default, Jun 25 2012, 23:10:56)
[GCC 4.7.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from gi.repository import Gdk
>>> "get_scroll_deltas" in dir(Gdk.Event)
True

关于python - 如何使用 Python GTK3 (gi.repository) gdk_event_get_scroll_deltas() 方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13433520/

10-12 07:38