summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/scandialog.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/scandialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/scandialog.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/noncore/net/opietooth/manager/scandialog.h b/noncore/net/opietooth/manager/scandialog.h
index 8f8d39a..a644e96 100644
--- a/noncore/net/opietooth/manager/scandialog.h
+++ b/noncore/net/opietooth/manager/scandialog.h
@@ -23,9 +23,7 @@
23 23
24#include <remotedevice.h> 24#include <remotedevice.h>
25class QVBoxLayout; 25class QVBoxLayout;
26class QHBoxLayout;
27class QGridLayout; 26class QGridLayout;
28class QFrame;
29class QLabel; 27class QLabel;
30class QListView; 28class QListView;
31class QListViewItem; 29class QListViewItem;
@@ -35,7 +33,6 @@ class QProgressBar;
35 33
36namespace OpieTooth { 34namespace OpieTooth {
37 35
38
39class Manager; 36class Manager;
40class Device; 37class Device;
41 38
@@ -46,11 +43,9 @@ class Device;
46 ScanDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); 43 ScanDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
47 ~ScanDialog(); 44 ~ScanDialog();
48 45
49 private: // make them private -zecke 46 private:
50 QFrame* Frame7; 47 QProgressBar* progress;
51 QProgressBar* progress;
52 QPushButton* StartStopButton; 48 QPushButton* StartStopButton;
53// QPushButton* StopButton;
54 QListView* ListView1; 49 QListView* ListView1;
55 50
56 public slots: 51 public slots:
@@ -63,7 +58,7 @@ class Device;
63 void stopSearch(); 58 void stopSearch();
64 void startSearch(); 59 void startSearch();
65 void progressTimer(); 60 void progressTimer();
66 void fillList(const QString& device, RemoteDevice::ValueList list); 61 void fillList( const QString& device, RemoteDevice::ValueList list );
67 62
68 private: 63 private:
69 bool m_search:1; 64 bool m_search:1;
@@ -72,7 +67,7 @@ class Device;
72 int progressStat; 67 int progressStat;
73 68
74 signals: 69 signals:
75 void selectedDevices(const QValueList<RemoteDevice>&); 70 void selectedDevices( const QValueList<RemoteDevice>& );
76 }; 71 };
77 72
78 73