Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-01-11 | cmake, gui, main: make user interface reusable | Stanislaw Halik | |
The work isn't complete. We need moving out all non-reusable parts away and only keeping user interface logic in a class. | |||
2018-01-10 | gui/main: disable denormals on win32 | Stanislaw Halik | |
2018-01-04 | main: workaround crash on exit without terminating process | Stanislaw Halik | |
2017-10-08 | add complete(?) portable config support | Stanislaw Halik | |
2017-09-22 | gui: fix global qt style for xp | Stanislaw Halik | |
2017-09-22 | gui: call adjust-size() after show() | Stanislaw Halik | |
2017-07-24 | gui/main: put TerminateProcess call back after app exits | Stanislaw Halik | |
2017-07-20 | gui/main: rework forceful exit | Stanislaw Halik | |
- on MSVC, exit before destroying the window. Qt Creator plays nicer with that. - otherwise, don't perform a forceful exit. it seems unnecessary. I'll play with Valgrind some more to verify this. | |||
2017-06-18 | minor tweaks only | Stanislaw Halik | |
2017-06-13 | main: fix accessing build box's hardcoded drive | Stanislaw Halik | |
2017-05-27 | main: reopen parent console | Stanislaw Halik | |
Running under CLion doesn't produce any output otherwise. | |||
2017-05-10 | get rid of the silly mem -> shared_ptr alias | Stanislaw Halik | |
2017-04-20 | main: fix redundant null check | Stanislaw Halik | |
2017-04-13 | main: call set-library-paths only after qapplication exists | Stanislaw Halik | |
Otherwise accesses qt install prefix. Issue: #598 | |||
2017-03-22 | [COVERITY] gui/main: fix implausible null pointer dereference | Stanislaw Halik | |
Guard against NULL in the improbable case there's no PATH variable in the process' environment. | |||
2017-03-01 | main: don't comment out _exit(2) | Stanislaw Halik | |
2017-02-27 | gui/main: reindent | Stanislaw Halik | |
2017-02-27 | options/fix bundle refcount handling | Stanislaw Halik | |
We rolled up our own refcount while using shared_ptr at the same time. Remove all rolled-up logic and rely on shared_ptr's custom deleter to do the cleanups. This greatly simplifies the code here. Unfortunately, _fini ordering makes Qt crash after the app object runs out of scope: gui/main.cpp: QApplication app(argc, argv); Both things considered, use _exit(2) on Unix to avoid running static destructors. | |||
2017-01-28 | gui/main: still getting those crashes | Stanislaw Halik | |
2016-12-28 | cmake: fix translations on Linux | Stanislaw Halik | |
2016-12-28 | main: fix typo breaking non-win32 | Stanislaw Halik | |
2016-12-24 | gui/main: with vc2015 it doesn't crash on exit | Stanislaw Halik | |
Turns out vc2017 RC miscompiled Qt libs leading to a crash around RtlHeapFree. | |||
2016-11-29 | main: change for testing | Stanislaw Halik | |
2016-11-18 | Revert "gui: resize dialog boxes to fit text" | Stanislaw Halik | |
This reverts commit d26048617d78396cc6381eaf06f19fee484d811c. | |||
2016-11-18 | gui: resize dialog boxes to fit text | Stanislaw Halik | |
2016-11-18 | gui: allow for disabling translation | Stanislaw Halik | |
2016-11-04 | cmake, main: add translation support | Stanislaw Halik | |
2016-09-16 | gui, logic: add separate option for starting in tray vs tray enabled | Stanislaw Halik | |
Suggested-by: @MathijsG, #454 | |||
2016-09-16 | gui/main-window: exit program when config not writable | Stanislaw Halik | |
Note, it opens the config in read-write mode to check if it's writable. This might present a race condition when config is saved. However, we're expecting all config saving to be done in the user interface thread. Add a check for it however. | |||
2016-09-16 | compat, dinput: don't overdo COM logic | Stanislaw Halik | |
2016-09-09 | gui/main: reword | Stanislaw Halik | |
2016-09-09 | add support for migrations | Stanislaw Halik | |
They're run from the UI thread so can even be interactive. | |||
2016-09-08 | gui/main: terminate before main ends on msvc | Stanislaw Halik | |
2016-09-05 | gui/{main,mappings}: fix tab stops | Stanislaw Halik | |
2016-09-03 | simplify some on-exit messages | Stanislaw Halik | |
2016-08-28 | gui/main: fix MSVC crash on exit | Stanislaw Halik | |
Qt loads plugins from its install prefix and after main() exits it unloads qgif which has a crash. So disable the Qt install prefix plugins and only use our own directory's contents. | |||
2016-08-23 | gui/main: fix link error on msvc++ | Stanislaw Halik | |
2016-08-23 | cmake: define MINGW_HAS_SECURE_API | Stanislaw Halik | |
2016-08-17 | compat/win32-com: default to right COM type without caller specifying it | Stanislaw Halik | |
The main window always needs the apartment threaded context for OLE used by Qt. Default to apartment threaded before a QApplication is created, or if the thread is the QApplication thread. Use multithreaded COM otherwise. | |||
2016-08-17 | move options framework into its own library | Stanislaw Halik | |
- adjust usages - add support for QList signals and metatype | |||
2016-08-12 | all: rename modules s#^opentrack-##. and opentrack -> api | Stanislaw Halik | |
Adjust usages. | |||
2016-08-12 | few: use existing com threading init function | Stanislaw Halik | |
2016-08-10 | gui/main: don't just exit event loop on last window closed | Stanislaw Halik | |
2016-08-10 | gui/main: display exit messages to debug what destructor is called where | Stanislaw Halik | |
2016-08-10 | gui: there's no crash on exit in MSVC build anymore | Stanislaw Halik | |
Reported-by: @DaMichel cf. https://github.com/DaMichel/opentrack/commit/777942eb65884ba9248c01399a4a5d1e72a35d80#commitcomment-18587629 | |||
2016-08-10 | gui: fix tray icon regression | Stanislaw Halik | |
Issue: #410 Reported-by: @albertolg | |||
2016-08-10 | gui: only rename main window files | Stanislaw Halik | |
Adjust usages. | |||
2016-08-07 | Fix trivial build errors on linux. Also support Qt 5.5. | DaMichel | |
2016-07-30 | gui/main: fix qt style palette | Stanislaw Halik | |
Only changing style after QApplication's been defined sets the palette. | |||
2016-07-23 | gui: don't try to force "windowsxp" style | Stanislaw Halik | |