summaryrefslogtreecommitdiffhomepage
path: root/gui
AgeCommit message (Collapse)Author
2018-03-14gui/correlation-calibrator: fix i18n for real this timeStanislaw Halik
2018-03-14gui/correlation-calibrator: fix i18nStanislaw Halik
2018-03-12gui/i18n: updateStanislaw Halik
2018-03-10gui/correlation-calibrator: add stub widgetStanislaw Halik
2018-02-27add Chinese LangWei Shuai
2018-02-16gui/init: fix translations even harderStanislaw Halik
Issue: #748
2018-02-16Merge branch 'unstable' of https://github.com/opentrack/opentrack into unstablemrsanchos
2018-02-16Add new translation stringsmrsanchos
2018-02-16gui/init: shorten to `OTR_FORCE_LANG'opentrack-2.3.49-pipeline-fix-backupStanislaw Halik
2018-02-16gui/init: allow forcing locale via envStanislaw Halik
Issue: #748
2018-02-16gui: attach parent console harderStanislaw Halik
2018-02-15clean up "static" and "constexpr" typesStanislaw Halik
- use `static constexpr inline' to avoid requiring explicit declarations in object code - use `const Foo* const' to maybe put into readonly binary segment (at least for ELF DSOs) - `constexpr' in function scope has storage, avoid `static' - don't use `constexpr' where there's no advantage, like arrays We'd like to avoid overhead of atomic initialization for each function call. No idea how `static constexpr' requiring storage in the standard plays with atomic initialization requirement. Hearsay points that `constexpr' without `static' in block scope behaves more to our liking. It's all hazy though. I'm not 100% sure if `static inline constexpr' has any storage. Hopefully none, like a #define, and stuff bigger than registers gets coalesced within the same module, with small stuff being immediates.
2018-02-12cmake: add zh_CNStanislaw Halik
cf. #746
2018-02-12modules: stop saving line informationStanislaw Halik
Now i18n regen won't make a mess.
2018-02-09update translation source files -- #743Stanislaw Halik
2018-02-08Update nl_NL.tsMathijs Groothuis
Updated some incorrect words and Russian pieces in the file.
2018-01-26gui: add missing headerStanislaw Halik
2018-01-20rename our Qt .png iconStanislaw Halik
facetracknoir.png -> opentrack.png
2018-01-18logic: change relative translation triggeringStanislaw Halik
Relative translation mode now has three states: - disabled - always enabled - enabled when not aiming In the third mode, looking very close to center disables reltrans. The exact values aren't final.
2018-01-18compat/util: retireStanislaw Halik
Adjust usages.
2018-01-17gui/init: remove logspamStanislaw Halik
2018-01-17fix build (4)Stanislaw Halik
Issue: #721
2018-01-17fix build (3)Stanislaw Halik
2018-01-17gui/settings: fix variant buildStanislaw Halik
2018-01-16cleanupStanislaw Halik
2018-01-16gui, variant/default: move default UIStanislaw Halik
2018-01-16gui: fix paths prior to moving into variant/defaultStanislaw Halik
2018-01-16gui: don't export the main windowStanislaw Halik
2018-01-16gui/main-window: sysexists(3) isn't appropriateStanislaw Halik
2018-01-16gui/main-window: fix more build errors on non-win32Stanislaw Halik
Issue: #721
2018-01-16add missing copyright statementStanislaw Halik
2018-01-16logic, spline: get rid of using namespace in headerStanislaw Halik
2018-01-16gui/main-window: reformat max right columnStanislaw Halik
2018-01-14gui/main-window: don't crash with no trayStanislaw Halik
2018-01-14gui/keyboard: fix Linux/OSX buildStanislaw Halik
Class renaming broke this. Reported: https://github.com/opentrack/opentrack/issues/721#issuecomment-357457084
2018-01-14gui: fix trayStanislaw Halik
2018-01-14gui/spline: change horizontal/vertical guide countStanislaw Halik
The amount depends on the max value on X/Y scales.
2018-01-13gui/spline: reduce spline widget snap to gridStanislaw Halik
Issue: #722
2018-01-13cmake, main: work toward introducing alternative UIStanislaw Halik
We're going to base opentrack derivatives on the same branch. Previously merges were a living hell. Modularizing the UI code and having continuously-built executables will do a lot. First opentrack variant in progress is a TrackHat device for mouse and scrolling control for people with spine and hand/arm disabilities.
2018-01-12main: fix buildStanislaw Halik
2018-01-11cmake, gui, main: make user interface reusableStanislaw 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-10many: get rid of trailing type specifiersStanislaw Halik
2018-01-10gui/main: disable denormals on win32Stanislaw Halik
2018-01-04main: workaround crash on exit without terminating processStanislaw Halik
2018-01-04gui: move checkbox to topStanislaw Halik
Users don't see it.
2018-01-03gui/settings: allow reltrans position onlyStanislaw Halik
Works also for "dynamic neck". Meant to ignore tracker position output but allow reltrans to output.
2018-01-03gui/process-detector: change separator charactersStanislaw Halik
Prevent common characters from breaking the saved list. Use unprintable characters. Add migration.
2017-12-18cmake: const correctnessStanislaw Halik
2017-12-10gui: fix spline snap value harderStanislaw Halik
Was checking wrong variable. Issue: #707
2017-12-10gui: fix setting spline snap valueStanislaw Halik
value<t>::valueChanged didn't fire on exact same value anymore.