Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-16 | logic: remove height in "dynamic neck" | Stanislaw Halik | |
It doesn't help any. Leave the depth only. | |||
2017-04-18 | logic/tracker: fix option not used in logic | Stanislaw Halik | |
2017-02-27 | {base,options}-dialog: fix dialogs not savingopentrack-2.3.1_fix2 | Stanislaw Halik | |
In case of the options dialog, running close() in doOK() made it go into closeEvent(), going into doCancel(), and reloading the settings prior to them getting saved. It's time for a hotfix2 build. | |||
2017-02-26 | {api/base,gui/options}-dialog: prevent closing without signal | Stanislaw Halik | |
Use hide() to avoid emitting idempotent events. There's isVisible() but no isClosed() or equivalent. Worse yet, close() can return true twice in a row, despite what docs for `bool QWidget::close()' say. | |||
2017-02-25 | gui/options-dialog: sprinkle some konst reference | Stanislaw Halik | |
2017-02-25 | gui/options-dialog: prevent crap key text from being saved | Stanislaw Halik | |
Unprintable characters won't work in addition to not displaying right. This happens with altgr diacritics on the Polish keyboard on Linux. Skip all key text with unprintable characters, as if the key was getting unbound. | |||
2017-02-25 | gui/options-dialog: prevent escape key closing on Linux | Stanislaw Halik | |
The escape key closed the dialog but prevented save/cancel hooks from being run. Now we get the hooks running twice but it's better than not at all. | |||
2017-02-24 | gui: simplify keyboard listener dialog | Stanislaw Halik | |
It's now generated from .ui QDialog, not a manually created QDialog from QLabel in .ui. | |||
2017-02-23 | gui/options-dialog: prevent heisenbugs (?) | Stanislaw Halik | |
It's likely that there's some memory handling bug when stack-allocating Qt widgets and other components. Use QObject::deleteLater. Will check with Valgrind later. | |||
2017-02-18 | gui, logic: allow for two keybindings for each function | Stanislaw Halik | |
Also, remove "disable reltrans while held" cause it's too specific. | |||
2016-12-09 | gui, logic: allow toggle neck displacement | Stanislaw Halik | |
It was only possible to zero the values to turn it off. | |||
2016-12-09 | gui, logic: add neck displacement feature | Stanislaw Halik | |
With it enabled, user's neck will be treated as separate from the rotation pivot. Rotating to the left will reposition to the left in addition to the rotation, and so on. This feature is subtle but apparently very popular with DCS users. | |||
2016-11-25 | Revert "logic, gui: remove relative translation disable axis"opentrack-2.3-rc99p15 | Stanislaw Halik | |
This reverts commit 9fb8b48027ac8c03628955da2b186de88745e348. | |||
2016-11-18 | logic, gui: remove relative translation disable axis | Stanislaw Halik | |
Only Z needs this. | |||
2016-11-18 | gui/options-dialog: fix logic error in keybinding friendly name | Stanislaw Halik | |
2016-11-18 | gui, modules: add more translatable strings | Stanislaw Halik | |
2016-11-18 | gui/options: oops, fix numpad keys friendly name | Stanislaw Halik | |
2016-11-18 | gui: allow for disabling translation | Stanislaw Halik | |
2016-11-18 | gui/options: allow for translating keyboard modifiers | Stanislaw Halik | |
2016-09-25 | gui, logic: allow prevent rotation from affecting compensation | Stanislaw Halik | |
Issue: #458 | |||
2016-09-24 | logic, gui: allow for disabling any of the three tcomp options | Stanislaw Halik | |
Issue: #458 Requested-by: @Borisovich | |||
2016-09-16 | gui, logic: add separate option for starting in tray vs tray enabled | Stanislaw Halik | |
Suggested-by: @MathijsG, #454 | |||
2016-09-09 | gui: fix after 77cf67d61c8f6ae7ec00fd069b0e6586927069a3 | Stanislaw Halik | |
2016-09-08 | tracklogging: begone file selector gui. Now a file select dialog will pop up ↵ | DaMichel | |
when the tracker starts. | |||
2016-09-06 | gui, logic: add shortcut for "translation compensation off while held" | Stanislaw Halik | |
Requested-by: @Sone989 Issue: #440 | |||
2016-08-18 | options: add base_value signal const | Stanislaw Halik | |
2016-08-17 | gui: reload keybindings immediately | Stanislaw Halik | |
Previously the old global keybindings stuck when options dialog got cancelled. | |||
2016-08-08 | gui, tracker/{aruco,pt}: do action on button correct press, not button hold | Stanislaw Halik | |
2016-07-31 | gui/options: use and restore program directory around dialog | Stanislaw Halik | |
2016-07-29 | logging: file selection dialog can freeze. Therefore don't use native dialog?! | DaMichel | |
2016-07-29 | new track logging: record poses in various stages of processing into a file | DaMichel | |
2016-07-23 | gui/options, logic: add experimental offset from center | Stanislaw Halik | |
This works fine for rotating the translation. | |||
2016-06-29 | gui/{options,main}: rename identifier only | Stanislaw Halik | |
2016-06-29 | gui/options-dialog: no need for non-RAII | Stanislaw Halik | |
Qt destructors deregister one component from another. | |||
2016-06-29 | logic, gui: reload keybinding description on profile change | Stanislaw Halik | |
2016-06-29 | gui/options: fix cancel button | Stanislaw Halik | |
The "struct opts" dtor doesn't run at dialog close time so invoke "reload" on the bundle explicitly. | |||
2016-05-26 | many modules: trivial cleanups only | Stanislaw Halik | |
- Remove "this->" where it's not needed. Possibly rename shadowed vars. - Don't reload the options bundle manually since `options::opts' exists for that very reason. - Remove '^ \+$' whitespace - :retab | |||
2016-05-15 | many: remove executable bit from source files | Stanislaw Halik | |
We no longer have this recurring problem since I enabled ignoring executable bit changes on the Windows workstation. | |||
2016-05-15 | api,gui: disable all keyboard shortcuts while binding a key | Stanislaw Halik | |
Previous disallowed binding an already-bound key on Unix since Qxt doesn't pass through bound keys unlike the Windows implementation. Refactor some common code. The Windows implementation isn't even compile-tested. | |||
2016-04-29 | api, main: implement new keybindings | Stanislaw Halik | |
The following keybindings are now implemented: - restart tracking. if not started, starts. - toggle (keep position) while key held - zero (keep zero) while key held The latter two options only work for Windows as libqxt doesn't support them. Closes #291 | |||
2015-12-06 | gui/settings: set parent, otherwise not modal | Stanislaw Halik | |
2015-12-06 | gui/settings: don't forget to show a modal dialog before executing | Stanislaw Halik | |
2015-12-06 | gui/keys: allow for pausing global keystrokes for options dialog | Stanislaw Halik | |
Toggling tracking while prompting for toggle tracking key causes a deadlock somewhere. | |||
2015-12-06 | api, main: implement global shortcuts for controlling tracking | Stanislaw Halik | |
Issue: #252 That involves moving stuff around to get rid of circular dependencies. You need to bind keys to shortcuts again this once. | |||
2015-12-05 | api/shortcuts: no longer keep shortcuts hardcoded | Stanislaw Halik | |
2015-11-11 | options: stringify keyboard mods for joy buttons | Stanislaw Halik | |
2015-11-11 | shortcuts: map joystick buttons on depress only | Stanislaw Halik | |
Some buttons like the X65 mode switch are held all the time. Prevent them from hogging all the keybindings. Issue: #118 | |||
2015-11-11 | allow for binding joystick buttons to shortcut functions | Stanislaw Halik | |
Win32 only Issue: #118 | |||
2015-11-01 | options-dialog: add missing include | Stanislaw Halik | |
2015-10-30 | rename gui directory | Stanislaw Halik | |