author | harlekin <harlekin> | 2002-10-24 16:14:42 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-10-24 16:14:42 (UTC) |
commit | 07811d76c261ece00a45589a2eb9d2bb8971943e (patch) (side-by-side diff) | |
tree | 15a9c09878ff84c91b6ca0de7b7ed3ba4ff393ae | |
parent | 1cc47fb5ca1516eb1c427666ca2bb650af271d0a (diff) | |
download | opie-07811d76c261ece00a45589a2eb9d2bb8971943e.zip opie-07811d76c261ece00a45589a2eb9d2bb8971943e.tar.gz opie-07811d76c261ece00a45589a2eb9d2bb8971943e.tar.bz2 |
better use resource::
-rw-r--r-- | noncore/apps/opie-console/BUGS | 2 | ||||
-rw-r--r-- | noncore/apps/opie-console/function_keyboard.cpp | 36 | ||||
-rw-r--r-- | noncore/apps/opie-console/function_keyboard.h | 8 |
3 files changed, 21 insertions, 25 deletions
diff --git a/noncore/apps/opie-console/BUGS b/noncore/apps/opie-console/BUGS index 8195dc5..ac2ce03 100644 --- a/noncore/apps/opie-console/BUGS +++ b/noncore/apps/opie-console/BUGS @@ -10,6 +10,4 @@ Send/receive: lrzsz behaves strange when trying to use connection its used on -- keys and buttonbar merge - - keys really working mc is working diff --git a/noncore/apps/opie-console/function_keyboard.cpp b/noncore/apps/opie-console/function_keyboard.cpp index 538bed4..fa11701 100644 --- a/noncore/apps/opie-console/function_keyboard.cpp +++ b/noncore/apps/opie-console/function_keyboard.cpp @@ -51,7 +51,5 @@ FunctionKeyboard::FunctionKeyboard(QWidget *parent) : } -FunctionKeyboard::~FunctionKeyboard() { - -} +FunctionKeyboard::~FunctionKeyboard() {} void FunctionKeyboard::changeRows(int r) { @@ -190,9 +188,9 @@ QSize FunctionKeyboard::sizeHint() const { void FunctionKeyboard::loadDefaults() { - keys.insert( "r0c0", FKey ("Enter", "enter.png", Qt::Key_Enter, 0)); - keys.insert( "r0c1", FKey ("Space", "space.png", Qt::Key_Space, Qt::Key_Space)); - keys.insert( "r0c2", FKey ("Tab", "tab.png", Qt::Key_Tab, 0)); - keys.insert( "r0c3", FKey ("Up", "up.png", Qt::Key_Up, 0)); - keys.insert( "r0c4", FKey ("Down", "down.png", Qt::Key_Down, 0)); + 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)); keys.insert( "r0c7", FKey ("Ho", 0, 4112, 0)); @@ -226,5 +224,5 @@ FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* par kb = new FunctionKeyboard(this); - connect (kb, SIGNAL(keyPressed(FKey, ushort, ushort, bool)), + connect (kb, SIGNAL(keyPressed(FKey, ushort, ushort, bool)), this, SLOT(slotKeyPressed(FKey, ushort, ushort, bool))); @@ -243,9 +241,9 @@ FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* par m_labels->insertItem(""); - QStringList files = QDir(QPEApplication::qpeDir() + "pics/console/keys/", "*.png").entryList(); + QStringList files = QDir( QPEApplication::qpeDir() + "pics/console/keys/", "*.png").entryList(); for (uint i = 0; i < files.count(); i++) { - m_labels->insertItem(Resource::loadPixmap("console/keys/" + files[i]), files[i]); + m_labels->insertItem( Resource::loadPixmap("console/keys/" + files[i]), files[i]); } connect (m_labels, SIGNAL(activated(int)), this, SLOT(slotChangeIcon(int))); @@ -280,5 +278,5 @@ void FunctionKeyboardConfig::load (const Profile& prof) { /* load all the keys to the keyboard */ - for (int i = 0; i <= m_rowBox->value() -1; i++) + for (int i = 0; i <= m_rowBox->value() -1; i++) for (int j = 0; j <= m_colBox->value() -1; j++) { @@ -294,5 +292,5 @@ void FunctionKeyboardConfig::load (const Profile& prof) { if (!l[1].isEmpty()) { - kb->keys[h].pix = new QPixmap(QPEApplication::qpeDir() + "pics/console/keys/" + l[1]); + kb->keys[h].pix = new QPixmap( Resource::loadPixmap( "console/keys/" + l[1] ) ); } } @@ -309,7 +307,7 @@ void FunctionKeyboardConfig::save (Profile& prof) { FKey k = it.data(); - QString entry = k.label + "|" - + k.pixFile + "|" - + QString::number(k.qcode) + "|" + QString entry = k.label + "|" + + k.pixFile + "|" + + QString::number(k.qcode) + "|" + QString::number(k.unicode); @@ -334,5 +332,5 @@ void FunctionKeyboardConfig::slotKeyPressed(FKey k, ushort r, ushort c, bool pre if (!pressed) return; - selectedHandle = "r" + QString::number(r) + + selectedHandle = "r" + QString::number(r) + "c" + QString::number(c); selectedRow = r; @@ -361,5 +359,5 @@ void FunctionKeyboardConfig::slotChangeIcon(int index) { m_labels->setEditable(true); // why tf does the text get erased unless i do this? - m_labels->changeItem(m_labels->text(0), 0); + m_labels->changeItem(m_labels->text(0), 0); kb->keys[selectedHandle].pixFile = ""; @@ -371,5 +369,5 @@ void FunctionKeyboardConfig::slotChangeIcon(int index) { m_labels->setEditable(false); kb->keys[selectedHandle].pixFile = m_labels->currentText(); - kb->keys[selectedHandle].pix = new QPixmap(QPEApplication::qpeDir() + "pics/console/keys/" + m_labels->currentText()); + kb->keys[selectedHandle].pix = new QPixmap( Resource::loadPixmap( "console/keys/" + m_labels->currentText() ) ); } kb->paintKey(selectedRow, selectedCol); diff --git a/noncore/apps/opie-console/function_keyboard.h b/noncore/apps/opie-console/function_keyboard.h index 7f313d6..80d9f29 100644 --- a/noncore/apps/opie-console/function_keyboard.h +++ b/noncore/apps/opie-console/function_keyboard.h @@ -3,4 +3,5 @@ #include <qpe/config.h> +#include <qpe/resource.h> #include <qpe/qpeapplication.h> #include <qframe.h> @@ -17,11 +18,10 @@ struct FKey { FKey(): qcode(0), unicode(0) {}; - FKey(const QString &l, const QString &f, ushort q, ushort u): + FKey(const QString &l, const QString &f, ushort q, ushort u): label(l), pixFile(f), qcode(q), unicode(u) { - - if (!f.isEmpty()) { - pix = new QPixmap (QPEApplication::qpeDir() + "pics/console/keys/" + f); + if (!f.isEmpty()) { + pix = new QPixmap ( Resource::loadPixmap("console/keys/" + f ) ); } }; |