Website updated.
[irwi] / src / settingsdlg.h
index 8807e02..09cda7a 100644 (file)
@@ -2,9 +2,17 @@
 #define SETTINGSDLG_H
 
 #include <QDialog>
-#include <QString>
+#include <QSettings>
+#include <QNetworkConfigurationManager>
 
+#include "remote.h"
+
+class QWidget;
 class QHBoxLayout;
+class QVBoxLayout;
+class QPushButton;
+class QLabel;
+class Remote;
 
 class SettingsDlg : public QDialog
 {
@@ -12,12 +20,38 @@ class SettingsDlg : public QDialog
 public:
     SettingsDlg(QWidget *parent = 0);
     ~SettingsDlg();
+    void showEvent(class QShowEvent *);
+
+private slots:
+    void showAdvSettingsDlg();
+    void showSelectRemoteDlg();
+    void showAboutDlg();
+    void setRemote(Remote);
+    void updateRemoteInfo();
+    void rateUpClicked();
+    void rateDownClicked();
+    void onNetworkStatusUpdate();
 
-    QString& getRemoteName();
+private:
+    void enableRateBtns(bool enable = true);
+    void processRatingSent();
+    void setBusy(bool busy = true);
 
 private:
-    QHBoxLayout *layout;
-    QString remoteName;
+    bool m_busy;
+    Remote m_remote;
+
+    QVBoxLayout *m_layout;
+    QHBoxLayout *m_btnLayout;
+    QHBoxLayout *m_remoteNameLayout;
+    QPushButton *m_advSettingsBtn;
+    QPushButton *m_selectRemoteBtn;
+    QPushButton *m_rateUpBtn;
+    QPushButton *m_rateDownBtn;
+    QPushButton *m_aboutBtn;
+    QLabel *m_remoteNameLabel;
+    QLabel *m_ratingLabel;
+    QTM_PREPEND_NAMESPACE(QNetworkConfigurationManager) *m_netConfMan;
 };
 
 #endif