-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from nowsecure/pypi-release
PyPI release
- Loading branch information
Showing
9 changed files
with
89 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
============= | ||
datagrid_gtk3 | ||
============= | ||
|
||
.. image:: https://semaphoreci.com/api/v1/projects/bd20f827-7591-4c58-87bb-e9235fdb9a0a/422070/shields_badge.svg | ||
:target: https://semaphoreci.com/nowsecure/datagrid-gtk3 | ||
|
||
.. image:: https://coveralls.io/repos/nowsecure/datagrid-gtk3/badge.svg | ||
:target: https://coveralls.io/r/nowsecure/datagrid-gtk3 | ||
|
||
|
||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
.. :changelog: | ||
History | ||
------- | ||
======= | ||
|
||
0.1.2 (2015-04-28) | ||
--------------------- | ||
------------------ | ||
|
||
* Initial public release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
Screenshots | ||
=========== | ||
|
||
"Chinook" example | ||
----------------- | ||
|
||
.. figure:: screenshots/table_view.png | ||
:alt: Table view | ||
|
||
Displaying a table from an SQLite database with text filtering. | ||
|
||
.. figure:: screenshots/date_ranges.png | ||
:alt: Date ranges. | ||
|
||
Displaying a table from an SQLite database with date range filtering. | ||
|
||
|
||
"Filebrowser" example | ||
--------------------- | ||
|
||
.. figure:: screenshots/icon_view.png | ||
:alt: Icon view | ||
|
||
Browsing the file system in icon view mode with thumbnails. | ||
|
||
|
||
"Selectable" example | ||
-------------------- | ||
|
||
.. figure:: screenshots/row_selection.png | ||
:alt: Row selection | ||
|
||
Persistent row selection in SQLite databases. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
Usage | ||
===== | ||
|
||
The basic usage scenario looks like this: | ||
|
||
.. code-block:: python | ||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# wheel==0.23.0 | ||
wheel>=0.23.0 | ||
python-dateutil>=2.4.2 | ||
sqlalchemy>=0.9 | ||
Pillow>=2.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters