tinc/gui
Guus Sliepen 386c1aff08 Merge Tinc.py into tinc-gui to simplify make install.
Autoconf/automake's Python support is strange.
2011-06-25 17:39:02 +02:00
..
Makefile.am Merge Tinc.py into tinc-gui to simplify make install. 2011-06-25 17:39:02 +02:00
README.gui Start of a GUI for tinc. 2009-12-16 21:18:21 +01:00
tinc-gui Merge Tinc.py into tinc-gui to simplify make install. 2011-06-25 17:39:02 +02:00

This experimental GUI is written in Python with wxPython widgets. You need to
have both installed for it to work. After starting tinc with either tincd or
tincctl, you can start the gui:

tincd -n vpn
tinc-gui -n vpn

If the GUI cannot find the controlcookie (for example if it is not in
/var/run), you can specify its location manually:

tinc-gui --controlcookie /usr/local/var/run/tinc.vpn.cookie

The following things sort of work:

- Changing the debug level from the settings page
- Viewing the list of connections, nodes, edges and subnets. These lists will
  be refreshed once per second.
- Right-clicking on a connection brings up a popup menu, which allows you to
  close a connection.

Python was chosen to enable rapid application development, wxWidgets for its
cross-platform compatibility and platform-native widgets. Once the GUI is
matured, it will probably rewritten in C++ to allow static linking and easy
distribution, without needing to install both Python and wxWidgets.