在 PyGObject 中使用 GtkSourceView 从 Glade 加载 GUI

Posted

技术标签:

【中文标题】在 PyGObject 中使用 GtkSourceView 从 Glade 加载 GUI【英文标题】:Load GUI from a Glade with GtkSourceView in PyGObject 【发布时间】:2012-05-18 10:43:27 【问题描述】:

我正在尝试使用在 PyGObject 中具有 GtkSourceView 小部件的 Glade 文件。我写了一篇关于如何在 Glade 中开始使用新的 GtkSourceView 3.0 的小指南:http://cjenkins.wordpress.com/2012/05/08/use-gtksourceview-widget-in-glade/

问题是当我想从 PyGObject 加载 Glade 时:

from gi.repository import Gtk, GtkSource
from os.path import abspath, dirname, join

WHERE_AM_I = abspath(dirname(__file__))

class MyApp(object):

    def __init__(self):
        self.builder = Gtk.Builder()
        self.glade_file = join(WHERE_AM_I, 'test.glade')
        self.builder.add_from_file(self.glade_file)

if __name__ == '__main__':
    try:
        gui = MyApp()
        Gtk.main()
    except KeyboardInterrupt:
        pass

当我运行那个文件时,我得到了这个错误:

Traceback (most recent call last):
  File "test.py", line 15, in <module>
    gui = MyApp()
  File "test.py", line 11, in __init__
    self.builder.add_from_file(self.glade_file)
  File "/usr/lib/python2.7/dist-packages/gi/types.py", line 43, in function
    return info.invoke(*args, **kwargs)
gi._glib.GError: Invalid object type `GtkSourceView'

Glade 文件 (test.glade) 只是一个包含 GtkSourceView 小部件的窗口:

<?xml version="1.0" encoding="UTF-8"?>
<interface>
  <!-- interface-requires gtksourceview 3.0 -->
  <!-- interface-requires gtk+ 3.0 -->
  <object class="GtkWindow" id="window1">
    <property name="can_focus">False</property>
    <child>
      <object class="GtkSourceView" id="gtksourceview1">
        <property name="visible">True</property>
        <property name="can_focus">True</property>
        <property name="has_tooltip">True</property>
        <property name="left_margin">2</property>
        <property name="right_margin">2</property>
        <property name="tab_width">4</property>
        <property name="auto_indent">True</property>
        <property name="indent_on_tab">False</property>
      </object>
    </child>
  </object>
</interface>

目前我不知道如何解决这个问题。我想我需要在调用 add_from_file() 之前注册某种类型,不是吗?欢迎任何想法。

我正在使用:

Ubuntu Precise 12.04 格莱德 3.12.0 libgtksourceview 3.0 Gtk+ 3.0

亲切的问候

【问题讨论】:

【参考方案1】:

我想通了:D 我只需要在调用 add_from_file() 之前在 GObject 中注册新类型,正如我所怀疑的那样。只需在 gi.repository 的导入中添加 GObject 并像这样调用 type_register()

from gi.repository import Gtk, GtkSource, GObject
from os.path import abspath, dirname, join

WHERE_AM_I = abspath(dirname(__file__))

class MyApp(object):

    def __init__(self):
        self.builder = Gtk.Builder()
        self.glade_file = join(WHERE_AM_I, 'test.glade')
        GObject.type_register(GtkSource.View)
        self.builder.add_from_file(self.glade_file)

if __name__ == '__main__':
    try:
        gui = MyApp()
        Gtk.main()
    except KeyboardInterrupt:
        pass

我将使用此信息更新页面。

亲切的问候

【讨论】:

以上是关于在 PyGObject 中使用 GtkSourceView 从 Glade 加载 GUI的主要内容,如果未能解决你的问题,请参考以下文章

Windows 上的 PyGObject

python SITCON 2018中使用的PyGObject示例。

在Pygobject GTK3中使用Gtk.GLArea

如何使用 Python 2.6 在 Windows 上安装 PyGTK / PyGobject?

使用 Pygobject 和 Python 3 从内存数据中显示图像

在 PyGObject 内省中,带有 Python 的 GTK 中的线程是不是发生了变化?