summaryrefslogtreecommitdiff
authoralwin <alwin>2005-02-27 13:40:06 (UTC)
committer alwin <alwin>2005-02-27 13:40:06 (UTC)
commit952ed8b53ee74217c3aa839dada3119bb399b9a3 (patch) (unidiff)
tree1ab11166322e31deb9429deae83f34018b69d6eb
parentcfca93daadf9c0c6c41a4f1eed26dcac318056f1 (diff)
downloadopie-952ed8b53ee74217c3aa839dada3119bb399b9a3.zip
opie-952ed8b53ee74217c3aa839dada3119bb399b9a3.tar.gz
opie-952ed8b53ee74217c3aa839dada3119bb399b9a3.tar.bz2
all xml-files starting with "common" in name will not be listed
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/applets/zkbapplet/keyzcfg/cfgdlg.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/applets/zkbapplet/keyzcfg/cfgdlg.cpp b/noncore/applets/zkbapplet/keyzcfg/cfgdlg.cpp
index 6f24ea0..f4005bb 100644
--- a/noncore/applets/zkbapplet/keyzcfg/cfgdlg.cpp
+++ b/noncore/applets/zkbapplet/keyzcfg/cfgdlg.cpp
@@ -1,24 +1,27 @@
1 1
2#include <qdir.h> 2#include <qdir.h>
3#include <qregexp.h>
3#include <qpe/qpeapplication.h> 4#include <qpe/qpeapplication.h>
4#include <qpe/qcopenvelope_qws.h> 5#include <qpe/qcopenvelope_qws.h>
5#include <unistd.h> 6#include <unistd.h>
6#include "cfgdlg.h" 7#include "cfgdlg.h"
7 8
8CfgDlg::CfgDlg(QWidget* parent, CfgFile* cf, QApplication* app, bool mod): 9CfgDlg::CfgDlg(QWidget* parent, CfgFile* cf, QApplication* app, bool mod):
9 QDialog(parent, "CfgDlg", mod), cfile(cf), application(app) { 10 QDialog(parent, "CfgDlg", mod), cfile(cf), application(app) {
10 11
11 setCaption(tr("keyz configurator")); 12 setCaption(tr("keyz configurator"));
12 13
14 static QRegExp r("^common.*\\.xml$");
15 static QRegExp r2("^zkb\\.xml$");
13 QGridLayout* gl = new QGridLayout(this, 7, 5, 5, 5); 16 QGridLayout* gl = new QGridLayout(this, 7, 5, 5, 5);
14 17
15 QLabel* flabel = new QLabel("Available Keymaps", this); 18 QLabel* flabel = new QLabel("Available Keymaps", this);
16 files = new QListBox(this); 19 files = new QListBox(this);
17 QPushButton* addButton = new QPushButton(">>", this); //add->setText("Add"); 20 QPushButton* addButton = new QPushButton(">>", this); //add->setText("Add");
18 connect(addButton, SIGNAL(clicked()), this, SLOT(add())); 21 connect(addButton, SIGNAL(clicked()), this, SLOT(add()));
19 QLabel* klabel = new QLabel("Selected Keymaps", this); 22 QLabel* klabel = new QLabel("Selected Keymaps", this);
20 keymaps = new QListBox(this); 23 keymaps = new QListBox(this);
21 connect(keymaps, SIGNAL(highlighted(const QString&)), this, SLOT(keymapHighlighted(const QString&))); 24 connect(keymaps, SIGNAL(highlighted(const QString&)), this, SLOT(keymapHighlighted(const QString&)));
22 QPushButton* delButton = new QPushButton("<<", this); //del->setText("Delete"); 25 QPushButton* delButton = new QPushButton("<<", this); //del->setText("Delete");
23 connect(delButton, SIGNAL(clicked()), this, SLOT(del())); 26 connect(delButton, SIGNAL(clicked()), this, SLOT(del()));
24 QPushButton* slabelButton = new QPushButton("Set Label", this); //apply->setText("Apply"); 27 QPushButton* slabelButton = new QPushButton("Set Label", this); //apply->setText("Apply");
@@ -63,25 +66,25 @@ CfgDlg::CfgDlg(QWidget* parent, CfgFile* cf, QApplication* app, bool mod):
63 QList<CfgEntry>& e = cfile->getEntries(); 66 QList<CfgEntry>& e = cfile->getEntries();
64 67
65 for(uint i = 0; i < e.count(); i++) { 68 for(uint i = 0; i < e.count(); i++) {
66 CfgEntry* entry = e.at(i); 69 CfgEntry* entry = e.at(i);
67 keymaps->insertItem(entry->getFile()); 70 keymaps->insertItem(entry->getFile());
68 m.insert(entry->getFile(), entry->getLabel()); 71 m.insert(entry->getFile(), entry->getLabel());
69 } 72 }
70 73
71 QDir dir(QPEApplication::qpeDir()+"share/zkb", "*.xml"); 74 QDir dir(QPEApplication::qpeDir()+"share/zkb", "*.xml");
72 QStringList flist = dir.entryList(); 75 QStringList flist = dir.entryList();
73 QStringList::Iterator sit; 76 QStringList::Iterator sit;
74 for(sit = flist.begin(); sit != flist.end(); ++sit) { 77 for(sit = flist.begin(); sit != flist.end(); ++sit) {
75 if (*sit != "common.xml" && *sit != "zkb.xml" && m.find(*sit) == m.end()) { 78 if (r.match(*sit)==-1 && r2.match(*sit)==-1&& m.find(*sit) == m.end()) {
76 files->insertItem(*sit); 79 files->insertItem(*sit);
77 } 80 }
78 } 81 }
79 82
80 ad->setValue(cfile->getAutorepeatDelay()); 83 ad->setValue(cfile->getAutorepeatDelay());
81 ap->setValue(cfile->getAutorepeatPeriod()); 84 ap->setValue(cfile->getAutorepeatPeriod());
82 85
83 //gl->addMultiCellWidget(enable, 7, 7, 0, 4); 86 //gl->addMultiCellWidget(enable, 7, 7, 0, 4);
84} 87}
85 88
86CfgDlg::~CfgDlg() { 89CfgDlg::~CfgDlg() {
87} 90}