[kwlug-disc] A Sorted and Filtered Treeview Model in GTK3 and Python

John Driezen jdriezen at sympatico.ca
Tue Jun 1 21:14:30 EDT 2021


I am trying to expand upon a tutorial example located at 
https://python-gtk-3-tutorial.readthedocs.io/en/latest/treeview.html in 
section 13.5.  I wish to sort the filtered rows by column.  The tutorial 
suggests that this is possible, and the Homebank program (written in C 
and GTK3) contains many examples of this.  My attempt at sorting the 
filtered rows follows.   The demo program works just fine as is, but 
when I attempt to sort the filtered rows I get a blank scrolled window.  
Anyone have any suggestions?

""" Sorted and Filtered TreeView Demo Program """
import gi

gi.require_version("Gtk", "3.0")
from gi.repository import Gtk

# list of tuples for each software
SOFTWARE_LIST = [
     ("Firefox", 2002, "C++"),
     ("Eclipse", 2004, "Java"),
     ("Pitivi", 2004, "Python"),
     ("Netbeans", 1996, "Java"),
     ("Chrome", 2008, "C++"),
     ("Filezilla", 2001, "C++"),
     ("Bazaar", 2005, "Python"),
     ("Git", 2005, "C"),
     ("Linux Kernel", 1991, "C"),
     ("GCC", 1987, "C"),
     ("Frostwire", 2004, "Java"),
]

class TreeViewFilterWindow(Gtk.Window):
     """ TreeViewFilterWindow class """
     def __init__(self):
         Gtk.Window.__init__(self, title="Treeview Filter Demo")
         self.set_border_width(10)

         # Setting up the self.grid in which the elements are to be 
positioned
         self.grid = Gtk.Grid()
         self.grid.set_column_homogeneous(True)
         self.grid.set_row_homogeneous(True)
         self.add(self.grid)

         # Creating the ListStore model
         self.software_liststore = Gtk.ListStore(str, int, str)
         for software_ref in SOFTWARE_LIST:
             self.software_liststore.append(list(software_ref))
         self.current_filter_language = None

         # Creating the filter, feeding it with the liststore model
         self.language_filter = self.software_liststore.filter_new()
         # Setting the filter function
self.language_filter.set_visible_func(self.language_filter_func)

         # Creating the treeview, making it use the filter as a model 
and adding the columns
         self.filteredtreeview = 
Gtk.TreeView.new_with_model(self.language_filter)
         for i, column_title in enumerate(["Software", "Release Year", 
"Programming Language"]):
             renderer = Gtk.CellRendererText()
             column = Gtk.TreeViewColumn(column_title, renderer, text=i)
             self.filteredtreeview.append_column(column)

         # Create sorted Gtk.TreeModel by feeding it the filtered tree.

         #self.sortedtree = Gtk.TreeModelSort(model=self.language_filter)
         #self.sortedtree.set_sort_column_id(0, Gtk.SORT_ASCENDING)
         #self.sortedtreeview = Gtk.TreeView.new_with_model(self.sortedtree)

         # Creating buttons to filter by programming language and 
setting up their events
         self.buttons = list()
         for prog_language in ["Java", "C", "C++", "Python", "None"]:
             button = Gtk.Button(label=prog_language)
             self.buttons.append(button)
             button.connect("clicked", self.on_selection_button_clicked)

         # Setting up the layout, putting the treeview in a 
scrollwindow, and the buttons in a
         # set_row_homogeneous
         self.scrollable_treelist = Gtk.ScrolledWindow()
         self.scrollable_treelist.set_vexpand(True)
         self.grid.attach(self.scrollable_treelist, 0, 0, 8, 10)
         self.grid.attach_next_to(self.buttons[0], self.scrollable_treelist,
                                  Gtk.PositionType.BOTTOM, 1, 1)

         for i, button in enumerate(self.buttons[1:]):
             self.grid.attach_next_to(button, self.buttons[i], 
Gtk.PositionType.RIGHT, 1, 1)
         self.scrollable_treelist.add(self.filteredtreeview)
         #self.scrollable_treelist.add(self.sortedtreeview)

         self.show_all()

     def language_filter_func(self, model, iter, data):
         """ Tests if the language in the row is the one in the filter """
         if self.current_filter_language is None or 
self.current_filter_language == "None":
             return True
         else:
             return model[iter][2] == self.current_filter_language

     def on_selection_button_clicked(self, widget):
         """ Called on any of the button clicks """
         # Set the current language filter to the button's 
scrollable_treelist
         self.current_filter_language = widget.get_label()
         print("%s language selected!" % self.current_filter_language)
         # Update the filter, which updates the view in turn
         self.language_filter.refilter()

TV_WIN = TreeViewFilterWindow()
TV_WIN.connect("destroy", Gtk.main_quit)
TV_WIN.show_all()
Gtk.main()

John Driezen

jdriezen at sympatico.ca






More information about the kwlug-disc mailing list