forked from SoftProjector/softprojector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settingsdialog.cpp
215 lines (186 loc) · 7.18 KB
/
settingsdialog.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/***************************************************************************
//
// softProjector - an open source media projection software
// Copyright (C) 2017 Vladislav Kobzar
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation version 3 of the License.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
***************************************************************************/
#include <QtSql>
#include "settingsdialog.hpp"
#include "ui_settingsdialog.h"
SettingsDialog::SettingsDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::SettingsDialog)
{
ui->setupUi(this);
generalSettingswidget = new GeneralSettingWidget;
passiveSettingwidget = new PassiveSettingWidget;
bibleSettingswidget = new BibleSettingWidget;
songSettingswidget = new SongSettingWidget;
pictureSettingWidget = new PictureSettingWidget;
announcementSettingswidget = new AnnouncementSettingWidget;
ui->scrollAreaGeneralSettings->setWidget(generalSettingswidget);
ui->scrollAreaPassiveSettings->setWidget(passiveSettingwidget);
ui->scrollAreaBibleSettings->setWidget(bibleSettingswidget);
ui->scrollAreaSongSettings->setWidget(songSettingswidget);
ui->scrollAreaPicture->setWidget(pictureSettingWidget);
ui->scrollAreaAnnouncementSettings->setWidget(announcementSettingswidget);
btnOk = new QPushButton(tr("OK"));
btnCancel = new QPushButton(tr("Cancel"));
btnApply = new QPushButton(tr("Apply"));
ui->buttonBox->addButton(btnOk,QDialogButtonBox::AcceptRole);
ui->buttonBox->addButton(btnCancel,QDialogButtonBox::RejectRole);
ui->buttonBox->addButton(btnApply,QDialogButtonBox::ApplyRole);
// Connect display screen slot
connect(generalSettingswidget,SIGNAL(setDisp2Use(bool)),this,SLOT(setUseDispScreen2(bool)));
connect(generalSettingswidget,SIGNAL(themeChanged(int)),this,SLOT(changeTheme(int)));
// Connect Apply to all
connect(bibleSettingswidget,SIGNAL(applyBackToAll(int,QString,QPixmap)),this,SLOT(applyToAllActive(int,QString,QPixmap)));
connect(songSettingswidget,SIGNAL(applyBackToAll(int,QString,QPixmap)),this,SLOT(applyToAllActive(int,QString,QPixmap)));
connect(announcementSettingswidget,SIGNAL(applyBackToAll(int,QString,QPixmap)),this,SLOT(applyToAllActive(int,QString,QPixmap)));
}
void SettingsDialog::loadSettings(GeneralSettings &sets, Theme &thm, SlideShowSettings &ssets,
BibleVersionSettings &bsets, BibleVersionSettings &bsets2)
{
gsettings = sets;
theme = thm;
bsettings = bsets;
bsettings2 = bsets2;
ssettings = ssets;
// remember main display window setting if they will be changed
is_always_on_top = gsettings.displayIsOnTop;
current_display_screen = gsettings.displayScreen;
currentDisplayScreen2 = gsettings.displayScreen2;
// Set individual items
generalSettingswidget->setSettings(gsettings);
bibleSettingswidget->setBibleVersions(bsettings,bsettings2);
pictureSettingWidget->setSettings(ssettings);
setThemes();
}
SettingsDialog::~SettingsDialog()
{
delete ui;
delete generalSettingswidget;
delete passiveSettingwidget;
delete bibleSettingswidget;
delete songSettingswidget;
delete announcementSettingswidget;
delete btnOk;
delete btnCancel;
delete btnApply;
}
void SettingsDialog::changeEvent(QEvent *e)
{
QDialog::changeEvent(e);
switch ( e->type() ) {
case QEvent::LanguageChange:
ui->retranslateUi(this);
break;
default:
break;
}
}
void SettingsDialog::on_listWidget_currentRowChanged(int currentRow)
{
ui->stackedWidget->setCurrentIndex(currentRow);
}
void SettingsDialog::setUseDispScreen2(bool toUse)
{
passiveSettingwidget->setDispScreen2Visible(toUse);
bibleSettingswidget->setDispScreen2Visible(toUse);
songSettingswidget->setDispScreen2Visible(toUse);
announcementSettingswidget->setDispScreen2Visible(toUse);
}
void SettingsDialog::on_buttonBox_clicked(QAbstractButton *button)
{
if(button == btnOk)
{
applySettings();
close();
}
else if(button == btnCancel)
close();
else if(button == btnApply)
applySettings();
}
void SettingsDialog::applySettings()
{
gsettings = generalSettingswidget->getSettings();
bibleSettingswidget->getBibleVersions(bsettings,bsettings2);
pictureSettingWidget->getSettings(ssettings);
getThemes();
// Apply settings
emit updateSettings(gsettings,theme,ssettings,bsettings,bsettings2);
// Update <display_on_top> only when changed, or when screen location has been changed
if(is_always_on_top!=gsettings.displayIsOnTop
|| current_display_screen!=gsettings.displayScreen
|| currentDisplayScreen2!=gsettings.displayScreen2)
{
emit positionsDisplayWindow();
}
// Redraw the screen:
emit updateScreen();
// Save Settings
theme.saveThemeUpdate();
// reset display holders
is_always_on_top = gsettings.displayIsOnTop;
current_display_screen = gsettings.displayScreen;
currentDisplayScreen2 = gsettings.displayScreen2;
}
void SettingsDialog::getThemes()
{
passiveSettingwidget->getSettings(theme.passive, theme.passive2);
bibleSettingswidget->getSettings(theme.bible, theme.bible2);
songSettingswidget->getSettings(theme.song, theme.song2);
announcementSettingswidget->getSettings(theme.announce, theme.announce2);
}
void SettingsDialog::setThemes()
{
passiveSettingwidget->setSetings(theme.passive, theme.passive2);
bibleSettingswidget->setSettings(theme.bible, theme.bible2);
songSettingswidget->setSettings(theme.song, theme.song2);
announcementSettingswidget->setSettings(theme.announce, theme.announce2);
}
void SettingsDialog::changeTheme(int theme_id)
{
// First save existing changes to the theme
getThemes();
theme.saveThemeUpdate();
// Then load changed theme
theme.setThemeId(theme_id);
theme.loadTheme();
setThemes();
}
void SettingsDialog::applyToAllActive(int t, QString backName, QPixmap background)
{
switch (t)
{
case 1:
songSettingswidget->setBackgroungds(backName,background);
announcementSettingswidget->setBackgroungds(backName,background);
break;
case 2:
bibleSettingswidget->setBackgroungds(backName,background);
announcementSettingswidget->setBackgroungds(backName,background);
break;
case 3:
bibleSettingswidget->setBackgroungds(backName,background);
songSettingswidget->setBackgroungds(backName,background);
break;
default:
bibleSettingswidget->setBackgroungds(backName,background);
songSettingswidget->setBackgroungds(backName,background);
announcementSettingswidget->setBackgroungds(backName,background);
}
}