summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/scandialog.h
authorharlekin <harlekin>2002-06-15 20:41:08 (UTC)
committer harlekin <harlekin>2002-06-15 20:41:08 (UTC)
commite23774336087439cfed07899c8446eab674a3de8 (patch) (unidiff)
tree136957b6dcef1e3b66e2a4a52a0bdb77bb0b09c7 /noncore/net/opietooth/manager/scandialog.h
parente782feb7418fbf956547b9abb59afdde00745442 (diff)
downloadopie-e23774336087439cfed07899c8446eab674a3de8.zip
opie-e23774336087439cfed07899c8446eab674a3de8.tar.gz
opie-e23774336087439cfed07899c8446eab674a3de8.tar.bz2
more
Diffstat (limited to 'noncore/net/opietooth/manager/scandialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/scandialog.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/noncore/net/opietooth/manager/scandialog.h b/noncore/net/opietooth/manager/scandialog.h
index 5cebb11..6d9b877 100644
--- a/noncore/net/opietooth/manager/scandialog.h
+++ b/noncore/net/opietooth/manager/scandialog.h
@@ -31,14 +31,14 @@ class QLabel;
31class QListView; 31class QListView;
32class QListViewItem; 32class QListViewItem;
33class QPushButton; 33class QPushButton;
34 34class QProgressBar;
35class Manager;
36class Device;
37 35
38 36
39namespace OpieTooth { 37namespace OpieTooth {
40 38
41 39
40class Manager;
41class Device;
42 42
43 class ScanDialog : public QDialog { 43 class ScanDialog : public QDialog {
44 Q_OBJECT 44 Q_OBJECT
@@ -48,9 +48,9 @@ namespace OpieTooth {
48 ~ScanDialog(); 48 ~ScanDialog();
49 49
50 QFrame* Frame7; 50 QFrame* Frame7;
51 QLabel* TextLabel10; 51 QProgressBar* progress;
52 QPushButton* StartButton; 52 QPushButton* StartButton;
53 QPushButton* PushButton6; 53 QPushButton* StopButton;
54 QListView* ListView1; 54 QListView* ListView1;
55 55
56 56
@@ -58,12 +58,14 @@ namespace OpieTooth {
58 QGridLayout* Layout11; 58 QGridLayout* Layout11;
59 59
60 private slots: 60 private slots:
61 void stopSearch();
61 void startSearch(); 62 void startSearch();
62 void fillList(const QString& device, RemoteDevices::ValueList list); 63 void fillList(const QString& device, RemoteDevices::ValueList list);
63 64
64 private: 65 private:
65 66 void progressTimer(int maxSeconds);
66 Manager *localDevice; 67 Manager *localDevice;
68 int progressStat;
67 }; 69 };
68 70
69} 71}