-rw-r--r-- | core/settings/security/security.cpp | 7 | ||||
-rw-r--r-- | core/settings/security/securitybase.ui | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/core/settings/security/security.cpp b/core/settings/security/security.cpp index 75a181b..c4726b3 100644 --- a/core/settings/security/security.cpp +++ b/core/settings/security/security.cpp @@ -23,6 +23,7 @@ #include <qpe/config.h> #include <qpe/password.h> #include <qpe/qpedialog.h> +#include <qpe/qcopenvelope_qws.h> #include <qcheckbox.h> #include <qpushbutton.h> @@ -72,6 +73,9 @@ autoLogin=true; } + cfg.setGroup("SyncMode"); + int mode = cfg.readNumEntry("Mode",2); // Default to Sharp + syncModeCombo->setCurrentItem( mode - 1 ); connect(autologinToggle, SIGNAL(toggled(bool)), this, SLOT(toggleAutoLogin(bool))); connect(userlist, SIGNAL(activated(int)), this, SLOT(changeLoginName(int))); @@ -132,6 +136,7 @@ void Security::accept() { applySecurity(); QDialog::accept(); + QCopEnvelope env("QPE/System", "securityChanged()" ); } void Security::done(int r) @@ -255,6 +260,8 @@ void Security::applySecurity() loginCfg.removeEntry("AutoLogin"); } + cfg.setGroup("SyncMode"); + cfg.writeEntry("Mode", syncModeCombo->currentItem()+1 ); } } diff --git a/core/settings/security/securitybase.ui b/core/settings/security/securitybase.ui index da25f39..73290e5 100644 --- a/core/settings/security/securitybase.ui +++ b/core/settings/security/securitybase.ui @@ -11,7 +11,7 @@ <rect> <x>0</x> <y>0</y> - <width>329</width> + <width>339</width> <height>483</height> </rect> </property> @@ -381,6 +381,31 @@ <bool>true</bool> </property> </widget> + <widget> + <class>QComboBox</class> + <item> + <property> + <name>text</name> + <string>Qtopia 1.7</string> + </property> + </item> + <item> + <property> + <name>text</name> + <string>Opie 1.0</string> + </property> + </item> + <item> + <property> + <name>text</name> + <string>Both</string> + </property> + </item> + <property stdset="1"> + <name>name</name> + <cstring>syncModeCombo</cstring> + </property> + </widget> </vbox> </widget> <spacer> |