summaryrefslogtreecommitdiffhomepage
path: root/gui
AgeCommit message (Collapse)Author
2018-07-13appease analyzerStanislaw Halik
2018-07-11gui/init: sprinkle some `static'Stanislaw Halik
2018-07-08options: fix 2 issuesStanislaw Halik
1. Calling valueChanged didn't invoke machinery in value<t>, only base_value aka value_. There's a fast path in value<t>::type() despite the pessimization. 2. Split global scope stuff into options::globals from the options::globals stuff 3. Adjust usages
2018-07-08modernize onlyStanislaw Halik
2018-06-26options/base-value: rename to `value_'Stanislaw Halik
2018-06-26modernize C++ syntaxStanislaw Halik
No visible changes (hopefully).
2018-06-26core, modules: modernize syntax onlyStanislaw Halik
Use more C++17 features where this helps any.
2018-06-13gui/init: DAZ is enough for SSEStanislaw Halik
2018-06-09gui: update Chinese translationWei Shuai
2018-05-28gui/cmake: cleanupStanislaw Halik
2018-05-27gui: fix link error due to differing prototypeStanislaw Halik
Reported-by: Artem Sobolev
2018-05-27gui, qxt: use pkgconfig wrapperStanislaw Halik
2018-05-27gui: appease linterStanislaw Halik
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.