summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/bluebase.h
Side-by-side diff
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 @@
+
+#ifndef BLUEBASE_H
+#define BLUEBASE_H
+
+#include <qvariant.h>
+#include <qwidget.h>
+#include <qscrollview.h>
+#include <qsplitter.h>
+
+class QVBox;
+class QHBoxLayout;
+class QGridLayout;
+class QFrame;
+class QLabel;
+class QPushButton;
+class QTabWidget;
+class QCheckBox;
+
+class BlueBase : public QWidget
+{
+ Q_OBJECT
+
+public:
+ BlueBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
+ ~BlueBase();
+
+
+
+protected:
+ QTabWidget *TabWidget;
+ QWidget *Tab;
+ QWidget *TabConf;
+ QWidget *TabConn;
+ QCheckBox *AuthCheckBox;
+ QCheckBox *CryptCheckBox;
+ QLabel *Test;
+ QPushButton *ScanButton;
+};
+
+#endif