summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/bluebase.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/bluebase.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/bluebase.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.h b/noncore/net/opietooth/manager/bluebase.h
index 023af7a..ae5ce67 100644
--- a/noncore/net/opietooth/manager/bluebase.h
+++ b/noncore/net/opietooth/manager/bluebase.h
@@ -1,34 +1,37 @@
1 1
2#ifndef BLUEBASE_H 2#ifndef BLUEBASE_H
3#define BLUEBASE_H 3#define BLUEBASE_H
4 4
5#include <qvariant.h> 5#include <qvariant.h>
6#include <qwidget.h> 6#include <qwidget.h>
7#include <qscrollview.h> 7#include <qscrollview.h>
8#include <qsplitter.h> 8#include <qsplitter.h>
9#include <qlist.h>
9 10
10#include "bluetoothbase.h" 11#include "bluetoothbase.h"
11 12
12class QVBox; 13class QVBox;
13class QHBoxLayout; 14class QHBoxLayout;
14class QGridLayout; 15class QGridLayout;
15class QFrame; 16class QFrame;
16class QLabel; 17class QLabel;
17class QPushButton; 18class QPushButton;
18class QTabWidget; 19class QTabWidget;
19class QCheckBox; 20class QCheckBox;
20 21
21namespace OpieTooth { 22namespace OpieTooth {
22 23
24
25
23 class BlueBase : public BluetoothBase { 26 class BlueBase : public BluetoothBase {
24 Q_OBJECT 27 Q_OBJECT
25 28
26 public: 29 public:
27 BlueBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 30 BlueBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
28 ~BlueBase(); 31 ~BlueBase();
29 32
30 protected: 33 protected:
31 34
32 35
33 private slots: 36 private slots:
34 void startScan(); 37 void startScan();
@@ -39,20 +42,20 @@ namespace OpieTooth {
39 QString getStatus(); 42 QString getStatus();
40 void initGui(); 43 void initGui();
41 44
42 45
43 QString deviceName; 46 QString deviceName;
44 QString defaultPasskey; 47 QString defaultPasskey;
45 int useEncryption; 48 int useEncryption;
46 int enableAuthentification; 49 int enableAuthentification;
47 int enablePagescan; 50 int enablePagescan;
48 int enableInquiryscan; 51 int enableInquiryscan;
49 52
50 private slots: 53 private slots:
51 54 void addSearchedDevices( QList<RemoteDevices> &newDevices );
52 void applyConfigChanges(); 55 void applyConfigChanges();
53 56
54 }; 57 };
55 58
56} 59}
57 60
58#endif 61#endif