author | harlekin <harlekin> | 2002-10-24 16:14:42 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-10-24 16:14:42 (UTC) |
commit | 07811d76c261ece00a45589a2eb9d2bb8971943e (patch) (unidiff) | |
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 | |||
@@ -11,4 +11,2 @@ connection its used on | |||
11 | 11 | ||
12 | - keys and buttonbar merge | ||
13 | |||
14 | - keys really working | 12 | - keys really 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 | |||
@@ -52,5 +52,3 @@ FunctionKeyboard::FunctionKeyboard(QWidget *parent) : | |||
52 | 52 | ||
53 | FunctionKeyboard::~FunctionKeyboard() { | 53 | FunctionKeyboard::~FunctionKeyboard() {} |
54 | |||
55 | } | ||
56 | 54 | ||
@@ -191,7 +189,7 @@ void FunctionKeyboard::loadDefaults() { | |||
191 | 189 | ||
192 | keys.insert( "r0c0", FKey ("Enter", "enter.png", Qt::Key_Enter, 0)); | 190 | keys.insert( "r0c0", FKey ("Enter", "enter", Qt::Key_Enter, 0)); |
193 | keys.insert( "r0c1", FKey ("Space", "space.png", Qt::Key_Space, Qt::Key_Space)); | 191 | keys.insert( "r0c1", FKey ("Space", "space", Qt::Key_Space, Qt::Key_Space)); |
194 | keys.insert( "r0c2", FKey ("Tab", "tab.png", Qt::Key_Tab, 0)); | 192 | keys.insert( "r0c2", FKey ("Tab", "tab", Qt::Key_Tab, 0)); |
195 | keys.insert( "r0c3", FKey ("Up", "up.png", Qt::Key_Up, 0)); | 193 | keys.insert( "r0c3", FKey ("Up", "up", Qt::Key_Up, 0)); |
196 | keys.insert( "r0c4", FKey ("Down", "down.png", Qt::Key_Down, 0)); | 194 | keys.insert( "r0c4", FKey ("Down", "down", Qt::Key_Down, 0)); |
197 | 195 | ||
@@ -227,3 +225,3 @@ FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* par | |||
227 | kb = new FunctionKeyboard(this); | 225 | kb = new FunctionKeyboard(this); |
228 | connect (kb, SIGNAL(keyPressed(FKey, ushort, ushort, bool)), | 226 | connect (kb, SIGNAL(keyPressed(FKey, ushort, ushort, bool)), |
229 | this, SLOT(slotKeyPressed(FKey, ushort, ushort, bool))); | 227 | this, SLOT(slotKeyPressed(FKey, ushort, ushort, bool))); |
@@ -244,3 +242,3 @@ FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* par | |||
244 | 242 | ||
245 | QStringList files = QDir(QPEApplication::qpeDir() + "pics/console/keys/", "*.png").entryList(); | 243 | QStringList files = QDir( QPEApplication::qpeDir() + "pics/console/keys/", "*.png").entryList(); |
246 | 244 | ||
@@ -248,3 +246,3 @@ FunctionKeyboardConfig::FunctionKeyboardConfig(const QString& name, QWidget* par | |||
248 | 246 | ||
249 | m_labels->insertItem(Resource::loadPixmap("console/keys/" + files[i]), files[i]); | 247 | m_labels->insertItem( Resource::loadPixmap("console/keys/" + files[i]), files[i]); |
250 | } | 248 | } |
@@ -281,3 +279,3 @@ void FunctionKeyboardConfig::load (const Profile& prof) { | |||
281 | /* load all the keys to the keyboard */ | 279 | /* load all the keys to the keyboard */ |
282 | for (int i = 0; i <= m_rowBox->value() -1; i++) | 280 | for (int i = 0; i <= m_rowBox->value() -1; i++) |
283 | for (int j = 0; j <= m_colBox->value() -1; j++) { | 281 | for (int j = 0; j <= m_colBox->value() -1; j++) { |
@@ -295,3 +293,3 @@ void FunctionKeyboardConfig::load (const Profile& prof) { | |||
295 | 293 | ||
296 | kb->keys[h].pix = new QPixmap(QPEApplication::qpeDir() + "pics/console/keys/" + l[1]); | 294 | kb->keys[h].pix = new QPixmap( Resource::loadPixmap( "console/keys/" + l[1] ) ); |
297 | } | 295 | } |
@@ -310,5 +308,5 @@ void FunctionKeyboardConfig::save (Profile& prof) { | |||
310 | FKey k = it.data(); | 308 | FKey k = it.data(); |
311 | QString entry = k.label + "|" | 309 | QString entry = k.label + "|" |
312 | + k.pixFile + "|" | 310 | + k.pixFile + "|" |
313 | + QString::number(k.qcode) + "|" | 311 | + QString::number(k.qcode) + "|" |
314 | + QString::number(k.unicode); | 312 | + QString::number(k.unicode); |
@@ -335,3 +333,3 @@ void FunctionKeyboardConfig::slotKeyPressed(FKey k, ushort r, ushort c, bool pre | |||
335 | 333 | ||
336 | selectedHandle = "r" + QString::number(r) + | 334 | selectedHandle = "r" + QString::number(r) + |
337 | "c" + QString::number(c); | 335 | "c" + QString::number(c); |
@@ -362,3 +360,3 @@ void FunctionKeyboardConfig::slotChangeIcon(int index) { | |||
362 | // why tf does the text get erased unless i do this? | 360 | // why tf does the text get erased unless i do this? |
363 | m_labels->changeItem(m_labels->text(0), 0); | 361 | m_labels->changeItem(m_labels->text(0), 0); |
364 | 362 | ||
@@ -372,3 +370,3 @@ void FunctionKeyboardConfig::slotChangeIcon(int index) { | |||
372 | kb->keys[selectedHandle].pixFile = m_labels->currentText(); | 370 | kb->keys[selectedHandle].pixFile = m_labels->currentText(); |
373 | kb->keys[selectedHandle].pix = new QPixmap(QPEApplication::qpeDir() + "pics/console/keys/" + m_labels->currentText()); | 371 | kb->keys[selectedHandle].pix = new QPixmap( Resource::loadPixmap( "console/keys/" + m_labels->currentText() ) ); |
374 | } | 372 | } |
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 | |||
@@ -4,2 +4,3 @@ | |||
4 | #include <qpe/config.h> | 4 | #include <qpe/config.h> |
5 | #include <qpe/resource.h> | ||
5 | #include <qpe/qpeapplication.h> | 6 | #include <qpe/qpeapplication.h> |
@@ -18,9 +19,8 @@ struct FKey { | |||
18 | FKey(): qcode(0), unicode(0) {}; | 19 | FKey(): qcode(0), unicode(0) {}; |
19 | FKey(const QString &l, const QString &f, ushort q, ushort u): | 20 | FKey(const QString &l, const QString &f, ushort q, ushort u): |
20 | label(l), pixFile(f), qcode(q), unicode(u) { | 21 | label(l), pixFile(f), qcode(q), unicode(u) { |
21 | |||
22 | if (!f.isEmpty()) { | ||
23 | 22 | ||
24 | pix = new QPixmap (QPEApplication::qpeDir() + "pics/console/keys/" + f); | 23 | if (!f.isEmpty()) { |
25 | 24 | ||
25 | pix = new QPixmap ( Resource::loadPixmap("console/keys/" + f ) ); | ||
26 | } | 26 | } |