summaryrefslogtreecommitdiffhomepage
path: root/gui/init.cpp
AgeCommit message (Collapse)Author
2019-08-01add workaround for obsolete qt versionsStanislaw Halik
This should fix CI.
2019-07-11gui/init: fix indentationStanislaw Halik
2019-07-08gui/init: fix brainoStanislaw Halik
2019-07-08gui/init: print loglevel for qDebug() and friendsStanislaw Halik
2019-07-08gui/init: drop check for qt 5.5Stanislaw Halik
2019-03-18gui: set line buffering for stderrStanislaw Halik
2019-02-22gui/init: enable back alloca usageStanislaw Halik
This was probably disabled by accident.
2019-01-24gui, opentrack: simplify std::function/unique_ptr usageStanislaw Halik
Reported by: ElDesalmado
2019-01-16compat/mutex: removeStanislaw Halik
Always use the adaptive QMutex.
2019-01-16gui/init: disable spinlock in common caseStanislaw Halik
2019-01-16gui/init: call XInitThreads(3)Stanislaw Halik
The Qt function for enable X11 threads is obsolete given it fully uses Xcb. We're using some Xlib calls in qxt-mini in places. Call it manually rather than risking arbitrary crashes.
2019-01-16gui/init: remove obsolete XInitThreads callStanislaw Halik
This became obsolete when Qt 5.0 switched to libxcb.
2019-01-16gui/init: avoid allocations in loggerStanislaw Halik
2019-01-16gui: fix `if constexpr' misuseStanislaw Halik
2019-01-16gui/init: enable custom Qt logger on non-win32Stanislaw Halik
2019-01-16compat/spinlock: implement and use itStanislaw Halik
2018-12-28gui/init: output to MSVC debugger if attachedStanislaw Halik
2018-12-28gui/init: fix mingw-w64 _controlfpStanislaw Halik
2018-12-28gui/init: decruftStanislaw Halik
2018-12-26compat/arch: simplify microarchitecture detectionStanislaw Halik
2018-12-25fix build...Stanislaw Halik
2018-12-25gui/init: add more Qt switchesStanislaw Halik
2018-12-25gui/init: fix Qt 5.5Stanislaw Halik
2018-12-24cruftStanislaw Halik
2018-12-08gui/init: fix evil typoStanislaw Halik
2018-10-27cleanupStanislaw Halik
2018-10-25cleanups onlyStanislaw Halik
2018-10-05gui/init: handle -msse2 -mno-sse3Stanislaw Halik
2018-10-05use attributes only at declaration, not definitionStanislaw 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-26modernize C++ syntaxStanislaw Halik
No visible changes (hopefully).
2018-06-13gui/init: DAZ is enough for SSEStanislaw Halik
2018-05-27gui: fix link error due to differing prototypeStanislaw Halik
Reported-by: Artem Sobolev
2018-05-27gui: appease linterStanislaw Halik
2018-02-16gui/init: fix translations even harderStanislaw Halik
Issue: #748
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-01-18compat/util: retireStanislaw Halik
Adjust usages.
2018-01-17gui/init: remove logspamStanislaw Halik
2018-01-16gui, variant/default: move default UIStanislaw Halik
2018-01-16add missing copyright statementStanislaw Halik
2018-01-14gui: fix trayStanislaw Halik
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.