summaryrefslogtreecommitdiff
path: root/inputmethods/multikey/configdlg.cpp
authormouse <mouse>2004-01-05 14:10:39 (UTC)
committer mouse <mouse>2004-01-05 14:10:39 (UTC)
commit7fb9bc93eae8007a6eb298fc743bbf70dc50fbc5 (patch) (unidiff)
tree8f16b6c4e52eaca3d0d6c763f3cf938459653801 /inputmethods/multikey/configdlg.cpp
parent4fca3779614c863443ff09295fd0af19b9d9310e (diff)
downloadopie-7fb9bc93eae8007a6eb298fc743bbf70dc50fbc5.zip
opie-7fb9bc93eae8007a6eb298fc743bbf70dc50fbc5.tar.gz
opie-7fb9bc93eae8007a6eb298fc743bbf70dc50fbc5.tar.bz2
configdlg now based on QDialog, instead of QTabWidget
Diffstat (limited to 'inputmethods/multikey/configdlg.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--inputmethods/multikey/configdlg.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/inputmethods/multikey/configdlg.cpp b/inputmethods/multikey/configdlg.cpp
index d29109a..3e39415 100644
--- a/inputmethods/multikey/configdlg.cpp
+++ b/inputmethods/multikey/configdlg.cpp
@@ -352,28 +352,25 @@ void ConfigDlg::moveSelectedDown()
352 keymaps->setCurrentItem(i+1); 352 keymaps->setCurrentItem(i+1);
353 } 353 }
354} 354}
355 355
356void ConfigDlg::closeEvent(QCloseEvent *) { 356void ConfigDlg::closeEvent(QCloseEvent *) {
357 357
358 // tell the parent it was closed, so delete me 358 // tell the parent it was closed, so delete me
359 emit configDlgClosed(); 359 emit configDlgClosed();
360} 360}
361 361
362void ConfigDlg::setMap(int index) { 362void ConfigDlg::setMap(int index) {
363 363
364 if (index == 0) { 364 if (index == 0 || default_maps.find(sw_maps[index-1]) != default_maps.end()) {
365 remove_button->setDisabled(true);
366 }
367 else if (default_maps.find(sw_maps[index-1]) != default_maps.end()) {
368 remove_button->setDisabled(true); 365 remove_button->setDisabled(true);
369 } else { 366 } else {
370 remove_button->setEnabled(true); 367 remove_button->setEnabled(true);
371 } 368 }
372} 369}
373 370
374// ConfigDlg::addMap() {{{1 371// ConfigDlg::addMap() {{{1
375void ConfigDlg::addMap() { 372void ConfigDlg::addMap() {
376 373
377 QString map = OFileDialog::getOpenFileName(1, QDir::home().absPath()); 374 QString map = OFileDialog::getOpenFileName(1, QDir::home().absPath());
378 375
379 if (map.isNull()) return; 376 if (map.isNull()) return;