summaryrefslogtreecommitdiff
path: root/noncore/net
authorharlekin <harlekin>2002-06-05 21:51:49 (UTC)
committer harlekin <harlekin>2002-06-05 21:51:49 (UTC)
commit38946b6ef966a154d979d7dd254cf463f6dadbe5 (patch) (side-by-side diff)
tree9c08de13d750ce32afe4661d71f6f3933a8841d8 /noncore/net
parentd16b4fecd10dbce1bb5fc0f58e78469ba40f6ec5 (diff)
downloadopie-38946b6ef966a154d979d7dd254cf463f6dadbe5.zip
opie-38946b6ef966a154d979d7dd254cf463f6dadbe5.tar.gz
opie-38946b6ef966a154d979d7dd254cf463f6dadbe5.tar.bz2
update
Diffstat (limited to 'noncore/net') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/bluebase.cpp105
-rw-r--r--noncore/net/opietooth/manager/bluebase.h17
-rw-r--r--noncore/net/opietooth/manager/bluetoothbase.ui156
-rw-r--r--noncore/net/opietooth/manager/devicedialog.ui12
-rw-r--r--noncore/net/opietooth/manager/scandialog.ui6
5 files changed, 220 insertions, 76 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp
index c17271f..3d446f0 100644
--- a/noncore/net/opietooth/manager/bluebase.cpp
+++ b/noncore/net/opietooth/manager/bluebase.cpp
@@ -30,16 +30,20 @@
#include <qtabwidget.h>
#include <qscrollview.h>
#include <qvbox.h>
+#include <qmessagebox.h>
#include <qapplication.h>
#include <qcheckbox.h>
+#include <qlineedit.h>
#include <qpe/resource.h>
+#include <qpe/config.h>
BlueBase::BlueBase( QWidget* parent, const char* name, WFlags fl )
: BluetoothBase( parent, name, fl ) {
QObject::connect( (QObject*) PushButton2, SIGNAL( clicked() ), this, SLOT(startScan()));
+ QObject::connect((QObject*)configApplyButton, SIGNAL(clicked() ), this, SLOT(applyConfigChanges()));
QPalette pal = this->palette();
QColor col = pal.color(QPalette::Active, QColorGroup::Background);
@@ -48,14 +52,113 @@ BlueBase::BlueBase( QWidget* parent, const char* name, WFlags fl )
pal.setColor(QPalette::Normal, QColorGroup::Button, col);
pal.setColor(QPalette::Disabled, QColorGroup::Button, col);
this->setPalette(pal);
+
+ readConfig();
+ initGui();
+}
+
+/**
+ * Reads all options from the config file
+ */
+void BlueBase::readConfig() {
+
+ Config cfg("bluetoothmanager");
+ cfg.setGroup("bluezsettings");
+
+
+ deviceName = cfg.readEntry("name", "No name"); // name the device should identify with
+ defaultPasskey = cfg.readEntryCrypt("passkey", ""); // <- hmm, look up how good the trolls did that, maybe too weak
+ useEncryption = cfg.readNumEntry("useEncryption", 1);
+ enableAuthentification = cfg.readNumEntry("enableAuthentification", 1);
+ enablePagescan = cfg.readNumEntry("enablePagescan",1);
+ enableInquiryscan = cfg.readNumEntry("enableInquiryscan", 1);
+
+}
+
+/**
+ * Writes all options to the config file
+ */
+void BlueBase::writeConfig() {
+
+
+ Config cfg("bluetoothmanager");
+ cfg.setGroup("bluezsettings");
+
+
+ cfg.writeEntry("name", deviceName);
+ cfg.writeEntryCrypt("passkey", defaultPasskey);
+ cfg.writeEntry("useEncryption", useEncryption);
+ cfg.writeEntry("enableAuthentification", enableAuthentification);
+ cfg.writeEntry("enablePagescan",enablePagescan);
+ cfg.writeEntry("enableInquiryscan", enableInquiryscan);
+
+
+}
+
+
+/**
+ * Set up the gui
+ */
+void BlueBase::initGui() {
+
+ StatusLabel->setText(getStatus()); // maybe move it to getStatus()
+
+ cryptCheckBox->setChecked(useEncryption);
+ authCheckBox->setChecked(enableAuthentification);
+ pagescanCheckBox->setChecked(enablePagescan);
+ inquiryscanCheckBox->setChecked(enableInquiryscan);
+ deviceNameLine->setText(deviceName);
+ passkeyLine->setText(defaultPasskey);
+
+}
+
+
+/**
+ * Get the status informations and returns it
+ * @return QString the status informations gathered
+ */
+QString BlueBase::getStatus(){
+
+ return ("manger.h need also a status method");
+
+}
+
+
+/**
+ * Read the current values from the gui and invoke writeConfig()
+ */
+void BlueBase::applyConfigChanges() {
+
+ deviceName = deviceNameLine->text();
+ defaultPasskey = passkeyLine->text();
+ useEncryption = cryptCheckBox->isChecked();
+ enableAuthentification = authCheckBox->isChecked();
+ enablePagescan = pagescanCheckBox->isChecked();
+ enableInquiryscan = inquiryscanCheckBox->isChecked();
+
+ writeConfig();
+
+ QMessageBox* box = new QMessageBox(this, "Test");
+ box->setText(tr("Changes applied"));
+ box->show();
+
+ // falls nötig hcid killhupen - die funktionalität adden
+
+
}
+/**
+ * Open the "scan for devices" dialog
+ */
void BlueBase::startScan() {
- Form3 *scan = new Form3( this, "", true);
+ ScanDialog *scan = new ScanDialog( this, "", true);
scan->exec();
}
+/**
+ * Decontructor
+ */
BlueBase::~BlueBase(){
}
diff --git a/noncore/net/opietooth/manager/bluebase.h b/noncore/net/opietooth/manager/bluebase.h
index 29c45be..fb1844c 100644
--- a/noncore/net/opietooth/manager/bluebase.h
+++ b/noncore/net/opietooth/manager/bluebase.h
@@ -31,6 +31,23 @@ protected:
private slots:
void startScan();
+ private:
+ void readConfig();
+ void writeConfig();
+ QString getStatus();
+ void initGui();
+
+
+ QString deviceName;
+ QString defaultPasskey;
+ int useEncryption;
+ int enableAuthentification;
+ int enablePagescan;
+ int enableInquiryscan;
+
+ private slots:
+
+ void applyConfigChanges();
};
diff --git a/noncore/net/opietooth/manager/bluetoothbase.ui b/noncore/net/opietooth/manager/bluetoothbase.ui
index 61cb95f..61e2bcf 100644
--- a/noncore/net/opietooth/manager/bluetoothbase.ui
+++ b/noncore/net/opietooth/manager/bluetoothbase.ui
@@ -11,8 +11,8 @@
<rect>
<x>0</x>
<y>0</y>
- <width>596</width>
- <height>480</height>
+ <width>228</width>
+ <height>320</height>
</rect>
</property>
<property stdset="1">
@@ -44,33 +44,6 @@
<name>title</name>
<string>Devices</string>
</attribute>
- <widget>
- <class>QPushButton</class>
- <property stdset="1">
- <name>name</name>
- <cstring>PushButton2</cstring>
- </property>
- <property stdset="1">
- <name>geometry</name>
- <rect>
- <x>50</x>
- <y>260</y>
- <width>154</width>
- <height>31</height>
- </rect>
- </property>
- <property stdset="1">
- <name>sizePolicy</name>
- <sizepolicy>
- <hsizetype>0</hsizetype>
- <vsizetype>0</vsizetype>
- </sizepolicy>
- </property>
- <property stdset="1">
- <name>text</name>
- <string>Scan for Devices</string>
- </property>
- </widget>
<spacer>
<property>
<name>name</name>
@@ -164,13 +137,40 @@
<property stdset="1">
<name>geometry</name>
<rect>
- <x>8</x>
- <y>3</y>
- <width>240</width>
- <height>140</height>
+ <x>0</x>
+ <y>0</y>
+ <width>230</width>
+ <height>230</height>
</rect>
</property>
</widget>
+ <widget>
+ <class>QPushButton</class>
+ <property stdset="1">
+ <name>name</name>
+ <cstring>PushButton2</cstring>
+ </property>
+ <property stdset="1">
+ <name>geometry</name>
+ <rect>
+ <x>40</x>
+ <y>231</y>
+ <width>154</width>
+ <height>30</height>
+ </rect>
+ </property>
+ <property stdset="1">
+ <name>sizePolicy</name>
+ <sizepolicy>
+ <hsizetype>0</hsizetype>
+ <vsizetype>0</vsizetype>
+ </sizepolicy>
+ </property>
+ <property stdset="1">
+ <name>text</name>
+ <string>Scan for Devices</string>
+ </property>
+ </widget>
</widget>
<widget>
<class>QWidget</class>
@@ -219,10 +219,10 @@
<property stdset="1">
<name>geometry</name>
<rect>
- <x>8</x>
- <y>3</y>
- <width>241</width>
- <height>301</height>
+ <x>0</x>
+ <y>0</y>
+ <width>240</width>
+ <height>240</height>
</rect>
</property>
</widget>
@@ -241,14 +241,14 @@
<class>QLabel</class>
<property stdset="1">
<name>name</name>
- <cstring>TextLabel6</cstring>
+ <cstring>deviceNameLabel</cstring>
</property>
<property stdset="1">
<name>geometry</name>
<rect>
<x>10</x>
- <y>20</y>
- <width>121</width>
+ <y>10</y>
+ <width>70</width>
<height>20</height>
</rect>
</property>
@@ -261,14 +261,14 @@
<class>QLabel</class>
<property stdset="1">
<name>name</name>
- <cstring>TextLabel7</cstring>
+ <cstring>passkeyLabel</cstring>
</property>
<property stdset="1">
<name>geometry</name>
<rect>
<x>10</x>
<y>50</y>
- <width>120</width>
+ <width>80</width>
<height>20</height>
</rect>
</property>
@@ -281,32 +281,20 @@
<class>QLineEdit</class>
<property stdset="1">
<name>name</name>
- <cstring>LineEdit4</cstring>
+ <cstring>passkeyLine</cstring>
</property>
<property stdset="1">
<name>geometry</name>
<rect>
- <x>128</x>
+ <x>98</x>
<y>53</y>
<width>120</width>
<height>22</height>
</rect>
</property>
- </widget>
- <widget>
- <class>QLineEdit</class>
<property stdset="1">
- <name>name</name>
- <cstring>LineEdit5</cstring>
- </property>
- <property stdset="1">
- <name>geometry</name>
- <rect>
- <x>128</x>
- <y>13</y>
- <width>120</width>
- <height>22</height>
- </rect>
+ <name>echoMode</name>
+ <enum>Password</enum>
</property>
</widget>
<widget>
@@ -321,7 +309,7 @@
<x>10</x>
<y>100</y>
<width>188</width>
- <height>104</height>
+ <height>120</height>
</rect>
</property>
<vbox>
@@ -337,7 +325,7 @@
<class>QCheckBox</class>
<property stdset="1">
<name>name</name>
- <cstring>CheckBox1</cstring>
+ <cstring>authCheckBox</cstring>
</property>
<property stdset="1">
<name>text</name>
@@ -348,7 +336,7 @@
<class>QCheckBox</class>
<property stdset="1">
<name>name</name>
- <cstring>CheckBox2</cstring>
+ <cstring>cryptCheckBox</cstring>
</property>
<property stdset="1">
<name>text</name>
@@ -359,7 +347,7 @@
<class>QCheckBox</class>
<property stdset="1">
<name>name</name>
- <cstring>CheckBox5</cstring>
+ <cstring>pagescanCheckBox</cstring>
</property>
<property stdset="1">
<name>text</name>
@@ -370,7 +358,7 @@
<class>QCheckBox</class>
<property stdset="1">
<name>name</name>
- <cstring>CheckBox6</cstring>
+ <cstring>inquiryscanCheckBox</cstring>
</property>
<property stdset="1">
<name>text</name>
@@ -379,6 +367,42 @@
</widget>
</vbox>
</widget>
+ <widget>
+ <class>QLineEdit</class>
+ <property stdset="1">
+ <name>name</name>
+ <cstring>deviceNameLine</cstring>
+ </property>
+ <property stdset="1">
+ <name>geometry</name>
+ <rect>
+ <x>98</x>
+ <y>13</y>
+ <width>120</width>
+ <height>22</height>
+ </rect>
+ </property>
+ </widget>
+ <widget>
+ <class>QPushButton</class>
+ <property stdset="1">
+ <name>name</name>
+ <cstring>configApplyButton</cstring>
+ </property>
+ <property stdset="1">
+ <name>geometry</name>
+ <rect>
+ <x>60</x>
+ <y>230</y>
+ <width>99</width>
+ <height>32</height>
+ </rect>
+ </property>
+ <property stdset="1">
+ <name>text</name>
+ <string>Apply</string>
+ </property>
+ </widget>
</widget>
<widget>
<class>QWidget</class>
@@ -394,15 +418,15 @@
<class>QLabel</class>
<property stdset="1">
<name>name</name>
- <cstring>StutusLabel</cstring>
+ <cstring>StatusLabel</cstring>
</property>
<property stdset="1">
<name>geometry</name>
<rect>
<x>10</x>
<y>10</y>
- <width>240</width>
- <height>300</height>
+ <width>220</width>
+ <height>250</height>
</rect>
</property>
<property stdset="1">
diff --git a/noncore/net/opietooth/manager/devicedialog.ui b/noncore/net/opietooth/manager/devicedialog.ui
index 121fdf0..e5750ed 100644
--- a/noncore/net/opietooth/manager/devicedialog.ui
+++ b/noncore/net/opietooth/manager/devicedialog.ui
@@ -1,17 +1,17 @@
<!DOCTYPE UI><UI>
-<class>Form2</class>
+<class>DeviceDialog</class>
<widget>
<class>QDialog</class>
<property stdset="1">
<name>name</name>
- <cstring>Form2</cstring>
+ <cstring>DeviceDialog</cstring>
</property>
<property stdset="1">
<name>geometry</name>
<rect>
<x>0</x>
<y>0</y>
- <width>592</width>
+ <width>584</width>
<height>480</height>
</rect>
</property>
@@ -48,10 +48,10 @@
<property stdset="1">
<name>geometry</name>
<rect>
- <x>0</x>
- <y>20</y>
+ <x>-10</x>
+ <y>0</y>
<width>240</width>
- <height>290</height>
+ <height>320</height>
</rect>
</property>
<widget>
diff --git a/noncore/net/opietooth/manager/scandialog.ui b/noncore/net/opietooth/manager/scandialog.ui
index c8d018f..37847ba 100644
--- a/noncore/net/opietooth/manager/scandialog.ui
+++ b/noncore/net/opietooth/manager/scandialog.ui
@@ -1,17 +1,17 @@
<!DOCTYPE UI><UI>
-<class>Form3</class>
+<class>ScanDialog</class>
<widget>
<class>QDialog</class>
<property stdset="1">
<name>name</name>
- <cstring>Form3</cstring>
+ <cstring>ScanDialog</cstring>
</property>
<property stdset="1">
<name>geometry</name>
<rect>
<x>0</x>
<y>0</y>
- <width>368</width>
+ <width>360</width>
<height>392</height>
</rect>
</property>