summaryrefslogtreecommitdiff
path: root/inputmethods
authormickeyl <mickeyl>2004-01-04 14:22:59 (UTC)
committer mickeyl <mickeyl>2004-01-04 14:22:59 (UTC)
commit5c4c2a789c19e727bb9ca323ea1fec1b7d1bd057 (patch) (side-by-side diff)
treec2e1b4a090ca53efd3b3e0c20d12a633e01470d4 /inputmethods
parent84f039ef3799c5310a4f94057b9d76d4ee55f499 (diff)
downloadopie-5c4c2a789c19e727bb9ca323ea1fec1b7d1bd057.zip
opie-5c4c2a789c19e727bb9ca323ea1fec1b7d1bd057.tar.gz
opie-5c4c2a789c19e727bb9ca323ea1fec1b7d1bd057.tar.bz2
more patches to multikey+applet courtesy Anton Kachalov <mouse@altlinux.ru>
Diffstat (limited to 'inputmethods') (more/less context) (ignore whitespace changes)
-rw-r--r--inputmethods/multikey/configdlg.cpp161
-rw-r--r--inputmethods/multikey/configdlg.h12
2 files changed, 83 insertions, 90 deletions
diff --git a/inputmethods/multikey/configdlg.cpp b/inputmethods/multikey/configdlg.cpp
index f127d0e..d29109a 100644
--- a/inputmethods/multikey/configdlg.cpp
+++ b/inputmethods/multikey/configdlg.cpp
@@ -14,2 +14,3 @@
+#include <qlayout.h>
#include <qwidget.h>
@@ -35,3 +36,3 @@
// ConfigDlg::ConfigDlg() {{{1
-ConfigDlg::ConfigDlg () : QTabWidget ()
+ConfigDlg::ConfigDlg () : QDialog ()
{
@@ -46,6 +47,9 @@ ConfigDlg::ConfigDlg () : QTabWidget ()
- QVBox *gen_box = new QVBox (this);
- gen_box->setMargin(3);
- addTab(gen_box, tr("General Settings"));
+ QVBoxLayout *base_lay = new QVBoxLayout(this);
+
+ QTabWidget *tabs = new QTabWidget(this, "tabs");
+ QWidget *gen_box = new QWidget(tabs, "gen_tab");
+ QVBoxLayout *gen_lay = new QVBoxLayout(gen_box);
+ gen_lay->setMargin(3);
QGroupBox *map_group = new QGroupBox (2, Qt::Vertical, tr("Keymap File"), gen_box);
@@ -131,3 +135,2 @@ ConfigDlg::ConfigDlg () : QTabWidget ()
// have to "+1" because the "current language" listItem... remember?
-
connect(keymaps, SIGNAL(highlighted(int)), SLOT(setMap(int)));
@@ -144,3 +147,3 @@ ConfigDlg::ConfigDlg () : QTabWidget ()
remove_button->setFlat(TRUE);
- if (default_maps.find(QFileInfo(current_map).fileName()) != default_maps.end())
+ if (keymaps->currentItem() == 0 || default_maps.find(QFileInfo(current_map).fileName()) != default_maps.end())
remove_button->setDisabled(true);
@@ -148,2 +151,4 @@ ConfigDlg::ConfigDlg () : QTabWidget ()
+ gen_lay->addWidget(map_group);
+
// make a box that will contain the buttons on the bottom
@@ -159,5 +164,2 @@ ConfigDlg::ConfigDlg () : QTabWidget ()
- // by connecting it after checking it, the signal isn't emmited
- connect (pick_button, SIGNAL(clicked()), this, SLOT(pickTog()));
-
repeat_button = new QCheckBox(tr("Key Repeat"), other_grid);
@@ -169,3 +171,5 @@ ConfigDlg::ConfigDlg () : QTabWidget ()
}
- connect (repeat_button, SIGNAL(clicked()), this, SLOT(repeatTog()));
+
+ gen_lay->addWidget(other_grid);
+ tabs->addTab(gen_box, tr("General Settings"));
@@ -175,7 +179,11 @@ ConfigDlg::ConfigDlg () : QTabWidget ()
- QGrid *color_box = new QGrid(2, this);
- color_box->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed));
- color_box->setMargin(3);
- color_box->setSpacing(3);
- addTab(color_box, tr("Colors"));
+ QWidget *color_box = new QWidget(tabs, "color_tab");
+
+ QGridLayout *color_lay = new QGridLayout(color_box);
+ QGrid *color_grid = new QGrid(2, color_box);
+ color_lay->setAlignment(Qt::AlignTop);
+ color_grid->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed));
+ color_grid->layout()->setAlignment(Qt::AlignTop);
+ color_grid->setMargin(3);
+ color_grid->setSpacing(3);
@@ -185,4 +193,4 @@ ConfigDlg::ConfigDlg () : QTabWidget ()
- label = new QLabel(tr("Key Color"), color_box);
- keycolor_button = new QPushButton(color_box);
+ label = new QLabel(tr("Key Color"), color_grid);
+ keycolor_button = new QPushButton(color_grid);
connect(keycolor_button, SIGNAL(clicked()), SLOT(keyColorClicked()));
@@ -202,4 +210,4 @@ ConfigDlg::ConfigDlg () : QTabWidget ()
- label = new QLabel(tr("Key Pressed Color"), color_box);
- keycolor_pressed_button = new QPushButton(color_box);
+ label = new QLabel(tr("Key Pressed Color"), color_grid);
+ keycolor_pressed_button = new QPushButton(color_grid);
connect(keycolor_pressed_button, SIGNAL(clicked()), SLOT(keyColorPressedClicked()));
@@ -209,4 +217,4 @@ ConfigDlg::ConfigDlg () : QTabWidget ()
- label = new QLabel(tr("Line Color"), color_box);
- keycolor_lines_button = new QPushButton(color_box);
+ label = new QLabel(tr("Line Color"), color_grid);
+ keycolor_lines_button = new QPushButton(color_grid);
connect(keycolor_lines_button, SIGNAL(clicked()), SLOT(keyColorLinesClicked()));
@@ -217,4 +225,4 @@ ConfigDlg::ConfigDlg () : QTabWidget ()
- label = new QLabel(tr("Text Color"), color_box);
- textcolor_button = new QPushButton(color_box);
+ label = new QLabel(tr("Text Color"), color_grid);
+ textcolor_button = new QPushButton(color_grid);
connect(textcolor_button, SIGNAL(clicked()), SLOT(textColorClicked()));
@@ -224,9 +232,12 @@ ConfigDlg::ConfigDlg () : QTabWidget ()
- label = new QLabel("", color_box); // a spacer so the above buttons dont expand
+ label = new QLabel("", color_grid); // a spacer so the above buttons dont expand
label->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding));
-}
+ /* FIXME: hacked spacer height */
+ QSpacerItem *spacer = new QSpacerItem(0, 300, QSizePolicy::Expanding, QSizePolicy::Maximum);
-ConfigDlg::~ConfigDlg()
-{
- emit reloadSw();
+ color_lay->addWidget(color_grid, 0, 0);
+ color_lay->addItem(spacer);
+
+ tabs->addTab(color_box, tr("Colors"));
+ base_lay->addWidget(tabs);
}
@@ -250,3 +261,3 @@ QStringList ConfigDlg::loadSw()
/* Clear non existents entries */
- QStringList s_copy = s_maps;
+ QStringList s_copy(s_maps);
for (uint i = 0; i < s_copy.count(); ++i) {
@@ -274,2 +285,40 @@ QStringList ConfigDlg::loadSw()
+void ConfigDlg::accept()
+{
+ /* Writing all stuffs to config */
+ Config *config = new Config("multikey");
+ config->setGroup("general");
+ config->writeEntry("usePickboard", pick_button->isChecked()); // default closed
+ config->writeEntry("useRepeat", repeat_button->isChecked()); // default closed
+
+ config->setGroup("keymaps");
+ config->writeEntry("sw", sw_maps, QChar('|'));
+ config->writeEntry("maps", custom_maps, QChar('|'));
+ delete config;
+
+ int index = keymaps->currentItem();
+ if (index == 0) {
+
+ remove_button->setDisabled(true);
+ emit setMapToDefault();
+ }
+ else if (default_maps.find(sw_maps[index-1]) != default_maps.end()) {
+
+ remove_button->setDisabled(true);
+ emit setMapToFile(QPEApplication::qpeDir() + "share/multikey/" + sw_maps[index - 1]);
+
+ } else {
+
+ remove_button->setEnabled(true);
+ emit setMapToFile(sw_maps[index - 1]);
+ }
+
+ emit pickboardToggled(pick_button->isChecked());
+ emit repeatToggled(repeat_button->isChecked());
+ emit reloadSw();
+
+ QDialog::accept();
+ emit configDlgClosed();
+}
+
void ConfigDlg::moveSelectedUp()
@@ -287,6 +336,2 @@ void ConfigDlg::moveSelectedUp()
keymaps->setCurrentItem(i-1);
-
- Config config("multikey");
- config.setGroup("keymaps");
- config.writeEntry("sw", sw_maps, QChar('|'));
}
@@ -307,6 +352,2 @@ void ConfigDlg::moveSelectedDown()
keymaps->setCurrentItem(i+1);
-
- Config config("multikey");
- config.setGroup("keymaps");
- config.writeEntry("sw", sw_maps, QChar('|'));
}
@@ -314,20 +355,2 @@ void ConfigDlg::moveSelectedDown()
-void ConfigDlg::pickTog() {
-
- Config config ("multikey");
- config.setGroup ("general");
- config.writeEntry ("usePickboard", pick_button->isChecked()); // default closed
-
- emit pickboardToggled(pick_button->isChecked());
-}
-
-void ConfigDlg::repeatTog() {
-
- Config config ("multikey");
- config.setGroup ("general");
- config.writeEntry ("useRepeat", repeat_button->isChecked()); // default closed
-
- emit repeatToggled(repeat_button->isChecked());
-}
-
void ConfigDlg::closeEvent(QCloseEvent *) {
@@ -338,11 +361,2 @@ void ConfigDlg::closeEvent(QCloseEvent *) {
-// ConfigDlg::setMap {{{1
-
-/*
- * the index is kinda screwy, because in the config file, index 0 is just the
- * first element in the QStringList, but here it's the "Current Language"
- * listItem. therefor you have to minus one to the index before you access it.
- *
- */
-
void ConfigDlg::setMap(int index) {
@@ -350,15 +364,8 @@ void ConfigDlg::setMap(int index) {
if (index == 0) {
-
remove_button->setDisabled(true);
- emit setMapToDefault();
}
else if (default_maps.find(sw_maps[index-1]) != default_maps.end()) {
-
remove_button->setDisabled(true);
- emit setMapToFile(QPEApplication::qpeDir() + "share/multikey/" + sw_maps[index - 1]);
-
} else {
-
remove_button->setEnabled(true);
- emit setMapToFile(sw_maps[index - 1]);
}
@@ -403,8 +410,2 @@ void ConfigDlg::addMap() {
keymaps->setSelected(keymaps->count() - 1, true);
-
-
- config.writeEntry("maps", maps, QChar('|'));
- config.writeEntry("sw", sw_maps, QChar('|'));
- config.writeEntry("current", map);
-
}
@@ -421,8 +422,2 @@ void ConfigDlg::removeMap() {
sw_maps.remove(sw_maps.at(keymaps->currentItem()));
-
- // write the changes
- Config config ("multikey");
- config.setGroup("keymaps");
- config.writeEntry("maps", custom_maps, QChar('|'));
- config.writeEntry("sw", sw_maps, QChar('|'));
}
diff --git a/inputmethods/multikey/configdlg.h b/inputmethods/multikey/configdlg.h
index ea157c5..91ae429 100644
--- a/inputmethods/multikey/configdlg.h
+++ b/inputmethods/multikey/configdlg.h
@@ -1,3 +1,3 @@
#include <qpe/qpeapplication.h>
-#include <qtabwidget.h>
+#include <qdialog.h>
#include <qcheckbox.h>
@@ -9,3 +9,3 @@
-class ConfigDlg : public QTabWidget
+class ConfigDlg : public QDialog
{
@@ -15,3 +15,2 @@ public:
ConfigDlg ();
- ~ConfigDlg ();
static QStringList ConfigDlg::loadSw();
@@ -27,2 +26,5 @@ signals:
+protected:
+ virtual void accept();
+
protected slots:
@@ -32,4 +34,2 @@ protected slots:
private slots:
- void pickTog();
- void repeatTog();
void setMap(int index);
@@ -39,3 +39,2 @@ private slots:
-
// all those required slots for the color push buttons
@@ -53,3 +52,2 @@ private:
-
QStringList default_maps; // the maps in your share/multikey/ dir