All Projects → nowsecure → datagrid-gtk3

nowsecure / datagrid-gtk3

Licence: MIT license
MVC framework for working with the Gtk3 TreeView widget

Programming Languages

python
139335 projects - #7 most used programming language
Makefile
30231 projects

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].