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 @@ -10,16 +10,19 @@ #include <qspinbox.h> #include <qlistbox.h> #include <qlabel.h> #include <qcombobox.h> #include <qdir.h> +#define DEFAULT_ROWS 2 +#define DEFAULT_COLS 11 + /* FunctionKeyboard {{{1 */ FunctionKeyboard::FunctionKeyboard(QWidget *parent) : - QFrame(parent), numRows(2), numCols(11), + QFrame(parent), numRows(DEFAULT_ROWS), numCols(DEFAULT_COLS), pressedRow(0), pressedCol(0) { setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed)); /* * all the saving/loading is now done in a profile. downside is that you cant modify @@ -220,12 +223,16 @@ QSize FunctionKeyboard::sizeHint() const { return QSize(width(), keyHeight * numRows + 1); } 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)); keys.insert( "r0c1", FKey ("Space", "space", Qt::Key_Space, Qt::Key_Space)); keys.insert( "r0c2", FKey ("Tab", "tab", Qt::Key_Tab, 0)); keys.insert( "r0c3", FKey ("Up", "up", Qt::Key_Up, 0)); keys.insert( "r0c4", FKey ("Down", "down", Qt::Key_Down, 0)); |