summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/settingsimpl.h
Side-by-side diff
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();