Added stubs for the GUI part and added some more helpful information.

This commit is contained in:
Johannes Findeisen 2021-12-28 02:39:55 +01:00
commit 580cc9d967
5 changed files with 212 additions and 0 deletions

16
docs/LINKS.md Normal file
View file

@ -0,0 +1,16 @@
# Useful links for development in the future
## Python and GTK+
All GUI stuff will be written in Python using the GTK+ GUI toolkit. Some Links with API documentation and tutorials.
- https://www.gtk.org/docs/language-bindings/python/ - GTK and Python documentation
- https://python-gtk-3-tutorial.readthedocs.io/en/latest/ - The Python GTK+ 3 Tutorial
- https://wiki.python.org/moin/PyGtk - PyGTK documentation wiki
- https://pygobject.readthedocs.io/en/latest/ - PyGObject documentation
- https://lazka.github.io/pgi-docs/ - PyGObject API reference
## Python and Glade
- https://python-gtk-3-tutorial.readthedocs.io/en/latest/builder.html - Glade and Gtk.Builder
- https://gnipsel.com/glade/index.html - Glade3 Gtk Python Tutorial