datagrid_gtk3

MVC framework for working with the GTK3 TreeView widget.


Keywords
mvc, sqlite, gtk, gtk3, grid
License
MIT
Install
pip install datagrid_gtk3==0.1.5

Documentation

datagrid_gtk3

Test Results Test Coverage Latest PyPI Version Code Health

SYNOPSIS

MVC framework for working with the Gtk3 TreeView widget. Includes classes for file browsing and displaying SQLite databases.

MOTIVATION

Created on the account of the reoccurring need to display and interact with contents of SQLite databases in Gtk applications.

EXAMPLE

The basic usage scenario looks like this:

win = Gtk.Window()

data_source = SQLiteDataSource(db_path, table_name)
datagrid_container = DataGridContainer(win)
controller = DataGridController(datagrid_container, data_source)
datagrid_container.grid_vbox.reparent(win)

win.show()

For more advanced usages see the example applications in the "examples" folder.

"Chinook" example

Table view

Displaying a table from an SQLite database with text filtering.

Date ranges.

Displaying a table from an SQLite database with date range filtering.

"Filebrowser" example

Icon view

Browsing the file system in icon view mode with thumbnails.

"Selectable" example

Row selection

Persistent row selection in SQLite databases.