Added png thumb icons and code to support them
[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 #include <QNetworkConfiguration>
14 #include <QShowEvent>
15
16 SettingsDlg::SettingsDlg(QWidget *parent)
17     : QDialog(parent)
18     , m_busy(true)
19     , m_netConfMan(NULL)
20 {
21     QSettings settings(this);
22     m_layout = new QVBoxLayout(this);
23     m_btnLayout = new QHBoxLayout();
24     m_remoteNameLayout = new QHBoxLayout();
25     
26     m_advSettingsBtn = new QPushButton(tr("Advanced"), this);
27     m_selectRemoteBtn = new QPushButton(tr("Select remote"), this);
28     m_aboutBtn = new QPushButton(tr("About"), this);
29     m_rateUpBtn = new QPushButton(
30             QIcon(settings.value("symbolPath",
31                 "/usr/share/irwi/symbols/").
32                 toString() + "symbol_thumbs_up.png"),
33             "", this);
34     m_rateDownBtn = new QPushButton(
35             QIcon(settings.value("symbolPath",
36                 "/usr/share/irwi/symbols/").
37                 toString() + "symbol_thumbs_down.png"),
38             "", this);
39     m_rateUpBtn->setMaximumSize(72, 72);
40     m_rateDownBtn->setMaximumSize(72, 72);
41
42     m_btnLayout->addWidget(m_advSettingsBtn);
43     m_btnLayout->addWidget(m_selectRemoteBtn);
44     m_btnLayout->addWidget(m_aboutBtn);
45
46     m_remoteNameLabel = new QLabel(this);
47     m_ratingLabel = new QLabel(this);
48     m_remoteNameLayout->addWidget(m_remoteNameLabel);
49     m_remoteNameLayout->addWidget(m_ratingLabel);
50     m_remoteNameLayout->addWidget(m_rateUpBtn);
51     m_remoteNameLayout->addWidget(m_rateDownBtn);
52
53     connect(m_advSettingsBtn, SIGNAL(clicked()),
54             this, SLOT(showAdvSettingsDlg()));
55     connect(m_selectRemoteBtn, SIGNAL(clicked()),
56             this, SLOT(showSelectRemoteDlg()));
57     connect(m_aboutBtn, SIGNAL(clicked()),
58             this, SLOT(showAboutDlg()));
59     connect(m_rateUpBtn, SIGNAL(clicked()),
60             this, SLOT(rateUpClicked()));
61     connect(m_rateDownBtn, SIGNAL(clicked()),
62             this, SLOT(rateDownClicked()));
63  
64     m_layout->addLayout(m_remoteNameLayout);
65     m_layout->addLayout(m_btnLayout);
66     this->setLayout(m_layout);
67
68     QString remoteName = settings.value("remoteName", "").toString();
69     if (remoteName == "") {
70         m_remoteNameLabel->setText(tr("No remote selected"));
71     } else {
72         // Create remote by name and update it's info if online
73         m_remote = Remote(remoteName);
74         connect(&m_remote, SIGNAL(infoUpdated()),
75                 this, SLOT(updateRemoteInfo()));
76         m_remoteNameLabel->setText(settings.value("remoteMfg", "").toString()
77                 + " " + remoteName);
78     }
79     m_netConfMan = new QTM_PREPEND_NAMESPACE(
80             QNetworkConfigurationManager)(this);
81     connect(m_netConfMan, SIGNAL(updateCompleted()),
82             this, SLOT(onNetworkStatusUpdate()));
83     m_netConfMan->updateConfigurations();
84     enableRateBtns(false);
85 }
86
87 SettingsDlg::~SettingsDlg()
88 {
89     delete m_advSettingsBtn;
90     delete m_selectRemoteBtn;
91     delete m_rateUpBtn;
92     delete m_rateDownBtn;
93     delete m_aboutBtn;
94     delete m_remoteNameLabel;
95     delete m_ratingLabel;
96     delete m_btnLayout;
97     delete m_remoteNameLayout;
98     delete m_layout;
99     delete m_netConfMan;
100 }
101
102 void SettingsDlg::setBusy(bool busy)
103 {
104     setAttribute(Qt::WA_Maemo5ShowProgressIndicator, busy);
105     m_busy = busy;
106 }
107
108 void SettingsDlg::showAdvSettingsDlg()
109 {
110     AdvSettingsDlg dlg;
111     dlg.exec();
112     if (QSettings(this).value("remoteName", "").toString() == "") {
113         m_remoteNameLabel->setText(tr("No remote selected"));
114         m_ratingLabel->setText("");
115         enableRateBtns(false);
116     }
117 }
118
119 void SettingsDlg::showSelectRemoteDlg()
120 {
121     SelectRemoteDlg dlg;
122     connect(&dlg, SIGNAL(remoteChanged(Remote)),
123             this, SLOT(setRemote(Remote)));
124     dlg.exec();
125 }
126
127 void SettingsDlg::showAboutDlg()
128 {
129     AboutDlg dlg;
130     dlg.exec();
131 }
132
133 void SettingsDlg::setRemote(Remote r)
134 {
135     m_remote = r;
136     connect(&m_remote, SIGNAL(infoUpdated()),
137             this, SLOT(updateRemoteInfo()));
138     updateRemoteInfo();
139     enableRateBtns();
140 }
141
142 void SettingsDlg::onNetworkStatusUpdate()
143 {
144     if (m_netConfMan->isOnline() &&
145         QSettings(this).value("remoteName", "").toString() != "") {
146         setBusy();
147         m_remote.updateInfo();
148         enableRateBtns();
149     } else if (!m_netConfMan->isOnline()) {
150         m_ratingLabel->setText(tr("Offline"));
151         setBusy(false);
152     } else {
153         setBusy(false);
154     }
155 }
156
157 void SettingsDlg::updateRemoteInfo()
158 {
159     setBusy(false);
160     m_remoteNameLabel->setText(m_remote.mfg() + " " + m_remote.name());
161     m_ratingLabel->setText(tr("Rating") + ": "
162             + QString::number(m_remote.rating()));
163 }
164
165 void SettingsDlg::rateUpClicked()
166 {
167     processRatingSent();
168     m_remote.sendRating(Rating::Up);
169 }
170
171 void SettingsDlg::rateDownClicked()
172 {
173     processRatingSent();
174     m_remote.sendRating(Rating::Down);
175 }
176
177 void SettingsDlg::processRatingSent()
178 {
179     setBusy();
180     enableRateBtns(false);
181 }
182
183 void SettingsDlg::enableRateBtns(bool enable)
184 {
185     m_rateUpBtn->setEnabled(enable);
186     m_rateDownBtn->setEnabled(enable);
187 }
188
189 void SettingsDlg::showEvent(QShowEvent *event)
190 {
191     setBusy(m_busy);
192     QDialog::showEvent(event);
193 }
194
195
196