summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/bluebase.h
authorharlekin <harlekin>2002-05-30 18:32:39 (UTC)
committer harlekin <harlekin>2002-05-30 18:32:39 (UTC)
commit9deb3a3784c638abd44bb0a263ebec29b6a20d9a (patch) (unidiff)
treee9fc623e322d348ed8e0f4e57ffaca36956d5d07 /noncore/net/opietooth/manager/bluebase.h
parentf117abbfaf2c17c5af700433d181266b4c8d5a7b (diff)
downloadopie-9deb3a3784c638abd44bb0a263ebec29b6a20d9a.zip
opie-9deb3a3784c638abd44bb0a263ebec29b6a20d9a.tar.gz
opie-9deb3a3784c638abd44bb0a263ebec29b6a20d9a.tar.bz2
gui stuff - not doing anything
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