[Konsole-devel] [Bug 76976] AppScreen support in konsole keytab
Waldo Bastian
bastian at kde.org
Wed Sep 22 20:02:25 UTC 2004
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=76976
bastian kde org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From bastian kde org 2004-09-22 22:02 -------
CVS commit by waba:
Add AppScreen support to keytab (BR76976)
Patch by Don Mahurin
CCMAIL: 76976-done bugs kde org
M +1 -0 TEmuVt102.cpp 1.112
M +1 -0 keytrans.cpp 1.48
M +2 -1 keytrans.h 1.23
--- kdebase/konsole/konsole/TEmuVt102.cpp #1.111:1.112
@ -909,4 +909,5 @ void TEmuVt102::onKeyPress( QKeyEvent* e
encodeMode(MODE_Ansi , BITS_Ansi ) + // OBSOLETE,
encodeMode(MODE_AppCuKeys, BITS_AppCuKeys ) + // VT100 stuff
+ encodeMode(MODE_AppScreen, BITS_AppScreen ) + // VT100 stuff
encodeStat(ControlButton , BITS_Control ) +
encodeStat(ShiftButton , BITS_Shift ) +
--- kdebase/konsole/konsole/keytrans.cpp #1.47:1.48
@ -483,4 +483,5 @ void KeyTransSymbols::defModSyms()
defModSym("NewLine", BITS_NewLine );
defModSym("AppCuKeys", BITS_AppCuKeys );
+ defModSym("AppScreen", BITS_AppScreen );
}
--- kdebase/konsole/konsole/keytrans.h #1.22:1.23
@ -25,5 +25,6 @
#define BITS_Shift 5
#define BITS_Alt 6
-#define BITS_COUNT 7
+#define BITS_AppScreen 7
+#define BITS_COUNT 8
#define CMD_none -1
More information about the konsole-devel
mailing list