gpt4 book ai didi

python - Gtk3+ Pygobject 在 TreeView 中选择列

转载 作者:太空宇宙 更新时间:2023-11-04 00:48:50 25 4
gpt4 key购买 nike

当用户单击 TreeView 中的单元格时,是否有一种有效的方式/方法来检索 ListModel 中所选单元格的列?或者当我调用 get_selected() 方法时,是否没有 Cells 之类的东西,只能选择 Rows 并返回它们的 treeiter/model?

我想向用户展示一个数值矩阵,让他选择一个,然后绘制这些值。

如果您手头有任何文档/示例,请不要犹豫分享:)

编辑:我试图做的是将列标题上的单击事件连接到一个函数,该函数为我提供了我在创建期间在列文本中编码的列号。但这似乎不太对..

如果有帮助的话,我可以创建一个最小的工作示例..

最佳答案

访问 GtkTreeView 中的“列”比乍一看要复杂一些。原因之一是列实际上可以包含多个项目,然后显示为新列,即使它们是“打包”的。

识别列的一种方法是为每个列分配一个 sort_id,但这会使标题可点击,如果排序实际上不起作用,这是不自然的。

我设计了这个(有点狡猾的)方法:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# test_coord.py
#
# Copyright 2016 John Coppens <john@jcoppens.com>
#
# This program is free software```; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
#


from gi.repository import Gtk

class MainWindow(Gtk.Window):
def __init__(self):
super(MainWindow, self).__init__()
self.connect("destroy", lambda x: Gtk.main_quit())

trview = Gtk.TreeView()
tstore = Gtk.ListStore(str, str, str)
renderer = Gtk.CellRendererText()
for i in range(3):
col = Gtk.TreeViewColumn("Col %d" % i, renderer, text = i)
col.colnr = i
trview.append_column(col)

trview.set_model(tstore)
trview.connect("button-press-event", self.on_pressed)

for i in range(0, 15, 3):
tstore.append((str(i), str(i+1), str(i+2)))

self.add(trview)
self.show_all()

def on_pressed(self, trview, event):
path, col, x, y = trview.get_path_at_pos(event.x, event.y)
print("Column = %d, Row = %s" % (col.colnr, path.to_string()))

def run(self):
Gtk.main()


def main(args):
mainwdw = MainWindow()
mainwdw.run()

return 0

if __name__ == '__main__':
import sys
sys.exit(main(sys.argv))

这里的技巧是利用 Python 提供的可能性将属性添加到现有类中。所以我向每一列添加了一个 colnr 并用它来识别被点击的单元格。在 C++ 中,需要使用 set_dataget_data 方法来做同样的事情(这在 Python 中不可用)。

关于python - Gtk3+ Pygobject 在 TreeView 中选择列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38057144/

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