gpt4 book ai didi

python - 在 PyGTK/GObject 中使用枚举属性

转载 作者:太空宇宙 更新时间:2023-11-03 19:36:56 26 4
gpt4 key购买 nike

This tutorial在 Python 中使用 GObject 仅涵盖使用 gobject.TYPE_FLOAT 类型的属性。

我已将其调整为使用枚举类型:

import pygtk
pygtk.require('2.0')
import gobject

FUEL_NONE = 0
FUEL_SOME = 1
FUEL_FULL = 2

class Car(gobject.GObject):
__gproperties__ = {
'fuel' : (gobject.TYPE_ENUM, # type
'fuel of the car', # nick name
'amount of fuel that remains in the tank', # description
FUEL_SOME, # default value
gobject.PARAM_READWRITE) # flags
}

# <<rest of demo code>>

...但是当我尝试运行它时,出现以下错误:

/usr/lib/pymodules/python2.5/gtk-2.0/gobject/__init__.py:114: Warning: g_param_spec_enum: assertion `g_enum_get_value (enum_class, default_value) != NULL' failed
type_register(cls, namespace.get('__gtype_name__'))
Traceback (most recent call last):
File "gcar.py", line 9, in <module>
class Car(gobject.GObject):
File "/usr/lib/pymodules/python2.5/gtk-2.0/gobject/__init__.py", line 60, in __init__
cls._type_register(cls.__dict__)
File "/usr/lib/pymodules/python2.5/gtk-2.0/gobject/__init__.py", line 114, in _type_register
type_register(cls, namespace.get('__gtype_name__'))
TypeError: Error when calling the metaclass bases
could not create param spec for type GEnum (while registering property 'fuel' for GType '__main__+Car')

我错过了什么?

最佳答案

仅仅告诉__gproperties__它是一个枚举类型还不够;您需要向 GObject 类型系统注册枚举,然后使用从中获取的 GType 值而不是 gobject.TYPE_ENUM。至少,that's how it's done in C 。我不确定 PyGTK 执行此操作的正确方法是什么,但它可能涉及编写 .defs 文件并在其上运行 pygobject-codegen-2.0

当然,将 gobject.TYPE_INT 类型的属性设置为与枚举范围匹配的最小值和最大值可能更容易,除非您真的需要 GObject 系统来理解您的枚举的详细信息。

关于python - 在 PyGTK/GObject 中使用枚举属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3137262/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com