summaryrefslogtreecommitdiffstats
path: root/src/dialog.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add support for autostarting a session predefined in /opt/openslx/config in ↵HEADmasterSimon Rettberg2014-02-071-2/+16
| | | | SLX_BENCHMARK_VM
* Check if the window is still centered once a second and move it if neccessary.Simon Rettberg2013-12-191-0/+20
| | | | This is needed to account for resolution changes while the vmChooser is being displayed.
* Add support for a session start script that gets run right before the ↵Simon Rettberg2013-12-131-0/+9
| | | | session is started
* theme support, move directboot option from no parameter to --file / -fSebastian Schmelzer2011-04-281-0/+38
|
* * dbus interface removedJohann Latocha2011-03-021-64/+39Star
| | | | | * write pvs config directly * use "vmchooser --pvs"
* window manager intergration removedJohann Latocha2011-03-021-20/+2Star
|
* 1) cmd-switch to use a window managerJohann Latocha2011-03-011-2/+21
| | | | 2) openslx logo added
* [Fix] Startup problems with xsession (Quick&Dirty)Johann Latocha2011-03-011-1/+1
|
* Added missing closing parantheses in dialog.cppJan Darmochwal2010-11-011-1/+1
|
* Failure message if session cannot be startedJan Darmochwal2010-10-101-10/+13
|
* Support for Utf8 in translationsJan Darmochwal2010-10-091-1/+1
| | | | use trUtf8() instead of tr()
* Tidy up the codeJan Darmochwal2010-10-071-29/+17Star
| | | | | | | | | | | | | | | | | | * 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
* delete ifaceDBus_ifaceDBus_ in ~DialogJan Darmochwal2010-10-071-0/+1
|
* Remove debug printfsJan Darmochwal2010-10-061-10/+0Star
|
* i18n support and German translationJan Darmochwal2010-10-061-1/+1
| | | | | | 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
* highlight previous sessionJan Darmochwal2010-10-051-1/+25
| | | | | | This patch makes vmchooser hightlight the previous session run. Selection of the session is only based on the session name. The topmost session with the same name as the previous session will be highlighted.
* simple PVS configuration in vmchooserJan Darmochwal2010-10-051-0/+104
| | | | | | | | | | 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-15/+25
| | | | | | | | | 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
* Qt port is almost complete (at least it compiles)Jan Darmochwal2010-10-021-9/+20
| | | | | | | | | | | | | | | | | | Major change: * struct DataEntry has become class Session with sub-classes XSession and VSession * functions from addInfo.cpp, addPrinters.cpp, addScanners.cpp, readLinSess.cpp, readXmlDir.cpp, runImage.cpp have been moved to XSession and VSession Several minor changes: * new files globals.h and globals.cpp for global variables (replaces constants.h and paths.h) * replaced (all) libxml2, (much) std:: and (most) boost:: stuff by Qt stuff Things left to do: * remove tons of debug printfs * show error messages on errors * tidy up anyoption stuff in main() * highlight session run previously * readGroupXml stuff * tree view (with "X Sessions" and "Virtual Sessions" sections) instead of list view for session selection
* qmake -> cmake; (mostly) cosmetic changesJan Darmochwal2010-07-131-0/+60
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