GTKMM set_value_vfunc 函数是骗人的吗?
我一直在尝试修改继承自 TreeModel
和 TreeSortable
的自定义树视图的内容。然而,虚拟函数set_value_impl
仅包含一个断言。当我尝试寻找示例实现时,他们都引用了 GTKMM 网站,上面写着“您可能可以通过调用 set_value_vfunc()
来实现它”。
我还没有发现 GTKMM 中存在这样的函数。
这里有人在尝试修改树视图的内容时与 GTKMM TreeModel
发生冲突吗?
I've been attempting to modify the contents of a custom tree view that inherits from TreeModel
and TreeSortable
. However, the virtual function set_value_impl
contains only an assert. When I tried to look for example implementations, they all quote the GTKMM website which says "You can probably just implement this by calling set_value_vfunc()
".
I have not found such function to exist anywhere in GTKMM.
Has anyone here run afoul of the GTKMM TreeModel
when trying to modify the contents of a tree view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如上面的评论所述,
set_value_vfunc()
函数根本不存在。As covered in the comments above, the
set_value_vfunc()
function simply does not exist.