I have a GUI in python using Tkinter with multiple frames inside the main GUI. Added another frame to show a treeview of a directory (which will have sub directories as well) and filter to show only files of specific type. Then user selects file(s) by clicking on the checkbox shown to the left of every file to do further processing. I started off with this sample. Is it possible to use ttk treeview with a checkbox to the left of each entry like in tix as shown here?
Basically would like to have all the subitems auto checked when a folder is checked etc. Just like how a windows explorer dialogs work.
any suggestions?
This is possible with the
CheckboxTreeview
widget from the ttkwidgets module. The documentation is available here.CheckboxTreeview
inherits fromttk.Treeview
, so you can create a column for the file size just like in a regularttk.Treeview
, with thecolumns
option. Then you can set the columns' labels with theFinally if you want to change the style of the checkboxes, you can do so by replacing them with you own images. The 3 checkbox states are done using the images:
tree.im_checked
,tree.im_unchecked
,tree.im_tristate
. You can replace them withHere is the full code: