summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/settingsimpl.h
authordrw <drw>2003-02-04 17:52:14 (UTC)
committer drw <drw>2003-02-04 17:52:14 (UTC)
commit294f0a9b5e5678a6eba1fb77943201fac804049f (patch) (side-by-side diff)
treeb37638264f6bd22bb0894025ea70037294f15c9d /noncore/settings/aqpkg/settingsimpl.h
parent328aeec813c953b260a992afc53a5c9d812e1bcf (diff)
downloadopie-294f0a9b5e5678a6eba1fb77943201fac804049f.zip
opie-294f0a9b5e5678a6eba1fb77943201fac804049f.tar.gz
opie-294f0a9b5e5678a6eba1fb77943201fac804049f.tar.bz2
Updates to configure dialog
Diffstat (limited to 'noncore/settings/aqpkg/settingsimpl.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/aqpkg/settingsimpl.h37
1 files changed, 29 insertions, 8 deletions
diff --git a/noncore/settings/aqpkg/settingsimpl.h b/noncore/settings/aqpkg/settingsimpl.h
index bb027dc..9ffc259 100644
--- a/noncore/settings/aqpkg/settingsimpl.h
+++ b/noncore/settings/aqpkg/settingsimpl.h
@@ -17,8 +17,13 @@
-#include "settings.h"
-
#include "datamgr.h"
-class SettingsImpl : public SettingsBase
+#include <qdialog.h>
+
+class QCheckBox;
+class QLineEdit;
+class QListBox;
+
+class SettingsImpl : public QDialog
{
+ Q_OBJECT
public:
@@ -27,5 +32,20 @@ public:
- bool showDlg( int i );
+ bool showDlg();
private:
+ QListBox *servers;
+ QLineEdit *servername;
+ QLineEdit *serverurl;
+ QCheckBox *active;
+ QListBox *destinations;
+ QLineEdit *destinationname;
+ QLineEdit *destinationurl;
+ QCheckBox *linkToRoot;
+ QLineEdit *txtHttpProxy;
+ QCheckBox *chkHttpProxyEnabled;
+ QLineEdit *txtFtpProxy;
+ QCheckBox *chkFtpProxyEnabled;
+ QLineEdit *txtUsername;
+ QLineEdit *txtPassword;
+
DataManager *dataMgr;
@@ -39,2 +59,6 @@ private:
+ QWidget *initServerTab();
+ QWidget *initDestinationTab();
+ QWidget *initProxyTab();
+
void setupConnections();
@@ -42,2 +66,3 @@ private:
+public slots:
void editServer( int s );
@@ -46,3 +71,2 @@ private:
void removeServer();
-
void editDestination( int s );
@@ -51,5 +75,2 @@ private:
void removeDestination();
-
- void toggleJumpTo( bool val );
-
void proxyApplyChanges();