author | vitiv <nikita.utiu@gmail.com> |
Thu, 03 Jan 2013 15:58:23 +0200 | |
changeset 8352 | ab7f22530ae0 |
parent 8350 | 14b938faec69 |
child 8356 | b5cf1f29ab14 |
permissions | -rw-r--r-- |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
1 |
/* |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
2 |
* Hedgewars, a free turn based strategy game |
6952 | 3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
4 |
* |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
7 |
* the Free Software Foundation; version 2 of the License |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
8 |
* |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
12 |
* GNU General Public License for more details. |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
13 |
* |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
17 |
*/ |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
18 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
19 |
#include <QGridLayout> |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
20 |
#include <QHBoxLayout> |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
21 |
#include <QPushButton> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
22 |
#include <QGroupBox> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
23 |
#include <QComboBox> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
24 |
#include <QCheckBox> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
25 |
#include <QLabel> |
8346 | 26 |
#include <QTableWidget> |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
27 |
#include <QLineEdit> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
28 |
#include <QSpinBox> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
29 |
#include <QTextBrowser> |
8346 | 30 |
#include <QScrollArea> |
31 |
#include <QHeaderView> |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
32 |
#include <QSlider> |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
33 |
#include <QSignalMapper> |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
34 |
#include <QColorDialog> |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
35 |
#include <QStandardItemModel> |
8346 | 36 |
#include <QDebug> |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
37 |
|
5204 | 38 |
#include "pageoptions.h" |
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
39 |
#include "gameuiconfig.h" |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
40 |
#include "hwconsts.h" |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
41 |
#include "fpsedit.h" |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
42 |
#include "igbox.h" |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
43 |
#include "DataManager.h" |
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
44 |
#include "LibavInteraction.h" |
8284 | 45 |
#include "AutoUpdater.h" |
8346 | 46 |
#include "HWApplication.h" |
47 |
#include "keybinder.h" |
|
8284 | 48 |
|
49 |
#ifdef __APPLE__ |
|
50 |
#ifdef SPARKLE_ENABLED |
|
51 |
#include "SparkleAutoUpdater.h" |
|
52 |
#endif |
|
53 |
#endif |
|
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
54 |
|
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
55 |
// TODO cleanup |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
56 |
QLayout * PageOptions::bodyLayoutDefinition() |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
57 |
{ |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
58 |
QVBoxLayout * pageLayout = new QVBoxLayout(); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
59 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
60 |
QTabWidget * tabs = new QTabWidget(this); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
61 |
pageLayout->addWidget(tabs); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
62 |
QWidget * page1 = new QWidget(this); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
63 |
QWidget * page2 = new QWidget(this); |
8346 | 64 |
binder = new KeyBinder(this, tr("Select an action to change what key controls it"), tr("Reset to default"), tr("Reset all binds")); |
65 |
connect(binder, SIGNAL(bindUpdate(int)), this, SLOT(bindUpdated(int))); |
|
66 |
connect(binder, SIGNAL(resetAllBinds()), this, SLOT(resetAllBinds())); |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
67 |
tabs->addTab(page1, tr("General")); |
8346 | 68 |
binderTab = tabs->addTab(binder, tr("Controls")); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
69 |
tabs->addTab(page2, tr("Advanced")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
70 |
|
8346 | 71 |
connect(tabs, SIGNAL(currentChanged(int)), this, SLOT(tabIndexChanged(int))); |
72 |
||
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
73 |
#ifdef VIDEOREC |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
74 |
QWidget * page3 = new QWidget(this); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
75 |
tabs->addTab(page3, tr("Video Recording")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
76 |
#endif |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
77 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
78 |
{ // page 1 |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
79 |
QGridLayout * page1Layout = new QGridLayout(page1); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
80 |
//gbTBLayout->setMargin(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
81 |
page1Layout->setSpacing(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
82 |
page1Layout->setAlignment(Qt::AlignTop | Qt::AlignLeft); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
83 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
84 |
QPixmap pmNew(":/res/new.png"); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
85 |
QPixmap pmEdit(":/res/edit.png"); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
86 |
QPixmap pmDelete(":/res/delete.png"); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
87 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
88 |
{ |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
89 |
teamsBox = new IconedGroupBox(this); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
90 |
//teamsBox->setContentTopPadding(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
91 |
//teamsBox->setAttribute(Qt::WA_PaintOnScreen, true); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
92 |
teamsBox->setIcon(QIcon(":/res/teamicon.png")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
93 |
teamsBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
94 |
teamsBox->setTitle(QGroupBox::tr("Teams")); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
95 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
96 |
QGridLayout * GBTlayout = new QGridLayout(teamsBox); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
97 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
98 |
CBTeamName = new QComboBox(teamsBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
99 |
GBTlayout->addWidget(CBTeamName, 0, 0); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
100 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
101 |
BtnNewTeam = new QPushButton(teamsBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
102 |
BtnNewTeam->setToolTip(tr("New team")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
103 |
BtnNewTeam->setIconSize(pmNew.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
104 |
BtnNewTeam->setIcon(pmNew); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
105 |
BtnNewTeam->setMaximumWidth(pmNew.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
106 |
connect(BtnNewTeam, SIGNAL(clicked()), this, SIGNAL(newTeamRequested())); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
107 |
GBTlayout->addWidget(BtnNewTeam, 0, 1); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
108 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
109 |
BtnEditTeam = new QPushButton(teamsBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
110 |
BtnEditTeam->setToolTip(tr("Edit team")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
111 |
BtnEditTeam->setIconSize(pmEdit.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
112 |
BtnEditTeam->setIcon(pmEdit); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
113 |
BtnEditTeam->setMaximumWidth(pmEdit.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
114 |
connect(BtnEditTeam, SIGNAL(clicked()), this, SLOT(requestEditSelectedTeam())); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
115 |
GBTlayout->addWidget(BtnEditTeam, 0, 2); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
116 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
117 |
BtnDeleteTeam = new QPushButton(teamsBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
118 |
BtnDeleteTeam->setToolTip(tr("Delete team")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
119 |
BtnDeleteTeam->setIconSize(pmDelete.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
120 |
BtnDeleteTeam->setIcon(pmDelete); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
121 |
BtnDeleteTeam->setMaximumWidth(pmDelete.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
122 |
connect(BtnDeleteTeam, SIGNAL(clicked()), this, SLOT(requestDeleteSelectedTeam())); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
123 |
GBTlayout->addWidget(BtnDeleteTeam, 0, 3); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
124 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
125 |
LblNoEditTeam = new QLabel(teamsBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
126 |
LblNoEditTeam->setText(tr("You can't edit teams from team selection. Go back to main menu to add, edit or delete teams.")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
127 |
LblNoEditTeam->setWordWrap(true); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
128 |
LblNoEditTeam->setVisible(false); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
129 |
GBTlayout->addWidget(LblNoEditTeam, 0, 0); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
130 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
131 |
page1Layout->addWidget(teamsBox, 0, 0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
132 |
} |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
133 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
134 |
{ |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
135 |
IconedGroupBox* groupWeapons = new IconedGroupBox(this); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
136 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
137 |
//groupWeapons->setContentTopPadding(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
138 |
//groupWeapons->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
139 |
groupWeapons->setIcon(QIcon(":/res/weaponsicon.png")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
140 |
groupWeapons->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
141 |
groupWeapons->setTitle(QGroupBox::tr("Schemes and Weapons")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
142 |
QGridLayout * WeaponsLayout = new QGridLayout(groupWeapons); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
143 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
144 |
QLabel* SchemeLabel = new QLabel(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
145 |
SchemeLabel->setText(QLabel::tr("Game scheme")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
146 |
WeaponsLayout->addWidget(SchemeLabel, 1, 0); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
147 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
148 |
SchemesName = new QComboBox(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
149 |
WeaponsLayout->addWidget(SchemesName, 1, 1); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
150 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
151 |
SchemeNew = new QPushButton(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
152 |
SchemeNew->setWhatsThis(tr("New scheme")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
153 |
SchemeNew->setIconSize(pmNew.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
154 |
SchemeNew->setIcon(pmNew); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
155 |
SchemeNew->setMaximumWidth(pmNew.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
156 |
WeaponsLayout->addWidget(SchemeNew, 1, 2); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
157 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
158 |
SchemeEdit = new QPushButton(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
159 |
SchemeEdit->setWhatsThis(tr("Edit scheme")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
160 |
SchemeEdit->setIconSize(pmEdit.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
161 |
SchemeEdit->setIcon(pmEdit); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
162 |
SchemeEdit->setMaximumWidth(pmEdit.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
163 |
WeaponsLayout->addWidget(SchemeEdit, 1, 3); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
164 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
165 |
SchemeDelete = new QPushButton(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
166 |
SchemeDelete->setWhatsThis(tr("Delete scheme")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
167 |
SchemeDelete->setIconSize(pmDelete.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
168 |
SchemeDelete->setIcon(pmDelete); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
169 |
SchemeDelete->setMaximumWidth(pmDelete.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
170 |
WeaponsLayout->addWidget(SchemeDelete, 1, 4); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
171 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
172 |
QLabel* WeaponLabel = new QLabel(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
173 |
WeaponLabel->setText(QLabel::tr("Weapons")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
174 |
WeaponsLayout->addWidget(WeaponLabel, 2, 0); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
175 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
176 |
WeaponsName = new QComboBox(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
177 |
WeaponsLayout->addWidget(WeaponsName, 2, 1); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
178 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
179 |
WeaponNew = new QPushButton(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
180 |
WeaponNew->setWhatsThis(tr("New weapon set")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
181 |
WeaponNew->setIconSize(pmNew.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
182 |
WeaponNew->setIcon(pmNew); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
183 |
WeaponNew->setMaximumWidth(pmNew.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
184 |
WeaponsLayout->addWidget(WeaponNew, 2, 2); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
185 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
186 |
WeaponEdit = new QPushButton(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
187 |
WeaponEdit->setWhatsThis(tr("Edit weapon set")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
188 |
WeaponEdit->setIconSize(pmEdit.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
189 |
WeaponEdit->setIcon(pmEdit); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
190 |
WeaponEdit->setMaximumWidth(pmEdit.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
191 |
WeaponsLayout->addWidget(WeaponEdit, 2, 3); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
192 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
193 |
WeaponDelete = new QPushButton(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
194 |
WeaponDelete->setWhatsThis(tr("Delete weapon set")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
195 |
WeaponDelete->setIconSize(pmDelete.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
196 |
WeaponDelete->setIcon(pmDelete); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
197 |
WeaponDelete->setMaximumWidth(pmDelete.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
198 |
WeaponsLayout->addWidget(WeaponDelete, 2, 4); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
199 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
200 |
page1Layout->addWidget(groupWeapons, 1, 0); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
201 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
202 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
203 |
{ |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
204 |
IconedGroupBox* groupMisc = new IconedGroupBox(this); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
205 |
//groupMisc->setContentTopPadding(0); |
7678 | 206 |
//groupMisc->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::MinimumExpanding); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
207 |
groupMisc->setIcon(QIcon(":/res/miscicon.png")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
208 |
//groupMisc->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
209 |
groupMisc->setTitle(QGroupBox::tr("Misc")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
210 |
QGridLayout * MiscLayout = new QGridLayout(groupMisc); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
211 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
212 |
// Label for "Language" |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
213 |
QLabel *labelLanguage = new QLabel(groupMisc); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
214 |
labelLanguage->setText(QLabel::tr("Locale") + " *"); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
215 |
MiscLayout->addWidget(labelLanguage, 0, 0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
216 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
217 |
// List of installed languages |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
218 |
CBLanguage = new QComboBox(groupMisc); |
8098 | 219 |
QStringList locs = DataManager::instance().entryList("Locale", QDir::Files, QStringList("hedgewars_*.qm")); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
220 |
CBLanguage->addItem(QComboBox::tr("(System default)"), QString("")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
221 |
for(int i = 0; i < locs.count(); i++) |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
222 |
{ |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
223 |
QLocale loc(locs[i].replace(QRegExp("hedgewars_(.*)\\.qm"), "\\1")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
224 |
CBLanguage->addItem(QLocale::languageToString(loc.language()) + " (" + QLocale::countryToString(loc.country()) + ")", loc.name()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
225 |
} |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
226 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
227 |
MiscLayout->addWidget(CBLanguage, 0, 1); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
228 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
229 |
// Label and field for net nick |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
230 |
labelNN = new QLabel(groupMisc); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
231 |
labelNN->setText(QLabel::tr("Nickname")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
232 |
MiscLayout->addWidget(labelNN, 1, 0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
233 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
234 |
editNetNick = new QLineEdit(groupMisc); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
235 |
editNetNick->setMaxLength(20); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
236 |
editNetNick->setText(QLineEdit::tr("anonymous")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
237 |
MiscLayout->addWidget(editNetNick, 1, 1); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
238 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
239 |
// checkbox and field for password |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
240 |
CBSavePassword = new QCheckBox(groupMisc); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
241 |
CBSavePassword->setText(QCheckBox::tr("Save password")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
242 |
MiscLayout->addWidget(CBSavePassword, 2, 0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
243 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
244 |
editNetPassword = new QLineEdit(groupMisc); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
245 |
editNetPassword->setEchoMode(QLineEdit::Password); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
246 |
MiscLayout->addWidget(editNetPassword, 2, 1); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
247 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
248 |
#ifdef __APPLE__ |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
249 |
#ifdef SPARKLE_ENABLED |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
250 |
CBAutoUpdate = new QCheckBox(groupMisc); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
251 |
CBAutoUpdate->setText(QCheckBox::tr("Check for updates at startup")); |
8284 | 252 |
MiscLayout->addWidget(CBAutoUpdate, 7, 0, 1, 1); |
253 |
||
254 |
btnUpdateNow = new QPushButton(groupMisc); |
|
255 |
connect(btnUpdateNow, SIGNAL(clicked()), this, SLOT(checkForUpdates())); |
|
256 |
btnUpdateNow->setToolTip(tr("Check for updates")); |
|
257 |
btnUpdateNow->setText("Check now"); |
|
258 |
btnUpdateNow->setFixedSize(130, 30); |
|
259 |
MiscLayout->addWidget(btnUpdateNow, 7, 1, 1, 1); |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
260 |
#endif |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
261 |
#endif |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
262 |
page1Layout->addWidget(groupMisc, 2, 0); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
263 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
264 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
265 |
{ |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
266 |
AGGroupBox = new IconedGroupBox(this); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
267 |
//AGGroupBox->setContentTopPadding(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
268 |
AGGroupBox->setIcon(QIcon(":/res/graphicsicon.png")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
269 |
//AGGroupBox->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
270 |
AGGroupBox->setTitle(QGroupBox::tr("Audio/Graphic options")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
271 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
272 |
QVBoxLayout * GBAlayout = new QVBoxLayout(AGGroupBox); |
8229
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
273 |
QGridLayout * GBAfrontendlayout = new QGridLayout(0); |
8343
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
274 |
QGridLayout * GBAreslayout = new QGridLayout(0); |
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
275 |
QHBoxLayout * GBAfullreslayout = new QHBoxLayout(0); |
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
276 |
QHBoxLayout * GBAwindowedreslayout = new QHBoxLayout(0); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
277 |
QHBoxLayout * GBAstereolayout = new QHBoxLayout(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
278 |
QHBoxLayout * GBAqualayout = new QHBoxLayout(0); |
6911
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
279 |
|
8229
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
280 |
QLabel * frontend = new QLabel(AGGroupBox); |
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
281 |
frontend->setText(QLabel::tr("Frontend")); |
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
282 |
frontend->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); |
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
283 |
GBAfrontendlayout->addWidget(frontend, 0, 0, 1, 2); |
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
284 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
285 |
CBFrontendFullscreen = new QCheckBox(AGGroupBox); |
8229
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
286 |
CBFrontendFullscreen->setText(QCheckBox::tr("Fullscreen")); |
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
287 |
GBAfrontendlayout->addWidget(CBFrontendFullscreen, 1, 0); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
288 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
289 |
CBFrontendEffects = new QCheckBox(AGGroupBox); |
8229
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
290 |
CBFrontendEffects->setText(QCheckBox::tr("Visual effects")); |
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
291 |
GBAfrontendlayout->addWidget(CBFrontendEffects, 2, 0); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
292 |
|
8226
67f07ff5b593
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
293 |
CBFrontendSound = new QCheckBox(AGGroupBox); |
8229
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
294 |
CBFrontendSound->setText(QCheckBox::tr("Sound")); |
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
295 |
GBAfrontendlayout->addWidget(CBFrontendSound, 1, 1); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
296 |
|
8226
67f07ff5b593
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
297 |
CBFrontendMusic = new QCheckBox(AGGroupBox); |
8229
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
298 |
CBFrontendMusic->setText(QCheckBox::tr("Music")); |
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
299 |
GBAfrontendlayout->addWidget(CBFrontendMusic, 2, 1); |
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
300 |
|
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
301 |
GBAlayout->addLayout(GBAfrontendlayout); |
6911
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
302 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
303 |
QFrame * hr = new QFrame(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
304 |
hr->setFrameStyle(QFrame::HLine); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
305 |
hr->setLineWidth(3); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
306 |
hr->setFixedHeight(10); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
307 |
GBAlayout->addWidget(hr); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
308 |
|
8352
ab7f22530ae0
Changed resolution labels on options page.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
309 |
QLabel * resolutionLabel = new QLabel(AGGroupBox); |
ab7f22530ae0
Changed resolution labels on options page.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
310 |
resolutionLabel->setText(QLabel::tr("Resolution")); |
ab7f22530ae0
Changed resolution labels on options page.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
311 |
GBAreslayout->addWidget(resolutionLabel, 0, 0); |
ab7f22530ae0
Changed resolution labels on options page.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
312 |
|
ab7f22530ae0
Changed resolution labels on options page.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
313 |
QLabel * fullscreenResolution = new QLabel(AGGroupBox); |
ab7f22530ae0
Changed resolution labels on options page.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
314 |
fullscreenResolution->setText(QLabel::tr("Fullscreen")); |
ab7f22530ae0
Changed resolution labels on options page.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
315 |
GBAreslayout->addWidget(fullscreenResolution, 1, 0); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
316 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
317 |
CBResolution = new QComboBox(AGGroupBox); |
8343
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
318 |
GBAfullreslayout->addWidget(CBResolution); |
6911
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
319 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
320 |
CBFullscreen = new QCheckBox(AGGroupBox); |
8343
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
321 |
GBAfullreslayout->addWidget(CBFullscreen); |
8352
ab7f22530ae0
Changed resolution labels on options page.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
322 |
CBFullscreen->setText(QLabel::tr("Fullscreen")); |
ab7f22530ae0
Changed resolution labels on options page.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
323 |
GBAreslayout->addLayout(GBAfullreslayout, 1, 1); |
8343
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
324 |
|
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
325 |
QLabel * windowedResolution = new QLabel(AGGroupBox); |
8352
ab7f22530ae0
Changed resolution labels on options page.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
326 |
windowedResolution->setText(QLabel::tr("Windowed")); |
ab7f22530ae0
Changed resolution labels on options page.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
327 |
GBAreslayout->addWidget(windowedResolution, 2, 0); |
8343
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
328 |
|
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
329 |
// decorational X |
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
330 |
QLabel *winLabelX = new QLabel(AGGroupBox); |
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
331 |
winLabelX->setText("X"); |
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
332 |
|
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
333 |
windowWidthEdit = new QLineEdit(AGGroupBox); |
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
334 |
windowWidthEdit->setValidator(new QIntValidator(this)); |
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
335 |
windowHeightEdit = new QLineEdit(AGGroupBox); |
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
336 |
windowHeightEdit->setValidator(new QIntValidator(this)); |
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
337 |
|
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
338 |
GBAwindowedreslayout->addWidget(windowWidthEdit); |
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
339 |
GBAwindowedreslayout->addWidget(winLabelX); |
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
340 |
GBAwindowedreslayout->addWidget(windowHeightEdit); |
8352
ab7f22530ae0
Changed resolution labels on options page.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
341 |
GBAreslayout->addLayout(GBAwindowedreslayout, 2, 1); |
8343
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
342 |
|
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
343 |
GBAlayout->addLayout(GBAreslayout); |
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
344 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
345 |
QLabel * quality = new QLabel(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
346 |
quality->setText(QLabel::tr("Quality")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
347 |
quality->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
348 |
GBAqualayout->addWidget(quality); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
349 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
350 |
SLQuality = new QSlider(Qt::Horizontal, AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
351 |
SLQuality->setTickPosition(QSlider::TicksBelow); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
352 |
SLQuality->setMaximum(5); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
353 |
SLQuality->setMinimum(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
354 |
SLQuality->setFixedWidth(150); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
355 |
GBAqualayout->addWidget(SLQuality); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
356 |
GBAlayout->addLayout(GBAqualayout); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
357 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
358 |
QLabel * stereo = new QLabel(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
359 |
stereo->setText(QLabel::tr("Stereo rendering")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
360 |
GBAstereolayout->addWidget(stereo); |
6911
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
361 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
362 |
CBStereoMode = new QComboBox(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
363 |
CBStereoMode->addItem(QComboBox::tr("Disabled")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
364 |
CBStereoMode->addItem(QComboBox::tr("Red/Cyan")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
365 |
CBStereoMode->addItem(QComboBox::tr("Cyan/Red")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
366 |
CBStereoMode->addItem(QComboBox::tr("Red/Blue")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
367 |
CBStereoMode->addItem(QComboBox::tr("Blue/Red")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
368 |
CBStereoMode->addItem(QComboBox::tr("Red/Green")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
369 |
CBStereoMode->addItem(QComboBox::tr("Green/Red")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
370 |
CBStereoMode->addItem(QComboBox::tr("Side-by-side")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
371 |
CBStereoMode->addItem(QComboBox::tr("Top-Bottom")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
372 |
CBStereoMode->addItem(QComboBox::tr("Wiggle")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
373 |
CBStereoMode->addItem(QComboBox::tr("Red/Cyan grayscale")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
374 |
CBStereoMode->addItem(QComboBox::tr("Cyan/Red grayscale")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
375 |
CBStereoMode->addItem(QComboBox::tr("Red/Blue grayscale")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
376 |
CBStereoMode->addItem(QComboBox::tr("Blue/Red grayscale")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
377 |
CBStereoMode->addItem(QComboBox::tr("Red/Green grayscale")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
378 |
CBStereoMode->addItem(QComboBox::tr("Green/Red grayscale")); |
6911
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
379 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
380 |
GBAstereolayout->addWidget(CBStereoMode); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
381 |
GBAlayout->addLayout(GBAstereolayout); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
382 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
383 |
hr = new QFrame(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
384 |
hr->setFrameStyle(QFrame::HLine); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
385 |
hr->setLineWidth(3); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
386 |
hr->setFixedHeight(10); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
387 |
GBAlayout->addWidget(hr); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
388 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
389 |
QGridLayout * GBAvollayout = new QGridLayout(); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
390 |
QLabel * vol = new QLabel(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
391 |
vol->setText(QLabel::tr("Initial sound volume")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
392 |
GBAvollayout->addWidget(vol, 0, 0, 1, 2); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
393 |
GBAlayout->addLayout(GBAvollayout); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
394 |
volumeBox = new QSpinBox(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
395 |
volumeBox->setRange(0, 100); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
396 |
volumeBox->setSingleStep(5); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
397 |
GBAvollayout->addWidget(volumeBox, 0, 2); |
5252 | 398 |
|
8226
67f07ff5b593
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
399 |
CBSound = new QCheckBox(AGGroupBox); |
67f07ff5b593
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
400 |
CBSound->setText(QCheckBox::tr("Sound")); |
8229
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
401 |
CBSound->setWhatsThis(QCheckBox::tr("In-game sound effects")); |
8226
67f07ff5b593
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
402 |
GBAvollayout->addWidget(CBSound, 1, 0); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
403 |
|
8226
67f07ff5b593
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
404 |
CBMusic = new QCheckBox(AGGroupBox); |
67f07ff5b593
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
405 |
CBMusic->setText(QCheckBox::tr("Music")); |
8229
251f38da9935
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8226
diff
changeset
|
406 |
CBMusic->setWhatsThis(QCheckBox::tr("In-game music")); |
8226
67f07ff5b593
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
407 |
GBAvollayout->addWidget(CBMusic, 1, 1, 1, 2); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
408 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
409 |
GBAvollayout->setSizeConstraint(QLayout::SetMinimumSize); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
410 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
411 |
hr = new QFrame(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
412 |
hr->setFrameStyle(QFrame::HLine); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
413 |
hr->setLineWidth(3); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
414 |
hr->setFixedHeight(10); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
415 |
GBAlayout->addWidget(hr); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
416 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
417 |
CBAltDamage = new QCheckBox(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
418 |
CBAltDamage->setText(QCheckBox::tr("Alternative damage show")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
419 |
GBAlayout->addWidget(CBAltDamage); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
420 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
421 |
page1Layout->addWidget(AGGroupBox, 0, 1, 3, 1); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
422 |
} |
7678 | 423 |
|
424 |
page1Layout->addWidget(new QWidget(this), 3, 0); |
|
425 |
||
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
426 |
} |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
427 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
428 |
{ // page 2 |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
429 |
QGridLayout * page2Layout = new QGridLayout(page2); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
430 |
|
7630
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
431 |
{ |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
432 |
IconedGroupBox * gbColors = new IconedGroupBox(this); |
7678 | 433 |
gbColors->setIcon(QIcon(":/res/lightbulb_on.png")); |
7630
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
434 |
gbColors->setTitle(QGroupBox::tr("Custom colors")); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
435 |
page2Layout->addWidget(gbColors, 0, 0); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
436 |
QGridLayout * gbCLayout = new QGridLayout(gbColors); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
437 |
|
7630
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
438 |
QSignalMapper * mapper = new QSignalMapper(this); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
439 |
|
7630
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
440 |
QStandardItemModel * model = DataManager::instance().colorsModel(); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
441 |
|
7630
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
442 |
connect(model, SIGNAL(dataChanged(QModelIndex,QModelIndex)), this, SLOT(onColorModelDataChanged(QModelIndex,QModelIndex))); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
443 |
for(int i = 0; i < model->rowCount(); ++i) |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
444 |
{ |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
445 |
QPushButton * btn = new QPushButton(this); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
446 |
btn->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
447 |
gbCLayout->addWidget(btn, i / 3, i % 3); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
448 |
btn->setStyleSheet(QString("background: %1").arg(model->item(i)->data().value<QColor>().name())); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
449 |
m_colorButtons.append(btn); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
450 |
connect(btn, SIGNAL(clicked()), mapper, SLOT(map())); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
451 |
mapper->setMapping(btn, i); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
452 |
} |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
453 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
454 |
connect(mapper, SIGNAL(mapped(int)), this, SLOT(colorButtonClicked(int))); |
7680 | 455 |
|
456 |
QPushButton * btn = new QPushButton(this); |
|
457 |
gbCLayout->addWidget(btn, (model->rowCount() - 1) / 3 + 1, 0, 1, 3); |
|
458 |
btn->setText(tr("Reset to default colors")); |
|
7681 | 459 |
connect(btn, SIGNAL(clicked()), &DataManager::instance(), SLOT(resetColors())); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
460 |
} |
7153
f0d055645ab2
minor tweaks for options page; should improve readability at small window size... a bit...
sheepluva
parents:
6952
diff
changeset
|
461 |
|
7630
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
462 |
{ |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
463 |
IconedGroupBox * gbMisc = new IconedGroupBox(this); |
7678 | 464 |
gbMisc->setIcon(QIcon(":/res/Settings.png")); |
7630
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
465 |
gbMisc->setTitle(QGroupBox::tr("Miscellaneous")); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
466 |
page2Layout->addWidget(gbMisc, 0, 1); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
467 |
QVBoxLayout * gbCLayout = new QVBoxLayout(gbMisc); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
468 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
469 |
QHBoxLayout * GBAfpslayout = new QHBoxLayout(0); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
470 |
QLabel * maxfps = new QLabel(AGGroupBox); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
471 |
maxfps->setText(QLabel::tr("FPS limit")); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
472 |
GBAfpslayout->addWidget(maxfps); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
473 |
fpsedit = new FPSEdit(AGGroupBox); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
474 |
GBAfpslayout->addWidget(fpsedit); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
475 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
476 |
CBShowFPS = new QCheckBox(AGGroupBox); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
477 |
CBShowFPS->setText(QCheckBox::tr("Show FPS")); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
478 |
GBAfpslayout->addWidget(CBShowFPS); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
479 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
480 |
gbCLayout->addLayout(GBAfpslayout); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
481 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
482 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
483 |
WeaponTooltip = new QCheckBox(this); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
484 |
WeaponTooltip->setText(QCheckBox::tr("Show ammo menu tooltips")); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
485 |
gbCLayout->addWidget(WeaponTooltip); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
486 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
487 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
488 |
CBNameWithDate = new QCheckBox(this); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
489 |
CBNameWithDate->setText(QCheckBox::tr("Append date and time to record file name")); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
490 |
gbCLayout->addWidget(CBNameWithDate); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
491 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
492 |
BtnAssociateFiles = new QPushButton(this); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
493 |
BtnAssociateFiles->setText(QPushButton::tr("Associate file extensions")); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
494 |
BtnAssociateFiles->setVisible(!custom_data && !custom_config); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
495 |
gbCLayout->addWidget(BtnAssociateFiles); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
496 |
} |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
497 |
|
7700 | 498 |
{ |
499 |
IconedGroupBox * gbProxy = new IconedGroupBox(this); |
|
500 |
gbProxy->setIcon(QIcon(":/res/Settings.png")); |
|
501 |
gbProxy->setTitle(QGroupBox::tr("Proxy settings")); |
|
502 |
page2Layout->addWidget(gbProxy, 1, 0); |
|
503 |
QGridLayout * gbLayout = new QGridLayout(gbProxy); |
|
504 |
||
505 |
QStringList sl; |
|
506 |
sl |
|
507 |
<< tr("Proxy host") |
|
508 |
<< tr("Proxy port") |
|
509 |
<< tr("Proxy login") |
|
510 |
<< tr("Proxy password") |
|
511 |
; |
|
512 |
for(int i = 0; i < sl.size(); ++i) |
|
513 |
{ |
|
514 |
QLabel * l = new QLabel(gbProxy); |
|
515 |
l->setText(sl[i]); |
|
516 |
gbLayout->addWidget(l, i + 1, 0); |
|
517 |
} |
|
518 |
||
519 |
cbProxyType = new QComboBox(gbProxy); |
|
520 |
cbProxyType->addItems(QStringList() |
|
521 |
<< tr("No proxy") |
|
7702 | 522 |
<< tr("System proxy settings") |
7700 | 523 |
<< tr("Socks5 proxy") |
524 |
<< tr("HTTP proxy")); |
|
525 |
gbLayout->addWidget(cbProxyType, 0, 1); |
|
526 |
||
527 |
leProxy = new QLineEdit(gbProxy); |
|
528 |
gbLayout->addWidget(leProxy, 1, 1); |
|
529 |
||
530 |
sbProxyPort = new QSpinBox(gbProxy); |
|
531 |
sbProxyPort->setMaximum(65535); |
|
532 |
gbLayout->addWidget(sbProxyPort, 2, 1); |
|
533 |
||
534 |
leProxyLogin = new QLineEdit(gbProxy); |
|
535 |
gbLayout->addWidget(leProxyLogin, 3, 1); |
|
536 |
||
537 |
leProxyPassword = new QLineEdit(gbProxy); |
|
538 |
leProxyPassword->setEchoMode(QLineEdit::Password); |
|
539 |
gbLayout->addWidget(leProxyPassword, 4, 1); |
|
540 |
||
541 |
||
542 |
connect(cbProxyType, SIGNAL(currentIndexChanged(int)), this, SLOT(onProxyTypeChanged())); |
|
7701 | 543 |
onProxyTypeChanged(); |
7700 | 544 |
} |
545 |
||
546 |
page2Layout->addWidget(new QWidget(this), 2, 0); |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
547 |
} |
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
548 |
#ifdef VIDEOREC |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
549 |
{ // page 3 |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
550 |
QGridLayout * page3Layout = new QGridLayout(page3); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
551 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
552 |
IconedGroupBox* pOptionsGroup = new IconedGroupBox(this); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
553 |
pOptionsGroup->setIcon(QIcon(":/res/Settings.png")); // FIXME |
8192
81da6576b0c3
Make video recording options have fixed size and merge with spinbox->combobox change.
Mitchell Kember <mk12360@gmail.com>
parents:
8151
diff
changeset
|
554 |
pOptionsGroup->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); |
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
555 |
pOptionsGroup->setTitle(QGroupBox::tr("Video recording options")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
556 |
QGridLayout * pOptLayout = new QGridLayout(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
557 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
558 |
// label for format |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
559 |
QLabel *labelFormat = new QLabel(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
560 |
labelFormat->setText(QLabel::tr("Format")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
561 |
pOptLayout->addWidget(labelFormat, 0, 0); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
562 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
563 |
// list of supported formats |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
564 |
comboAVFormats = new QComboBox(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
565 |
pOptLayout->addWidget(comboAVFormats, 0, 1, 1, 4); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
566 |
LibavInteraction::instance().fillFormats(comboAVFormats); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
567 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
568 |
// separator |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
569 |
QFrame * hr = new QFrame(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
570 |
hr->setFrameStyle(QFrame::HLine); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
571 |
hr->setLineWidth(3); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
572 |
hr->setFixedHeight(10); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
573 |
pOptLayout->addWidget(hr, 1, 0, 1, 5); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
574 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
575 |
// label for audio codec |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
576 |
QLabel *labelACodec = new QLabel(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
577 |
labelACodec->setText(QLabel::tr("Audio codec")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
578 |
pOptLayout->addWidget(labelACodec, 2, 0); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
579 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
580 |
// list of supported audio codecs |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
581 |
comboAudioCodecs = new QComboBox(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
582 |
pOptLayout->addWidget(comboAudioCodecs, 2, 1, 1, 3); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
583 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
584 |
// checkbox 'record audio' |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
585 |
checkRecordAudio = new QCheckBox(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
586 |
checkRecordAudio->setText(QCheckBox::tr("Record audio")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
587 |
pOptLayout->addWidget(checkRecordAudio, 2, 4); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
588 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
589 |
// separator |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
590 |
hr = new QFrame(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
591 |
hr->setFrameStyle(QFrame::HLine); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
592 |
hr->setLineWidth(3); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
593 |
hr->setFixedHeight(10); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
594 |
pOptLayout->addWidget(hr, 3, 0, 1, 5); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
595 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
596 |
// label for video codec |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
597 |
QLabel *labelVCodec = new QLabel(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
598 |
labelVCodec->setText(QLabel::tr("Video codec")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
599 |
pOptLayout->addWidget(labelVCodec, 4, 0); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
600 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
601 |
// list of supported video codecs |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
602 |
comboVideoCodecs = new QComboBox(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
603 |
pOptLayout->addWidget(comboVideoCodecs, 4, 1, 1, 4); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
604 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
605 |
// label for resolution |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
606 |
QLabel *labelRes = new QLabel(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
607 |
labelRes->setText(QLabel::tr("Resolution")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
608 |
pOptLayout->addWidget(labelRes, 5, 0); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
609 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
610 |
// width |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
611 |
widthEdit = new QLineEdit(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
612 |
widthEdit->setValidator(new QIntValidator(this)); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
613 |
pOptLayout->addWidget(widthEdit, 5, 1); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
614 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
615 |
// x |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
616 |
QLabel *labelX = new QLabel(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
617 |
labelX->setText("X"); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
618 |
pOptLayout->addWidget(labelX, 5, 2); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
619 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
620 |
// height |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
621 |
heightEdit = new QLineEdit(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
622 |
heightEdit->setValidator(new QIntValidator(pOptionsGroup)); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
623 |
pOptLayout->addWidget(heightEdit, 5, 3); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
624 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
625 |
// checkbox 'use game resolution' |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
626 |
checkUseGameRes = new QCheckBox(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
627 |
checkUseGameRes->setText(QCheckBox::tr("Use game resolution")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
628 |
pOptLayout->addWidget(checkUseGameRes, 5, 4); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
629 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
630 |
// label for framerate |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
631 |
QLabel *labelFramerate = new QLabel(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
632 |
labelFramerate->setText(QLabel::tr("Framerate")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
633 |
pOptLayout->addWidget(labelFramerate, 6, 0); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
634 |
|
8192
81da6576b0c3
Make video recording options have fixed size and merge with spinbox->combobox change.
Mitchell Kember <mk12360@gmail.com>
parents:
8151
diff
changeset
|
635 |
framerateBox = new QComboBox(pOptionsGroup); |
81da6576b0c3
Make video recording options have fixed size and merge with spinbox->combobox change.
Mitchell Kember <mk12360@gmail.com>
parents:
8151
diff
changeset
|
636 |
framerateBox->addItem("24 fps", 24); |
81da6576b0c3
Make video recording options have fixed size and merge with spinbox->combobox change.
Mitchell Kember <mk12360@gmail.com>
parents:
8151
diff
changeset
|
637 |
framerateBox->addItem("25 fps", 25); |
81da6576b0c3
Make video recording options have fixed size and merge with spinbox->combobox change.
Mitchell Kember <mk12360@gmail.com>
parents:
8151
diff
changeset
|
638 |
framerateBox->addItem("30 fps", 30); |
81da6576b0c3
Make video recording options have fixed size and merge with spinbox->combobox change.
Mitchell Kember <mk12360@gmail.com>
parents:
8151
diff
changeset
|
639 |
framerateBox->addItem("50 fps", 50); |
81da6576b0c3
Make video recording options have fixed size and merge with spinbox->combobox change.
Mitchell Kember <mk12360@gmail.com>
parents:
8151
diff
changeset
|
640 |
framerateBox->addItem("60 fps", 60); |
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
641 |
pOptLayout->addWidget(framerateBox, 6, 1); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
642 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
643 |
// label for Bitrate |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
644 |
QLabel *labelBitrate = new QLabel(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
645 |
labelBitrate->setText(QLabel::tr("Bitrate (Kbps)")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
646 |
pOptLayout->addWidget(labelBitrate, 6, 2); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
647 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
648 |
// bitrate |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
649 |
bitrateBox = new QSpinBox(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
650 |
bitrateBox->setRange(100, 5000); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
651 |
bitrateBox->setSingleStep(100); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
652 |
pOptLayout->addWidget(bitrateBox, 6, 3); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
653 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
654 |
// button 'set default options' |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
655 |
btnDefaults = new QPushButton(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
656 |
btnDefaults->setText(QPushButton::tr("Set default options")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
657 |
btnDefaults->setWhatsThis(QPushButton::tr("Restore default coding parameters")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
658 |
pOptLayout->addWidget(btnDefaults, 7, 0, 1, 5); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
659 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
660 |
page3Layout->addWidget(pOptionsGroup, 1, 0); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
661 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
662 |
#endif |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
663 |
|
5878 | 664 |
previousQuality = this->SLQuality->value(); |
665 |
previousResolutionIndex = this->CBResolution->currentIndex(); |
|
666 |
previousFullscreenValue = this->CBFullscreen->isChecked(); |
|
8343
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
667 |
// mutually exclude window and fullscreen resolution |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
668 |
return pageLayout; |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
669 |
} |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
670 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
671 |
QLayout * PageOptions::footerLayoutDefinition() |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
672 |
{ |
6525
6c97379c584b
[GCI] backz task: unify the back button functionality, avoid using the save button
m4tx
parents:
6218
diff
changeset
|
673 |
return NULL; |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
674 |
} |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
675 |
|
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
676 |
void PageOptions::connectSignals() |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
677 |
{ |
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
678 |
#ifdef VIDEOREC |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
679 |
connect(checkUseGameRes, SIGNAL(stateChanged(int)), this, SLOT(changeUseGameRes(int))); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
680 |
connect(checkRecordAudio, SIGNAL(stateChanged(int)), this, SLOT(changeRecordAudio(int))); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
681 |
connect(comboAVFormats, SIGNAL(currentIndexChanged(int)), this, SLOT(changeAVFormat(int))); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
682 |
connect(btnDefaults, SIGNAL(clicked()), this, SLOT(setDefaultOptions())); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
683 |
#endif |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
684 |
|
6911
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
685 |
connect(SLQuality, SIGNAL(valueChanged(int)), this, SLOT(setQuality(int))); |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
686 |
connect(CBResolution, SIGNAL(currentIndexChanged(int)), this, SLOT(setResolution(int))); |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
687 |
connect(CBFullscreen, SIGNAL(stateChanged(int)), this, SLOT(setFullscreen(int))); |
6911
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
688 |
connect(CBStereoMode, SIGNAL(currentIndexChanged(int)), this, SLOT(forceFullscreen(int))); |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
689 |
connect(editNetNick, SIGNAL(editingFinished()), this, SLOT(trimNetNick())); |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
690 |
connect(CBSavePassword, SIGNAL(stateChanged(int)), this, SLOT(savePwdChanged(int))); |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
691 |
} |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
692 |
|
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
693 |
PageOptions::PageOptions(QWidget* parent) : AbstractPage(parent), config(0) |
6042
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
694 |
{ |
8b5345758f62
some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents:
6024
diff
changeset
|
695 |
initPage(); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
696 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
697 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
698 |
void PageOptions::forceFullscreen(int index) |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
699 |
{ |
5878 | 700 |
bool forced = (index == 7 || index == 8 || index == 9); |
8343
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
701 |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
702 |
if (index != 0) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
703 |
{ |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
704 |
this->SLQuality->setValue(this->SLQuality->maximum()); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
705 |
this->SLQuality->setEnabled(false); |
5878 | 706 |
this->CBFullscreen->setChecked(forced ? true : previousFullscreenValue); |
707 |
this->CBResolution->setCurrentIndex(forced ? 0 : previousResolutionIndex); |
|
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
708 |
} |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
709 |
else |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
710 |
{ |
5878 | 711 |
this->SLQuality->setEnabled(true); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
712 |
this->SLQuality->setValue(previousQuality); |
5878 | 713 |
this->CBFullscreen->setChecked(previousFullscreenValue); |
5877
514b639c40da
remove the forced fullscreen resolution since everyone is hating it; kept it around only for stereo rendering (where it's mandatory)
koda
parents:
5745
diff
changeset
|
714 |
this->CBResolution->setCurrentIndex(previousResolutionIndex); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
715 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
716 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
717 |
|
5878 | 718 |
void PageOptions::setQuality(int value) |
719 |
{ |
|
6218
999215ca87d7
actually the those if(...); weren't supposed to be if statements in the first place, since the result is always true at that point of code anyway.
sheepluva
parents:
6217
diff
changeset
|
720 |
Q_UNUSED(value); |
6217 | 721 |
|
5878 | 722 |
int index = this->CBStereoMode->currentIndex(); |
723 |
if (index == 0) |
|
724 |
previousQuality = this->SLQuality->value(); |
|
725 |
} |
|
726 |
||
727 |
void PageOptions::setFullscreen(int state) |
|
728 |
{ |
|
6218
999215ca87d7
actually the those if(...); weren't supposed to be if statements in the first place, since the result is always true at that point of code anyway.
sheepluva
parents:
6217
diff
changeset
|
729 |
Q_UNUSED(state); |
8352
ab7f22530ae0
Changed resolution labels on options page.
vitiv <nikita.utiu@gmail.com>
parents:
8350
diff
changeset
|
730 |
|
8343
aa4ea3cade3c
Added Support for variable windowed resolution.
vitiv <nikita.utiu@gmail.com>
parents:
8284
diff
changeset
|
731 |
|
5878 | 732 |
int index = this->CBStereoMode->currentIndex(); |
733 |
if (index != 7 && index != 8 && index != 9) |
|
734 |
previousFullscreenValue = this->CBFullscreen->isChecked(); |
|
735 |
} |
|
736 |
||
737 |
void PageOptions::setResolution(int state) |
|
738 |
{ |
|
6218
999215ca87d7
actually the those if(...); weren't supposed to be if statements in the first place, since the result is always true at that point of code anyway.
sheepluva
parents:
6217
diff
changeset
|
739 |
Q_UNUSED(state); |
6217 | 740 |
|
5878 | 741 |
int index = this->CBStereoMode->currentIndex(); |
742 |
if (index != 7 && index != 8 && index != 9) |
|
743 |
previousResolutionIndex = this->CBResolution->currentIndex(); |
|
744 |
} |
|
745 |
||
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
746 |
void PageOptions::trimNetNick() |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
747 |
{ |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
748 |
editNetNick->setText(editNetNick->text().trimmed()); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
749 |
} |
6024 | 750 |
|
6911
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
751 |
void PageOptions::savePwdChanged(int state) { |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
752 |
if (state == 0) { |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
753 |
editNetPassword->setEnabled(false); |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
754 |
editNetPassword->setText(""); |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
755 |
} else |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
756 |
editNetPassword->setEnabled(true); |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
757 |
} |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
758 |
|
6024 | 759 |
void PageOptions::requestEditSelectedTeam() |
760 |
{ |
|
761 |
emit editTeamRequested(CBTeamName->currentText()); |
|
762 |
} |
|
763 |
||
764 |
void PageOptions::requestDeleteSelectedTeam() |
|
765 |
{ |
|
766 |
emit deleteTeamRequested(CBTeamName->currentText()); |
|
767 |
} |
|
768 |
||
769 |
void PageOptions::setTeamOptionsEnabled(bool enabled) |
|
770 |
{ |
|
771 |
BtnNewTeam->setVisible(enabled); |
|
772 |
BtnEditTeam->setVisible(enabled); |
|
773 |
BtnDeleteTeam->setVisible(enabled); |
|
774 |
CBTeamName->setVisible(enabled); |
|
775 |
LblNoEditTeam->setVisible(!enabled); |
|
776 |
} |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
777 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
778 |
void PageOptions::colorButtonClicked(int i) |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
779 |
{ |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
780 |
if(i < 0 || i >= m_colorButtons.size()) |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
781 |
return; |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
782 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
783 |
QPalette p = m_colorButtons[i]->palette(); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
784 |
QColor c = QColorDialog::getColor(p.color(QPalette::Button)); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
785 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
786 |
if(c.isValid()) |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
787 |
{ |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
788 |
DataManager::instance().colorsModel()->item(i)->setData(c); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
789 |
m_colorButtons[i]->setStyleSheet(QString("background: %1").arg(c.name())); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
790 |
} |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
791 |
} |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
792 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
793 |
void PageOptions::onColorModelDataChanged(const QModelIndex & topLeft, const QModelIndex & bottomRight) |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
794 |
{ |
7630
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
795 |
Q_UNUSED(bottomRight); |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
796 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
797 |
QStandardItemModel * model = DataManager::instance().colorsModel(); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
798 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
799 |
m_colorButtons[topLeft.row()]->setStyleSheet(QString("background: %1").arg(model->item(topLeft.row())->data().value<QColor>().name())); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
800 |
} |
7700 | 801 |
|
802 |
void PageOptions::onProxyTypeChanged() |
|
803 |
{ |
|
7703 | 804 |
bool b = cbProxyType->currentIndex() != NoProxy && cbProxyType->currentIndex() != SystemProxy ; |
7700 | 805 |
|
806 |
sbProxyPort->setEnabled(b); |
|
807 |
leProxy->setEnabled(b); |
|
808 |
leProxyLogin->setEnabled(b); |
|
809 |
leProxyPassword->setEnabled(b); |
|
810 |
} |
|
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
811 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
812 |
// Video Recording |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
813 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
814 |
void PageOptions::setConfig(GameUIConfig * config) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
815 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
816 |
this->config = config; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
817 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
818 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
819 |
// user changed file format, we need to update list of codecs |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
820 |
void PageOptions::changeAVFormat(int index) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
821 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
822 |
// remember selected codecs |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
823 |
QString prevVCodec = videoCodec(); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
824 |
QString prevACodec = audioCodec(); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
825 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
826 |
// clear lists of codecs |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
827 |
comboVideoCodecs->clear(); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
828 |
comboAudioCodecs->clear(); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
829 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
830 |
// get list of codecs for specified format |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
831 |
LibavInteraction::instance().fillCodecs(comboAVFormats->itemData(index).toString(), comboVideoCodecs, comboAudioCodecs); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
832 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
833 |
// disable audio if there is no audio codec |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
834 |
if (comboAudioCodecs->count() == 0) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
835 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
836 |
checkRecordAudio->setChecked(false); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
837 |
checkRecordAudio->setEnabled(false); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
838 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
839 |
else |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
840 |
checkRecordAudio->setEnabled(true); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
841 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
842 |
// restore selected codecs if possible |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
843 |
int iVCodec = comboVideoCodecs->findData(prevVCodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
844 |
if (iVCodec != -1) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
845 |
comboVideoCodecs->setCurrentIndex(iVCodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
846 |
int iACodec = comboAudioCodecs->findData(prevACodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
847 |
if (iACodec != -1) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
848 |
comboAudioCodecs->setCurrentIndex(iACodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
849 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
850 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
851 |
// user switched checkbox 'use game resolution' |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
852 |
void PageOptions::changeUseGameRes(int state) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
853 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
854 |
if (state && config) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
855 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
856 |
// set resolution to game resolution |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
857 |
QRect resolution = config->vid_Resolution(); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
858 |
widthEdit->setText(QString::number(resolution.width())); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
859 |
heightEdit->setText(QString::number(resolution.height())); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
860 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
861 |
widthEdit->setEnabled(!state); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
862 |
heightEdit->setEnabled(!state); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
863 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
864 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
865 |
// user switched checkbox 'record audio' |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
866 |
void PageOptions::changeRecordAudio(int state) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
867 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
868 |
comboAudioCodecs->setEnabled(!!state); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
869 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
870 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
871 |
void PageOptions::setDefaultCodecs() |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
872 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
873 |
// VLC should be able to handle any of these configurations |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
874 |
// Quicktime X only opens the first one |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
875 |
// Windows Media Player TODO |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
876 |
if (tryCodecs("mp4", "libx264", "aac")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
877 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
878 |
if (tryCodecs("mp4", "libx264", "libfaac")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
879 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
880 |
if (tryCodecs("mp4", "libx264", "libmp3lame")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
881 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
882 |
if (tryCodecs("mp4", "libx264", "mp2")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
883 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
884 |
if (tryCodecs("avi", "libxvid", "libmp3lame")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
885 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
886 |
if (tryCodecs("avi", "libxvid", "ac3_fixed")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
887 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
888 |
if (tryCodecs("avi", "libxvid", "mp2")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
889 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
890 |
if (tryCodecs("avi", "mpeg4", "libmp3lame")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
891 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
892 |
if (tryCodecs("avi", "mpeg4", "ac3_fixed")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
893 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
894 |
if (tryCodecs("avi", "mpeg4", "mp2")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
895 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
896 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
897 |
// this shouldn't happen, just in case |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
898 |
if (tryCodecs("ogg", "libtheora", "libvorbis")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
899 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
900 |
tryCodecs("ogg", "libtheora", "flac"); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
901 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
902 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
903 |
void PageOptions::setDefaultOptions() |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
904 |
{ |
8192
81da6576b0c3
Make video recording options have fixed size and merge with spinbox->combobox change.
Mitchell Kember <mk12360@gmail.com>
parents:
8151
diff
changeset
|
905 |
framerateBox->setCurrentIndex(2); |
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
906 |
bitrateBox->setValue(1000); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
907 |
checkRecordAudio->setChecked(true); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
908 |
checkUseGameRes->setChecked(true); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
909 |
setDefaultCodecs(); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
910 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
911 |
|
8284 | 912 |
void PageOptions::checkForUpdates() |
913 |
{ |
|
914 |
AutoUpdater *updater = NULL; |
|
915 |
||
916 |
#ifdef __APPLE__ |
|
917 |
#ifdef SPARKLE_ENABLED |
|
918 |
updater = new SparkleAutoUpdater(); |
|
919 |
#endif |
|
920 |
#endif |
|
921 |
||
922 |
if (updater) |
|
923 |
{ |
|
924 |
updater->checkForUpdatesNow(); |
|
925 |
delete updater; |
|
926 |
} |
|
927 |
} |
|
928 |
||
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
929 |
bool PageOptions::tryCodecs(const QString & format, const QString & vcodec, const QString & acodec) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
930 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
931 |
// first we should change format |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
932 |
int iFormat = comboAVFormats->findData(format); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
933 |
if (iFormat == -1) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
934 |
return false; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
935 |
comboAVFormats->setCurrentIndex(iFormat); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
936 |
// format was changed, so lists of codecs were automatically updated to codecs supported by this format |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
937 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
938 |
// try to find video codec |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
939 |
int iVCodec = comboVideoCodecs->findData(vcodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
940 |
if (iVCodec == -1) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
941 |
return false; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
942 |
comboVideoCodecs->setCurrentIndex(iVCodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
943 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
944 |
// try to find audio codec |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
945 |
int iACodec = comboAudioCodecs->findData(acodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
946 |
if (iACodec == -1 && checkRecordAudio->isChecked()) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
947 |
return false; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
948 |
if (iACodec != -1) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
949 |
comboAudioCodecs->setCurrentIndex(iACodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
950 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
951 |
return true; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
952 |
} |
8346 | 953 |
|
954 |
// When the current tab is switched |
|
955 |
void PageOptions::tabIndexChanged(int index) |
|
956 |
{ |
|
957 |
if (index == binderTab) // Switched to bind tab |
|
958 |
{ |
|
959 |
binder->resetInterface(); |
|
960 |
||
961 |
if (!config) return; |
|
962 |
||
963 |
QStandardItemModel * binds = DataManager::instance().bindsModel(); |
|
964 |
for(int i = 0; i < BINDS_NUMBER; i++) |
|
965 |
{ |
|
966 |
QString value = config->bind(i); |
|
967 |
QModelIndexList mdl = binds->match(binds->index(0, 0), Qt::UserRole + 1, value, 1, Qt::MatchExactly); |
|
968 |
if(mdl.size() == 1) binder->setBindIndex(i, mdl[0].row()); |
|
969 |
} |
|
970 |
} |
|
971 |
||
972 |
currentTab = index; |
|
973 |
} |
|
974 |
||
975 |
// When a key bind combobox is changed |
|
976 |
void PageOptions::bindUpdated(int bindID) |
|
977 |
{ |
|
978 |
int bindIndex = binder->bindIndex(bindID); |
|
979 |
||
980 |
if (bindIndex == 0) bindIndex = resetBindToDefault(bindID); |
|
981 |
||
982 |
// Save bind |
|
983 |
QStandardItemModel * binds = DataManager::instance().bindsModel(); |
|
984 |
QString strbind = binds->index(binder->bindIndex(bindID), 0).data(Qt::UserRole + 1).toString(); |
|
985 |
config->setBind(bindID, strbind); |
|
986 |
} |
|
987 |
||
988 |
// Changes a key bind (bindID) to its default value. This updates the bind's combo-box in the UI. |
|
989 |
// Returns: The bind model index of the default. |
|
990 |
int PageOptions::resetBindToDefault(int bindID) |
|
991 |
{ |
|
992 |
QStandardItemModel * binds = DataManager::instance().bindsModel(); |
|
993 |
QModelIndexList mdl = binds->match(binds->index(0, 0), Qt::UserRole + 1, cbinds[bindID].strbind, 1, Qt::MatchExactly); |
|
994 |
if(mdl.size() == 1) binder->setBindIndex(bindID, mdl[0].row()); |
|
995 |
return mdl[0].row(); |
|
996 |
} |
|
997 |
||
998 |
// Called when "reset all binds" button is pressed |
|
999 |
void PageOptions::resetAllBinds() |
|
1000 |
{ |
|
1001 |
for (int i = 0; i < BINDS_NUMBER; i++) |
|
1002 |
{ |
|
1003 |
resetBindToDefault(i); |
|
1004 |
bindUpdated(i); |
|
1005 |
} |
|
1006 |
} |