特定行invisib的树视图中的PyGtk set复选框

2024-09-28 01:27:51 发布

您现在位置:Python中文网/ 问答频道 /正文

我想让节点“parent 1”和“child 1 of parent 1”中的复选框不可见。你知道怎么解决这个问题吗? 我仍然在为一个特定的行而不是整个列修改单元格呈现器。在

enter image description here

代码如下:

#!/usr/bin/env python

# example basictreeview.py

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

class BasicTreeViewExample:
    # close the window and quit
    def delete_event(self, widget, event, data=None):
        gtk.main_quit()
        return False

    def __init__(self):
        # Create a new window
        self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)

        self.window.set_title("Basic TreeView Example")

        self.window.set_size_request(200, 200)

        self.window.connect("delete_event", self.delete_event)

        # create a TreeStore with one string column to use as the model
        self.treestore = gtk.TreeStore(str)

        # we'll add some data now - 4 rows with 3 child rows each
        for parent in range(4):
            piter = self.treestore.append(None, ['parent %i' % parent])
            for child in range(3):
                self.treestore.append(piter, ['child %i of parent %i' %
                                              (child, parent)])

        # create the TreeView using treestore
        self.treeview = gtk.TreeView(self.treestore)

        # create the TreeViewColumn to display the data
        self.tvcolumn = gtk.TreeViewColumn('Column 0')

        # add tvcolumn to treeview
        self.treeview.append_column(self.tvcolumn)

        # create a CellRendererText to render the data
        self.cell = gtk.CellRendererText()
        self.cell1 = gtk.CellRendererToggle()

        # add the cell to the tvcolumn and allow it to expand
        self.tvcolumn.pack_start(self.cell, True)
        self.tvcolumn.pack_start(self.cell1, True)
        # set the cell "text" attribute to column 0 - retrieve text
        # from that column in treestore
        self.tvcolumn.add_attribute(self.cell, 'text', 0)

        # make it searchable
        self.treeview.set_search_column(0)

        # Allow sorting on the column
        self.tvcolumn.set_sort_column_id(0)

        # Allow drag and drop reordering of rows
        self.treeview.set_reorderable(True)

        swH = gtk.ScrolledWindow()
        swH.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
        swH.add(self.treeview)
        self.window.add(swH)

        self.window.show_all()

def main():
    gtk.main()

if __name__ == "__main__":
    tvexample = BasicTreeViewExample()
    main()

我希望你能帮助我。在


Tags: thetoselfaddchildgtkmaincell
1条回答
网友
1楼 · 发布于 2024-09-28 01:27:51

为visible添加一个属性并将bool放在treestore中,添加行时只需在添加子行时将其设置为false。在

gtk.TreeStore(str, bool)

self.tvcolumn.add_attribute(self.cell1, 'visible', 1)

self.treestore.append(None, ['parent %i' % parent, True])

self.treestore.append(piter, ['child %i of parent %i' %
                                          (child, parent), False])

这大概就是你需要改变的。在

请注意,我对python的语法不太了解(我对GTK使用了C#绑定)

相关问题 更多 >

    热门问题