Markus Neteler 744fcaefa6 manuals and docs: update broken URLS (#1003) 4 gadi atpakaļ
..
Makefile ede6c946be wxGUI example application update to work with current gui 11 gadi atpakaļ
README ede6c946be wxGUI example application update to work with current gui 11 gadi atpakaļ
dialogs.py bb779c2f13 i18N: cleanup gettext usage for Python code (fixes https://trac.osgeo.org/grass/ticket/3790) (contributed by pmav99) 6 gadi atpakaļ
frame.py bb779c2f13 i18N: cleanup gettext usage for Python code (fixes https://trac.osgeo.org/grass/ticket/3790) (contributed by pmav99) 6 gadi atpakaļ
g.gui.example.html 744fcaefa6 manuals and docs: update broken URLS (#1003) 4 gadi atpakaļ
g.gui.example.py be0e590810 change Python shebang to python3 (#75) 5 gadi atpakaļ
toolbars.py ede6c946be wxGUI example application update to work with current gui 11 gadi atpakaļ

README

Motivation
----------
Example Tool should help new GRASS GUI programmers who are interested in
adding or improving GRASS GIS functionality or writing GRASS GIS GUI-based
application for their own purposes.

How to use Example Tool
-----------------------
Example Tool is a simple template for applications which are
supposed to display maps and make computations using GRASS modules.
It covers several often occurring tasks. It can be helpful for all
new developers who are interested in wxGUI programming.
Run Example Tool, have a look at wxGUI.Example.html and than
look at the source code to see how it works.

Run Example Tool
----------------
To run Example Tool can run as a standalone application (in GRASS environment)
or it can be launched from the console.

1. Go to GRASS root directory

2. Copy directory ./doc/gui/wxpython/example to ./gui/wxpython/example

3. Edit ./gui/wxpython/Makefile:

SRCFILES := $(wildcard icons/*.* scripts/* xml/*) \
- $(wildcard core/* dbmgr/* gcp/* gmodeler/* ... \
+ $(wildcard core/* dbmgr/* example/* gcp/* gmodeler/* ... \

-PYDSTDIRS := $(patsubst %,$(ETCDIR)/%,core dbmgr gcp gmodeler ... \
+PYDSTDIRS := $(patsubst %,$(ETCDIR)/%,core dbmgr example gcp gmodeler ... \

4. Run make (in ./gui/wxpython)

Now you can start the application by running

$ g.gui.example

from terminal or wxGUI command console. Try also g.gui.example --help.

If you want to access Example Tool from Layer Manager menu, there are
a few more things to be done.

5. Edit ./gui/wxpython/xml/menudata.xml. Add following code to appropriate place:


Example
Example help (for statusbar)
raster
OnExample


6. Add folowing event handler to class GMFrame in ./gui/wxpython/lmgr/frame.py:

def OnExample(self, event):
"""!Launch ExampleTool"""
from example.frame import ExampleMapFrame
win = ExampleMapFrame(parent=self, giface=self._giface)
win.CentreOnScreen()

win.Show()

7. Run make again.


Note
----
Feel free to improve Example Tool or suggest possible improvements.