43e590b4c47feeb6392f8214be934c3d77e4ccce
[irwi] / src / settingsdlg.cpp
1 #include "settingsdlg.h"
2 #include "advsettingsdlg.h"
3 #include "selectremotedlg.h"
4 #include "aboutdlg.h"
5
6 #include <QHBoxLayout>
7 #include <QVBoxLayout>
8 #include <QWidget>
9 #include <QDialog>
10 #include <QPushButton>
11 #include <QLabel>
12 #include <QDebug>
13
14 SettingsDlg::SettingsDlg(QWidget *parent)
15     : QDialog(parent)
16 {
17     QSettings settings(this);
18     m_layout = new QVBoxLayout(this);
19     m_btnLayout = new QHBoxLayout(this);
20     m_remoteNameLayout = new QHBoxLayout(this);
21     
22     m_advSettingsBtn = new QPushButton(tr("Advanced"), this);
23     m_selectRemoteBtn = new QPushButton(tr("Select remote"), this);
24     m_aboutBtn = new QPushButton(tr("About"), this);
25     m_rateUpBtn = new QPushButton(
26             QIcon(settings.value("rateUpIcon",
27                 "/usr/share/icons/hicolor/48x48/hildon/chat_smiley_happy.png").
28                 toString()),
29             "", this);
30     m_rateDownBtn = new QPushButton(
31             QIcon(settings.value("rateDownIcon",
32                 "/usr/share/icons/hicolor/48x48/hildon/chat_smiley_sad.png").
33                 toString()),
34             "", this);
35     m_rateUpBtn->setMaximumSize(72, 72);
36     m_rateDownBtn->setMaximumSize(72, 72);
37
38     m_btnLayout->addWidget(m_advSettingsBtn);
39     m_btnLayout->addWidget(m_selectRemoteBtn);
40     m_btnLayout->addWidget(m_aboutBtn);
41
42     m_remoteNameLabel = new QLabel(this);
43     m_ratingLabel = new QLabel(this);
44     m_remoteNameLayout->addWidget(m_remoteNameLabel);
45     m_remoteNameLayout->addWidget(m_ratingLabel);
46     m_remoteNameLayout->addWidget(m_rateUpBtn);
47     m_remoteNameLayout->addWidget(m_rateDownBtn);
48
49     connect(m_advSettingsBtn, SIGNAL(clicked()),
50             this, SLOT(showAdvSettingsDlg()));
51     connect(m_selectRemoteBtn, SIGNAL(clicked()),
52             this, SLOT(showSelectRemoteDlg()));
53     connect(m_aboutBtn, SIGNAL(clicked()),
54             this, SLOT(showAboutDlg()));
55     connect(m_rateUpBtn, SIGNAL(clicked()),
56             this, SLOT(rateUpClicked()));
57     connect(m_rateDownBtn, SIGNAL(clicked()),
58             this, SLOT(rateDownClicked()));
59  
60     m_layout->addLayout(m_remoteNameLayout);
61     m_layout->addLayout(m_btnLayout);
62     this->setLayout(m_layout);
63
64     QString selectedRemote = QSettings(this).value("remoteName", "").toString();
65     if (selectedRemote == "") {
66         m_remoteNameLabel->setText("No remote selected");
67         enableRateBtns(false);
68     } else {
69         setRemote(selectedRemote);
70         m_remote.updateInfo();
71         setBusy();
72     }
73 }
74
75 SettingsDlg::~SettingsDlg()
76 {
77     delete m_advSettingsBtn;
78     delete m_selectRemoteBtn;
79     delete m_rateUpBtn;
80     delete m_rateDownBtn;
81     delete m_aboutBtn;
82     delete m_remoteNameLabel;
83     delete m_ratingLabel;
84     delete m_btnLayout;
85     delete m_remoteNameLayout;
86     delete m_layout;
87 }
88
89 void SettingsDlg::setBusy(bool busy)
90 {
91     setAttribute(Qt::WA_Maemo5ShowProgressIndicator, busy);
92     setEnabled(!busy);
93 }
94
95 void SettingsDlg::showAdvSettingsDlg()
96 {
97     AdvSettingsDlg dlg(this);
98     dlg.exec();
99 }
100
101 void SettingsDlg::showSelectRemoteDlg()
102 {
103     SelectRemoteDlg dlg(this);
104     connect(&dlg, SIGNAL(remoteChanged(Remote)),
105             this, SLOT(setRemote(Remote)));
106     dlg.exec();
107 }
108
109 void SettingsDlg::showAboutDlg()
110 {
111     AboutDlg dlg(this);
112     dlg.exec();
113 }
114
115 void SettingsDlg::setRemote(Remote r)
116 {
117     m_remote = r;
118     processRemoteChange();
119     updateRemoteInfo();
120 }
121
122 void SettingsDlg::setRemote(const QString &name)
123 {
124     setBusy();
125     m_remote = Remote(name);
126     processRemoteChange();
127     m_remote.updateInfo();  // request update from server
128 }
129
130 void SettingsDlg::processRemoteChange()
131 {
132     connect(&m_remote, SIGNAL(infoUpdated()),
133             this, SLOT(updateRemoteInfo()));
134     enableRateBtns();
135 }
136
137 void SettingsDlg::updateRemoteInfo()
138 {
139     setBusy(false);
140     m_remoteNameLabel->setText(m_remote.mfg() + " " + m_remote.name());
141     m_ratingLabel->setText(tr("Rating") + ": "
142             + QString::number(m_remote.rating()));
143 }
144
145 void SettingsDlg::rateUpClicked()
146 {
147     m_remote.sendRating(Rating::Up);
148     processRatingSent();
149 }
150
151 void SettingsDlg::rateDownClicked()
152 {
153     m_remote.sendRating(Rating::Down);
154     processRatingSent();
155 }
156
157 void SettingsDlg::processRatingSent()
158 {
159     enableRateBtns(false);
160     m_remote.updateInfo();
161 }
162
163 void SettingsDlg::enableRateBtns(bool enable)
164 {
165     m_rateUpBtn->setEnabled(enable);
166     m_rateDownBtn->setEnabled(enable);
167 }
168
169