2012-06-25 134 views
1

我正在使用「快速」創建應用程序,並且我想將Webkit小部件添加到我的窗口中。我認爲「應該很容易」,但是一如既往,這不是那麼容易。導入WebKit會導致應用程序在啓動時失敗。

從我添加import webkit開始,應用程序無法啓動。

[email protected]:~/Ubuntu One/Python/gtkreddit$ quickly run 
/usr/lib/python2.7/dist-packages/gobject/constants.py:24: Warning: g_boxed_type_register_static: assertion `g_type_from_name (name) == 0' failed 
    import gobject._gobject 
/usr/lib/python2.7/dist-packages/gtk-2.0/gtk/__init__.py:40: Warning: specified class size for type `PyGtkGenericCellRenderer' is smaller than the parent type's `GtkCellRenderer' class size 
    from gtk import _gtk 
/usr/lib/python2.7/dist-packages/gtk-2.0/gtk/__init__.py:40: Warning: g_type_get_qdata: assertion `node != NULL' failed 
    from gtk import _gtk 

整個源代碼可以找到here。我正在討論的具體文件是this one

回答

5

看來你在混合綁定。如果你已經在使用GObject Introspection,那就留下來。嘗試:

from gi.repository import WebKit 

或使用舊的綁定爲GTK(pygtk)。

相關問題