summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/bluebase.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/bluebase.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/bluebase.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.h b/noncore/net/opietooth/manager/bluebase.h
new file mode 100644
index 0000000..e2b013e
--- a/dev/null
+++ b/noncore/net/opietooth/manager/bluebase.h
@@ -0,0 +1,40 @@
1
2#ifndef BLUEBASE_H
3#define BLUEBASE_H
4
5#include <qvariant.h>
6#include <qwidget.h>
7#include <qscrollview.h>
8#include <qsplitter.h>
9
10class QVBox;
11class QHBoxLayout;
12class QGridLayout;
13class QFrame;
14class QLabel;
15class QPushButton;
16class QTabWidget;
17class QCheckBox;
18
19class BlueBase : public QWidget
20{
21 Q_OBJECT
22
23public:
24 BlueBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
25 ~BlueBase();
26
27
28
29protected:
30 QTabWidget *TabWidget;
31 QWidget *Tab;
32 QWidget *TabConf;
33 QWidget *TabConn;
34 QCheckBox *AuthCheckBox;
35 QCheckBox *CryptCheckBox;
36 QLabel *Test;
37 QPushButton *ScanButton;
38};
39
40#endif