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
@@ -3,12 +3,13 @@
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;
@@ -17,12 +18,14 @@ class 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();
@@ -45,13 +48,13 @@ namespace OpieTooth {
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