author | hash <hash> | 2002-10-24 17:56:48 (UTC) |
---|---|---|
committer | hash <hash> | 2002-10-24 17:56:48 (UTC) |
commit | 3773cd825129f1cc6fa7a4ecb4129634f5189984 (patch) (unidiff) | |
tree | d10cc2c4e45e2b47eddcae5534f59ce8f90092b1 | |
parent | b01703c4b1de7006c88aa814ca00472b966b2464 (diff) | |
download | opie-3773cd825129f1cc6fa7a4ecb4129634f5189984.zip opie-3773cd825129f1cc6fa7a4ecb4129634f5189984.tar.gz opie-3773cd825129f1cc6fa7a4ecb4129634f5189984.tar.bz2 |
closing a session returns keyboard to default better now
-rw-r--r-- | noncore/apps/opie-console/function_keyboard.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/noncore/apps/opie-console/function_keyboard.cpp b/noncore/apps/opie-console/function_keyboard.cpp index ce65052..5f3b5ec 100644 --- a/noncore/apps/opie-console/function_keyboard.cpp +++ b/noncore/apps/opie-console/function_keyboard.cpp | |||
@@ -14,8 +14,11 @@ | |||
14 | #include <qdir.h> | 14 | #include <qdir.h> |
15 | 15 | ||
16 | #define DEFAULT_ROWS 2 | ||
17 | #define DEFAULT_COLS 11 | ||
18 | |||
16 | /* FunctionKeyboard {{{1 */ | 19 | /* FunctionKeyboard {{{1 */ |
17 | 20 | ||
18 | FunctionKeyboard::FunctionKeyboard(QWidget *parent) : | 21 | FunctionKeyboard::FunctionKeyboard(QWidget *parent) : |
19 | QFrame(parent), numRows(2), numCols(11), | 22 | QFrame(parent), numRows(DEFAULT_ROWS), numCols(DEFAULT_COLS), |
20 | pressedRow(0), pressedCol(0) { | 23 | pressedRow(0), pressedCol(0) { |
21 | 24 | ||
@@ -224,4 +227,8 @@ QSize FunctionKeyboard::sizeHint() const { | |||
224 | void FunctionKeyboard::loadDefaults() { | 227 | void FunctionKeyboard::loadDefaults() { |
225 | 228 | ||
229 | numRows = DEFAULT_ROWS; | ||
230 | numCols = DEFAULT_COLS; | ||
231 | keyWidth = (double)width()/numCols; // have to reset this thing too | ||
232 | |||
226 | keys.insert( "r0c0", FKey ("Enter", "enter", Qt::Key_Enter, 0)); | 233 | keys.insert( "r0c0", FKey ("Enter", "enter", Qt::Key_Enter, 0)); |
227 | keys.insert( "r0c1", FKey ("Space", "space", Qt::Key_Space, Qt::Key_Space)); | 234 | keys.insert( "r0c1", FKey ("Space", "space", Qt::Key_Space, Qt::Key_Space)); |