author | hash <hash> | 2002-10-24 17:56:48 (UTC) |
---|---|---|
committer | hash <hash> | 2002-10-24 17:56:48 (UTC) |
commit | 3773cd825129f1cc6fa7a4ecb4129634f5189984 (patch) (side-by-side diff) | |
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 @@ -15,2 +15,5 @@ +#define DEFAULT_ROWS 2 +#define DEFAULT_COLS 11 + /* FunctionKeyboard {{{1 */ @@ -18,3 +21,3 @@ FunctionKeyboard::FunctionKeyboard(QWidget *parent) : - QFrame(parent), numRows(2), numCols(11), + QFrame(parent), numRows(DEFAULT_ROWS), numCols(DEFAULT_COLS), pressedRow(0), pressedCol(0) { @@ -225,2 +228,6 @@ void FunctionKeyboard::loadDefaults() { + numRows = DEFAULT_ROWS; + numCols = DEFAULT_COLS; + keyWidth = (double)width()/numCols; // have to reset this thing too + keys.insert( "r0c0", FKey ("Enter", "enter", Qt::Key_Enter, 0)); |