summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/servicesdialog.cpp
authorkorovkin <korovkin>2006-04-20 12:37:33 (UTC)
committer korovkin <korovkin>2006-04-20 12:37:33 (UTC)
commitfce7a143353e2bdd41d878c6f0a1224e0f2a158e (patch) (side-by-side diff)
tree41fc68d13e148b8979dde51401ce160f10197a6c /noncore/net/opietooth/manager/servicesdialog.cpp
parent6d3a8eaf3b92f8eec9908eed91568342fac5de1d (diff)
downloadopie-fce7a143353e2bdd41d878c6f0a1224e0f2a158e.zip
opie-fce7a143353e2bdd41d878c6f0a1224e0f2a158e.tar.gz
opie-fce7a143353e2bdd41d878c6f0a1224e0f2a158e.tar.bz2
Added services configuration dialog.
Diffstat (limited to 'noncore/net/opietooth/manager/servicesdialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/servicesdialog.cpp120
1 files changed, 120 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/servicesdialog.cpp b/noncore/net/opietooth/manager/servicesdialog.cpp
new file mode 100644
index 0000000..114c360
--- a/dev/null
+++ b/noncore/net/opietooth/manager/servicesdialog.cpp
@@ -0,0 +1,120 @@
+/* $Id$ */
+/* Bluetooth services configuration dialog */
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+#include "servicesdialog.h"
+#include "btconfhandler.h"
+#include <opie2/odebug.h>
+#include <qstring.h>
+#include <qcheckbox.h>
+#include <qlineedit.h>
+#include <qcombobox.h>
+using namespace Opie::Core;
+
+using namespace OpieTooth;
+
+ServicesDialog::ServicesDialog(const QString& conf,
+ QWidget* parent, const char* name, bool modal, WFlags fl) :
+ ServicesDialogBase(parent, name, modal, fl),
+ cfg(conf)
+{
+ int i; //just an index
+ QString role;
+ hcidEnableCBox->setChecked(cfg.getHcidEnable());
+ hiddEnableCBox->setChecked(cfg.getHiddEnable());
+ sdpdEnableCBox->setChecked(cfg.getSdpdEnable());
+ rfcommEnableCBox->setChecked(cfg.getRfcommEnable());
+ dundEnableCBox->setChecked(cfg.getDundEnable());
+ dundDisableSDPCBox->setChecked(cfg.getDunDisableSDP());
+ dundPersistCBox->setChecked(cfg.getDunPersist());
+ dundPersistEdit->setText(cfg.getDunPersistPeriod());
+ dundCacheCBox->setChecked(cfg.getDunCache());
+ dundCacheEdit->setText(cfg.getDunCachePeriod());
+ for (i = 1; i < 32; i++)
+ dundChannelCBox->insertItem(QString::number(i));
+ role = cfg.getDunChannel();
+ for (i = 0; i < dundChannelCBox->count(); i++) {
+ if (role == dundChannelCBox->text(i)) {
+ dundChannelCBox->setCurrentItem(i);
+ break;
+ }
+ }
+ dundMsdunCBox->setChecked(cfg.getDunMsdun());
+ dundMsdunTimeoutEdit->setText(cfg.getDunMsdunTimeout());
+ dundPPPdCBox->setChecked(cfg.getDunPPPd());
+ dundPPPdPathEdit->setText(cfg.getDunPPPdPath());
+ dundPPPdOptionsEdit->setText(cfg.getDunPPPdOptions());
+
+ pandEnableCBox->setChecked(cfg.getPanEnable());
+ pandEncryptCBox->setChecked(cfg.getPanEncrypt());
+ pandSecureCBox->setChecked(cfg.getPanSecure());
+ pandMasterCBox->setChecked(cfg.getPanMaster());
+ role = cfg.getPanRole();
+ for (i = 0; i < pandRoleComboBox->count(); i++) {
+ if (role == pandRoleComboBox->text(i)) {
+ pandRoleComboBox->setCurrentItem(i);
+ break;
+ }
+ }
+ pandDisableSDPCBox->setChecked(cfg.getPanDisableSDP());
+ pandPersistCBox->setChecked(cfg.getPanPersist());
+ pandPersistEdit->setText(cfg.getPanPersistPeriod());
+ pandCacheCBox->setChecked(cfg.getPanCache());
+ pandCacheEdit->setText(cfg.getPanCachePeriod());
+}
+
+ServicesDialog::~ServicesDialog()
+{
+}
+
+void ServicesDialog::accept()
+{
+ QString tmp;
+ odebug << "save configuration" << oendl;
+ cfg.setHcidEnable(hcidEnableCBox->isChecked());
+ cfg.setHiddEnable(hiddEnableCBox->isChecked());
+ cfg.setSdpdEnable(sdpdEnableCBox->isChecked());
+ cfg.setRfcommEnable(rfcommEnableCBox->isChecked());
+ cfg.setDundEnable(dundEnableCBox->isChecked());
+ cfg.setDunDisableSDP(dundDisableSDPCBox->isChecked());
+ cfg.setDunPersist(dundPersistCBox->isChecked());
+ tmp = dundPersistEdit->text();
+ cfg.setDunPersistPeriod(tmp);
+ cfg.setDunCache(dundCacheCBox->isChecked());
+ tmp = dundCacheEdit->text();
+ cfg.setDunCachePeriod(tmp);
+ tmp = dundChannelCBox->currentText();
+ cfg.setDunChannel(tmp);
+ cfg.setDunMsdun(dundMsdunCBox->isChecked());
+ tmp = dundMsdunTimeoutEdit->text();
+ cfg.setDunMsdunTimeout(tmp);
+ cfg.setDunPPPd(dundPPPdCBox->isChecked());
+ tmp = dundPPPdPathEdit->text();
+ cfg.setDunPPPdPath(tmp);
+ tmp = dundPPPdOptionsEdit->text();
+ cfg.setDunPPPdOptions(tmp);
+
+ cfg.setPanEnable(pandEnableCBox->isChecked());
+ cfg.setPanEncrypt(pandEncryptCBox->isChecked());
+ cfg.setPanSecure(pandSecureCBox->isChecked());
+ cfg.setPanMaster(pandMasterCBox->isChecked());
+ cfg.setPanDisableSDP(pandDisableSDPCBox->isChecked());
+ tmp = pandRoleComboBox->currentText();
+ cfg.setPanRole(tmp);
+ cfg.setPanPersist(pandPersistCBox->isChecked());
+ tmp = pandPersistEdit->text();
+ cfg.setPanPersistPeriod(tmp);
+ cfg.setPanCache(pandCacheCBox->isChecked());
+ tmp = pandCacheEdit->text();
+ cfg.setPanCachePeriod(tmp);
+ cfg.saveConfig();
+ ServicesDialogBase::accept();
+}
+
+//eof