author | mickeyl <mickeyl> | 2003-05-07 21:11:29 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-05-07 21:11:29 (UTC) |
commit | 8344bbd32ca4ebfef275746de29cb3109b013cb6 (patch) (unidiff) | |
tree | 7edd595d9acda25f7e752a38903f6102cbb55986 | |
parent | 9e1040d8d3646c03e09fb3c55695e2df7f19420b (diff) | |
download | opie-8344bbd32ca4ebfef275746de29cb3109b013cb6.zip opie-8344bbd32ca4ebfef275746de29cb3109b013cb6.tar.gz opie-8344bbd32ca4ebfef275746de29cb3109b013cb6.tar.bz2 |
start with protocol event handling stuff
-rw-r--r-- | noncore/net/wellenreiter/gui/configwindow.cpp | 24 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/configwindow.h | 5 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/protolistview.cpp | 16 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/protolistview.h | 3 |
4 files changed, 45 insertions, 3 deletions
diff --git a/noncore/net/wellenreiter/gui/configwindow.cpp b/noncore/net/wellenreiter/gui/configwindow.cpp index 2305403..5bec7ed 100644 --- a/noncore/net/wellenreiter/gui/configwindow.cpp +++ b/noncore/net/wellenreiter/gui/configwindow.cpp | |||
@@ -117,3 +117,3 @@ int WellenreiterConfigWindow::hoppingInterval() const | |||
117 | 117 | ||
118 | bool WellenreiterConfigWindow::usePrismHeader() | 118 | bool WellenreiterConfigWindow::usePrismHeader() const |
119 | { | 119 | { |
@@ -123,2 +123,24 @@ bool WellenreiterConfigWindow::usePrismHeader() | |||
123 | 123 | ||
124 | bool WellenreiterConfigWindow::isChannelChecked( int channel ) const | ||
125 | { | ||
126 | switch ( channel ) | ||
127 | { | ||
128 | case 1: return channel1->isOn(); | ||
129 | case 2: return channel2->isOn(); | ||
130 | case 3: return channel3->isOn(); | ||
131 | case 4: return channel4->isOn(); | ||
132 | case 5: return channel5->isOn(); | ||
133 | case 6: return channel6->isOn(); | ||
134 | case 7: return channel7->isOn(); | ||
135 | case 8: return channel8->isOn(); | ||
136 | case 9: return channel9->isOn(); | ||
137 | case 10: return channel10->isOn(); | ||
138 | case 11: return channel11->isOn(); | ||
139 | case 12: return channel12->isOn(); | ||
140 | case 13: return channel13->isOn(); | ||
141 | case 14: return channel14->isOn(); | ||
142 | } | ||
143 | } | ||
144 | |||
145 | |||
124 | void WellenreiterConfigWindow::changedDeviceType(int t) | 146 | void WellenreiterConfigWindow::changedDeviceType(int t) |
diff --git a/noncore/net/wellenreiter/gui/configwindow.h b/noncore/net/wellenreiter/gui/configwindow.h index 057bed6..32dc840 100644 --- a/noncore/net/wellenreiter/gui/configwindow.h +++ b/noncore/net/wellenreiter/gui/configwindow.h | |||
@@ -40,3 +40,2 @@ class WellenreiterConfigWindow : public WellenreiterConfigBase | |||
40 | int driverType() const; | 40 | int driverType() const; |
41 | int hoppingInterval() const; | ||
42 | const QString soundOnNetwork() const { return "";/*netSound->currentText();*/ }; | 41 | const QString soundOnNetwork() const { return "";/*netSound->currentText();*/ }; |
@@ -45,3 +44,5 @@ class WellenreiterConfigWindow : public WellenreiterConfigBase | |||
45 | 44 | ||
46 | bool usePrismHeader(); | 45 | int hoppingInterval() const; |
46 | bool usePrismHeader() const; | ||
47 | bool isChannelChecked( int ) const; | ||
47 | 48 | ||
diff --git a/noncore/net/wellenreiter/gui/protolistview.cpp b/noncore/net/wellenreiter/gui/protolistview.cpp index 8b86072..05ff5e7 100644 --- a/noncore/net/wellenreiter/gui/protolistview.cpp +++ b/noncore/net/wellenreiter/gui/protolistview.cpp | |||
@@ -92,2 +92,4 @@ void ProtocolListView::addProtocol( const QString& name ) | |||
92 | combo->insertItem( "LedOff" ); | 92 | combo->insertItem( "LedOff" ); |
93 | combo->insertItem( "LogMessage" ); | ||
94 | combo->insertItem( "MessageBox" ); | ||
93 | } | 95 | } |
@@ -95 +97,15 @@ void ProtocolListView::addProtocol( const QString& name ) | |||
95 | 97 | ||
98 | |||
99 | bool ProtocolListView::isProtocolChecked( const QString& name ) | ||
100 | { | ||
101 | QCheckBox* box = (QCheckBox*) child( (const char*) name ); | ||
102 | return ( box && box->isOn() ); | ||
103 | } | ||
104 | |||
105 | |||
106 | QString ProtocolListView::protocolAction( const QString& name ) const | ||
107 | { | ||
108 | //FIXME | ||
109 | } | ||
110 | |||
111 | |||
diff --git a/noncore/net/wellenreiter/gui/protolistview.h b/noncore/net/wellenreiter/gui/protolistview.h index 42aec7d..723e8cd 100644 --- a/noncore/net/wellenreiter/gui/protolistview.h +++ b/noncore/net/wellenreiter/gui/protolistview.h | |||
@@ -33,2 +33,5 @@ class ProtocolListView : public QScrollView | |||
33 | 33 | ||
34 | bool isProtocolChecked( const QString& name ); | ||
35 | QString protocolAction( const QString& name ) const; | ||
36 | |||
34 | protected: | 37 | protected: |