summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/btconfigwidget.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/btconfigwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/btconfigwidget.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/btconfigwidget.h b/noncore/apps/opie-console/btconfigwidget.h
index ceb13ee..d60d8a2 100644
--- a/noncore/apps/opie-console/btconfigwidget.h
+++ b/noncore/apps/opie-console/btconfigwidget.h
@@ -4,12 +4,13 @@
4#include "profiledialogwidget.h" 4#include "profiledialogwidget.h"
5 5
6class QVBoxLayout; 6class QVBoxLayout;
7class QLabel; 7class QLabel;
8class QComboBox; 8class QComboBox;
9class QLineEdit; 9class QLineEdit;
10class QRadioButton;
10class IOLayerBase; 11class IOLayerBase;
11class BTConfigWidget : public ProfileDialogConnectionWidget { 12class BTConfigWidget : public ProfileDialogConnectionWidget {
12 13
13 Q_OBJECT 14 Q_OBJECT
14 15
15public: 16public:
@@ -21,11 +22,16 @@ public:
21private: 22private:
22 QVBoxLayout* m_lay; 23 QVBoxLayout* m_lay;
23 QLabel* m_device; 24 QLabel* m_device;
24 QComboBox* m_deviceCmb; 25 QComboBox* m_deviceCmb;
25 IOLayerBase* m_base; 26 IOLayerBase* m_base;
26 QLineEdit* m_mac; 27 QLineEdit* m_mac;
28 QRadioButton *m_macRadio;
29 QRadioButton *m_devRadio;
27 30
31private slots:
32 void slotMacRadio( bool on );
33 void slotDevRadio( bool on );
28}; 34};
29 35
30 36
31#endif 37#endif