diff options
author | Michele Calgaro <[email protected]> | 2021-07-13 10:22:53 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-07-13 10:22:53 +0900 |
commit | f519fe9ea297487d95da992a0a77a2ed3aad2cb0 (patch) | |
tree | f66a1ada251cd574c11a318d7edc35bf47abf84e /src | |
parent | 907f3d61aa5cefc1d3768535ef8b9d2ba6d73007 (diff) | |
download | kvkbd-f519fe9ea297487d95da992a0a77a2ed3aad2cb0.tar.gz kvkbd-f519fe9ea297487d95da992a0a77a2ed3aad2cb0.zip |
Minor code rework for better consistency.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/VButton.cpp | 10 | ||||
-rw-r--r-- | src/VButton.h | 6 |
2 files changed, 12 insertions, 4 deletions
diff --git a/src/VButton.cpp b/src/VButton.cpp index c0ce411..46e36ec 100644 --- a/src/VButton.cpp +++ b/src/VButton.cpp @@ -85,6 +85,12 @@ void VButton::setupTexts(Display *display) { altGrShiftText = c; } + + // caps + altGr text + capsAltGrText = altGrText.upper(); + + // caps + altGr + shift text + capsAltGrShiftText = altGrShiftText.lower(); } void VButton::shiftCapsAltGrPressed(bool shift, bool caps, bool altGrState) @@ -96,11 +102,11 @@ void VButton::shiftCapsAltGrPressed(bool shift, bool caps, bool altGrState) { if (shift) { - TQPushButton::setText(altGrShiftText.lower()); + TQPushButton::setText(capsAltGrShiftText); } else { - TQPushButton::setText(altGrText.upper()); + TQPushButton::setText(capsAltGrText); } } else if (shift) diff --git a/src/VButton.h b/src/VButton.h index 86a58ee..49d5d1f 100644 --- a/src/VButton.h +++ b/src/VButton.h @@ -32,10 +32,12 @@ protected: bool isAlpha; unsigned int keycode; TQString normalText; - TQString capsText; TQString shiftText; - TQString altGrText; + TQString capsText; TQString capsShiftText; + TQString capsAltGrText; + TQString capsAltGrShiftText; + TQString altGrText; TQString altGrShiftText; TQRect orig_size; |