summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/dialer.h
authorjosef <josef>2002-10-13 15:52:00 (UTC)
committer josef <josef>2002-10-13 15:52:00 (UTC)
commitcb816d85c54242f8958ff77fba334b43be0dcb3d (patch) (unidiff)
tree6764b80acf8789c410cdc59cb308f3f91fcd9083 /noncore/apps/opie-console/dialer.h
parent6a9726437a59cf3b18bf57d6e20fb2dfaaa2fc34 (diff)
downloadopie-cb816d85c54242f8958ff77fba334b43be0dcb3d.zip
opie-cb816d85c54242f8958ff77fba334b43be0dcb3d.tar.gz
opie-cb816d85c54242f8958ff77fba334b43be0dcb3d.tar.bz2
- make dialer accessible transparently when opening a modem session
- implement sending data (currently written to stdout for debug purpose)
Diffstat (limited to 'noncore/apps/opie-console/dialer.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/dialer.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/noncore/apps/opie-console/dialer.h b/noncore/apps/opie-console/dialer.h
index 20fb3c3..8c83bb6 100644
--- a/noncore/apps/opie-console/dialer.h
+++ b/noncore/apps/opie-console/dialer.h
@@ -3,6 +3,8 @@
3 3
4#include <qdialog.h> 4#include <qdialog.h>
5 5
6#include "profile.h"
7
6class QLabel; 8class QLabel;
7class QProgressBar; 9class QProgressBar;
8 10
@@ -10,7 +12,7 @@ class Dialer : public QDialog
10{ 12{
11 Q_OBJECT 13 Q_OBJECT
12 public: 14 public:
13 Dialer(const QString& number, QWidget *parent = NULL, const char *name = NULL); 15 Dialer(const Profile& profile, QWidget *parent = NULL, const char *name = NULL);
14 ~Dialer(); 16 ~Dialer();
15 17
16 public slots: 18 public slots:
@@ -42,7 +44,7 @@ class Dialer : public QDialog
42 QPushButton *cancel; 44 QPushButton *cancel;
43 int state; 45 int state;
44 int usercancel; 46 int usercancel;
45 QString m_number; 47 Profile m_profile;
46}; 48};
47 49
48#endif 50#endif