summaryrefslogtreecommitdiffstats
path: root/src/ui
Commit message (Collapse)AuthorAgeFilesLines
* switch default theme to openslxSebastian Schmelzer2011-05-121-3/+3
| | | | add unifr theme
* Merge branch 'master' of openslx.org:openslx/tools/vmchooserJohann Latocha2011-03-021-8/+15
|\ | | | | | | | | Conflicts: src/main.cpp
| * ..Sebastian Schmelzer2011-03-021-6/+6
| |
| * Merge branch 'master' of openslx.org:openslx/tools/vmchooserSebastian Schmelzer2011-03-021-3/+3
| |\ | | | | | | | | | | | | Conflicts: src/main.cpp
| * | gui stuff ..Sebastian Schmelzer2011-03-021-4/+11
| |/
* / * dbus interface removedJohann Latocha2011-03-021-53/+41Star
|/ | | | | * write pvs config directly * use "vmchooser --pvs"
* new rz style layoutSebastian Schmelzer2011-03-021-8/+112
|
* 1) cmd-switch to use a window managerJohann Latocha2011-03-011-3/+15
| | | | 2) openslx logo added
* Tidy up the codeJan Darmochwal2010-10-071-1/+1
| | | | | | | | | | | | | | | | | | * fixed compiler warnings, added -Werror to CMakeLists.txt * removed LibXml2 and boost stuff from CMakeLists.txt * fixed some things cpplint.py complains about: * make single-argument constructors explicit * add space before if/for/while/... * don't put { on a line of its own * remove space after ! operator * add space between // and comment * remove extra space before ( in function call * remove extra space before ) * shorten lines to <= 80 characters * remove blank lines at the start of a code block * maybe others
* i18n support and German translationJan Darmochwal2010-10-061-2/+2
| | | | | | Translation can be done with .ts-files in src/i18n/de.ts. The resulting .qm-files are stored as resources in the program binary. build.sh has a new option --update-translations that causes the .ts files to be updated
* simple PVS configuration in vmchooserJan Darmochwal2010-10-051-0/+101
| | | | | | | | | | This patch adds a GroupBox with PVS access restriction options to vmchooser. Vmchooser checks if a PVS daemon is running and if so, displays some access configuration options. The options will be sent to the PVS daemon after a session has been started (just before vmchooser exits). All PVS configuration program logic is contained in the Dialog class. (It would probably be better to use a custom widget for the PVS options.) The file org.openslx.pvs.xml has been copied from a PVS build. This file has to be updated manually when the PVS D-Bus specification changes.
* TreeView for sessions (replaces ListView)Jan Darmochwal2010-10-031-2/+2
| | | | | | | | | TreeView with SessionTreeModel replaces the old List View Other changes: * fixed bad copy and paste in CMakeLists.txt * added make clean to build.sh * removed moc_ and ui_ files from src
* qmake -> cmake; (mostly) cosmetic changesJan Darmochwal2010-07-131-0/+69
Switched to cmake: CMakeLists.txt in base directory use ./build.sh to build vmchooser (or mkdir -p build; cd build cmake .. && make) updated README removed fltk/ removed libxml2/ removed mesgdisp/ renamed vmchooser/ to src/ moved all header files (.h) from vmchooser/inc/ to src/ added files to repository that must have slipped the last time