author | sheepluva |
Thu, 06 Dec 2012 10:01:01 +0100 | |
branch | flibqtfrontend |
changeset 8259 | 02e32be01232 |
parent 8248 | 34d1aceb31aa |
child 8284 | a874d00df4a4 |
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> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
26 |
#include <QLineEdit> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
27 |
#include <QSpinBox> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
28 |
#include <QTextBrowser> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
29 |
#include <QTableWidget> |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
30 |
#include <QSlider> |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
31 |
#include <QSignalMapper> |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
32 |
#include <QColorDialog> |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
33 |
#include <QStandardItemModel> |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
34 |
|
5204 | 35 |
#include "pageoptions.h" |
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
36 |
#include "gameuiconfig.h" |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
37 |
#include "hwconsts.h" |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
38 |
#include "fpsedit.h" |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
39 |
#include "igbox.h" |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
40 |
#include "DataManager.h" |
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
41 |
#include "LibavInteraction.h" |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
42 |
|
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
|
43 |
// 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
|
44 |
QLayout * PageOptions::bodyLayoutDefinition() |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
45 |
{ |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
46 |
QVBoxLayout * pageLayout = new QVBoxLayout(); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
47 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
48 |
QTabWidget * tabs = new QTabWidget(this); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
49 |
pageLayout->addWidget(tabs); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
50 |
QWidget * page1 = new QWidget(this); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
51 |
QWidget * page2 = new QWidget(this); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
52 |
tabs->addTab(page1, tr("General")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
53 |
tabs->addTab(page2, tr("Advanced")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
54 |
|
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
55 |
#ifdef VIDEOREC |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
56 |
QWidget * page3 = new QWidget(this); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
57 |
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
|
58 |
#endif |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
59 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
60 |
{ // page 1 |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
61 |
QGridLayout * page1Layout = new QGridLayout(page1); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
62 |
//gbTBLayout->setMargin(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
63 |
page1Layout->setSpacing(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
64 |
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
|
65 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
66 |
QPixmap pmNew(":/res/new.png"); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
67 |
QPixmap pmEdit(":/res/edit.png"); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
68 |
QPixmap pmDelete(":/res/delete.png"); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
69 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
70 |
{ |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
71 |
teamsBox = new IconedGroupBox(this); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
72 |
//teamsBox->setContentTopPadding(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
73 |
//teamsBox->setAttribute(Qt::WA_PaintOnScreen, true); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
74 |
teamsBox->setIcon(QIcon(":/res/teamicon.png")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
75 |
teamsBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
76 |
teamsBox->setTitle(QGroupBox::tr("Teams")); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
77 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
78 |
QGridLayout * GBTlayout = new QGridLayout(teamsBox); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
79 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
80 |
CBTeamName = new QComboBox(teamsBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
81 |
GBTlayout->addWidget(CBTeamName, 0, 0); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
82 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
83 |
BtnNewTeam = new QPushButton(teamsBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
84 |
BtnNewTeam->setToolTip(tr("New team")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
85 |
BtnNewTeam->setIconSize(pmNew.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
86 |
BtnNewTeam->setIcon(pmNew); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
87 |
BtnNewTeam->setMaximumWidth(pmNew.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
88 |
connect(BtnNewTeam, SIGNAL(clicked()), this, SIGNAL(newTeamRequested())); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
89 |
GBTlayout->addWidget(BtnNewTeam, 0, 1); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
90 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
91 |
BtnEditTeam = new QPushButton(teamsBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
92 |
BtnEditTeam->setToolTip(tr("Edit team")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
93 |
BtnEditTeam->setIconSize(pmEdit.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
94 |
BtnEditTeam->setIcon(pmEdit); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
95 |
BtnEditTeam->setMaximumWidth(pmEdit.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
96 |
connect(BtnEditTeam, SIGNAL(clicked()), this, SLOT(requestEditSelectedTeam())); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
97 |
GBTlayout->addWidget(BtnEditTeam, 0, 2); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
98 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
99 |
BtnDeleteTeam = new QPushButton(teamsBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
100 |
BtnDeleteTeam->setToolTip(tr("Delete team")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
101 |
BtnDeleteTeam->setIconSize(pmDelete.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
102 |
BtnDeleteTeam->setIcon(pmDelete); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
103 |
BtnDeleteTeam->setMaximumWidth(pmDelete.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
104 |
connect(BtnDeleteTeam, SIGNAL(clicked()), this, SLOT(requestDeleteSelectedTeam())); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
105 |
GBTlayout->addWidget(BtnDeleteTeam, 0, 3); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
106 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
107 |
LblNoEditTeam = new QLabel(teamsBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
108 |
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
|
109 |
LblNoEditTeam->setWordWrap(true); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
110 |
LblNoEditTeam->setVisible(false); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
111 |
GBTlayout->addWidget(LblNoEditTeam, 0, 0); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
112 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
113 |
page1Layout->addWidget(teamsBox, 0, 0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
114 |
} |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
115 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
116 |
{ |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
117 |
IconedGroupBox* groupWeapons = new IconedGroupBox(this); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
118 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
119 |
//groupWeapons->setContentTopPadding(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
120 |
//groupWeapons->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
121 |
groupWeapons->setIcon(QIcon(":/res/weaponsicon.png")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
122 |
groupWeapons->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
123 |
groupWeapons->setTitle(QGroupBox::tr("Schemes and Weapons")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
124 |
QGridLayout * WeaponsLayout = new QGridLayout(groupWeapons); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
125 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
126 |
QLabel* SchemeLabel = new QLabel(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
127 |
SchemeLabel->setText(QLabel::tr("Game scheme")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
128 |
WeaponsLayout->addWidget(SchemeLabel, 1, 0); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
129 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
130 |
SchemesName = new QComboBox(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
131 |
WeaponsLayout->addWidget(SchemesName, 1, 1); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
132 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
133 |
SchemeNew = new QPushButton(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
134 |
SchemeNew->setWhatsThis(tr("New scheme")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
135 |
SchemeNew->setIconSize(pmNew.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
136 |
SchemeNew->setIcon(pmNew); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
137 |
SchemeNew->setMaximumWidth(pmNew.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
138 |
WeaponsLayout->addWidget(SchemeNew, 1, 2); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
139 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
140 |
SchemeEdit = new QPushButton(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
141 |
SchemeEdit->setWhatsThis(tr("Edit scheme")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
142 |
SchemeEdit->setIconSize(pmEdit.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
143 |
SchemeEdit->setIcon(pmEdit); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
144 |
SchemeEdit->setMaximumWidth(pmEdit.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
145 |
WeaponsLayout->addWidget(SchemeEdit, 1, 3); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
146 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
147 |
SchemeDelete = new QPushButton(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
148 |
SchemeDelete->setWhatsThis(tr("Delete scheme")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
149 |
SchemeDelete->setIconSize(pmDelete.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
150 |
SchemeDelete->setIcon(pmDelete); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
151 |
SchemeDelete->setMaximumWidth(pmDelete.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
152 |
WeaponsLayout->addWidget(SchemeDelete, 1, 4); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
153 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
154 |
QLabel* WeaponLabel = new QLabel(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
155 |
WeaponLabel->setText(QLabel::tr("Weapons")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
156 |
WeaponsLayout->addWidget(WeaponLabel, 2, 0); |
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 |
WeaponsName = new QComboBox(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
159 |
WeaponsLayout->addWidget(WeaponsName, 2, 1); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
160 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
161 |
WeaponNew = new QPushButton(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
162 |
WeaponNew->setWhatsThis(tr("New weapon set")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
163 |
WeaponNew->setIconSize(pmNew.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
164 |
WeaponNew->setIcon(pmNew); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
165 |
WeaponNew->setMaximumWidth(pmNew.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
166 |
WeaponsLayout->addWidget(WeaponNew, 2, 2); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
167 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
168 |
WeaponEdit = new QPushButton(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
169 |
WeaponEdit->setWhatsThis(tr("Edit weapon set")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
170 |
WeaponEdit->setIconSize(pmEdit.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
171 |
WeaponEdit->setIcon(pmEdit); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
172 |
WeaponEdit->setMaximumWidth(pmEdit.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
173 |
WeaponsLayout->addWidget(WeaponEdit, 2, 3); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
174 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
175 |
WeaponDelete = new QPushButton(groupWeapons); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
176 |
WeaponDelete->setWhatsThis(tr("Delete weapon set")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
177 |
WeaponDelete->setIconSize(pmDelete.size()); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
178 |
WeaponDelete->setIcon(pmDelete); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
179 |
WeaponDelete->setMaximumWidth(pmDelete.width() + 6); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
180 |
WeaponsLayout->addWidget(WeaponDelete, 2, 4); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
181 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
182 |
page1Layout->addWidget(groupWeapons, 1, 0); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
183 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
184 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
185 |
{ |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
186 |
IconedGroupBox* groupMisc = new IconedGroupBox(this); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
187 |
//groupMisc->setContentTopPadding(0); |
7678 | 188 |
//groupMisc->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::MinimumExpanding); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
189 |
groupMisc->setIcon(QIcon(":/res/miscicon.png")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
190 |
//groupMisc->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
191 |
groupMisc->setTitle(QGroupBox::tr("Misc")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
192 |
QGridLayout * MiscLayout = new QGridLayout(groupMisc); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
193 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
194 |
// Label for "Language" |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
195 |
QLabel *labelLanguage = new QLabel(groupMisc); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
196 |
labelLanguage->setText(QLabel::tr("Locale") + " *"); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
197 |
MiscLayout->addWidget(labelLanguage, 0, 0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
198 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
199 |
// List of installed languages |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
200 |
CBLanguage = new QComboBox(groupMisc); |
8098 | 201 |
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
|
202 |
CBLanguage->addItem(QComboBox::tr("(System default)"), QString("")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
203 |
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
|
204 |
{ |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
205 |
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
|
206 |
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
|
207 |
} |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
208 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
209 |
MiscLayout->addWidget(CBLanguage, 0, 1); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
210 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
211 |
// Label and field for net nick |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
212 |
labelNN = new QLabel(groupMisc); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
213 |
labelNN->setText(QLabel::tr("Nickname")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
214 |
MiscLayout->addWidget(labelNN, 1, 0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
215 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
216 |
editNetNick = new QLineEdit(groupMisc); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
217 |
editNetNick->setMaxLength(20); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
218 |
editNetNick->setText(QLineEdit::tr("anonymous")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
219 |
MiscLayout->addWidget(editNetNick, 1, 1); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
220 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
221 |
// checkbox and field for password |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
222 |
CBSavePassword = new QCheckBox(groupMisc); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
223 |
CBSavePassword->setText(QCheckBox::tr("Save password")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
224 |
MiscLayout->addWidget(CBSavePassword, 2, 0); |
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 |
editNetPassword = new QLineEdit(groupMisc); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
227 |
editNetPassword->setEchoMode(QLineEdit::Password); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
228 |
MiscLayout->addWidget(editNetPassword, 2, 1); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
229 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
230 |
#ifdef __APPLE__ |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
231 |
#ifdef SPARKLE_ENABLED |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
232 |
CBAutoUpdate = new QCheckBox(groupMisc); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
233 |
CBAutoUpdate->setText(QCheckBox::tr("Check for updates at startup")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
234 |
MiscLayout->addWidget(CBAutoUpdate, 7, 0, 1, 3); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
235 |
#endif |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
236 |
#endif |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
237 |
page1Layout->addWidget(groupMisc, 2, 0); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
238 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
239 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
240 |
{ |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
241 |
AGGroupBox = new IconedGroupBox(this); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
242 |
//AGGroupBox->setContentTopPadding(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
243 |
AGGroupBox->setIcon(QIcon(":/res/graphicsicon.png")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
244 |
//AGGroupBox->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
245 |
AGGroupBox->setTitle(QGroupBox::tr("Audio/Graphic options")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
246 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
247 |
QVBoxLayout * GBAlayout = new QVBoxLayout(AGGroupBox); |
8248
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
248 |
QGridLayout * GBAfrontendlayout = new QGridLayout(0); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
249 |
QHBoxLayout * GBAreslayout = new QHBoxLayout(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
250 |
QHBoxLayout * GBAstereolayout = new QHBoxLayout(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
251 |
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
|
252 |
|
8248
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
253 |
QLabel * frontend = new QLabel(AGGroupBox); |
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
254 |
frontend->setText(QLabel::tr("Frontend")); |
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
255 |
frontend->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); |
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
256 |
GBAfrontendlayout->addWidget(frontend, 0, 0, 1, 2); |
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
257 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
258 |
CBFrontendFullscreen = new QCheckBox(AGGroupBox); |
8248
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
259 |
CBFrontendFullscreen->setText(QCheckBox::tr("Fullscreen")); |
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
260 |
GBAfrontendlayout->addWidget(CBFrontendFullscreen, 1, 0); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
261 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
262 |
CBFrontendEffects = new QCheckBox(AGGroupBox); |
8248
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
263 |
CBFrontendEffects->setText(QCheckBox::tr("Visual effects")); |
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
264 |
GBAfrontendlayout->addWidget(CBFrontendEffects, 2, 0); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
265 |
|
8246
6859b1afcbd4
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
266 |
CBFrontendSound = new QCheckBox(AGGroupBox); |
8248
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
267 |
CBFrontendSound->setText(QCheckBox::tr("Sound")); |
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
268 |
GBAfrontendlayout->addWidget(CBFrontendSound, 1, 1); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
269 |
|
8246
6859b1afcbd4
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
270 |
CBFrontendMusic = new QCheckBox(AGGroupBox); |
8248
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
271 |
CBFrontendMusic->setText(QCheckBox::tr("Music")); |
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
272 |
GBAfrontendlayout->addWidget(CBFrontendMusic, 2, 1); |
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
273 |
|
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
274 |
GBAlayout->addLayout(GBAfrontendlayout); |
6911
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
275 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
276 |
QFrame * hr = new QFrame(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
277 |
hr->setFrameStyle(QFrame::HLine); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
278 |
hr->setLineWidth(3); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
279 |
hr->setFixedHeight(10); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
280 |
GBAlayout->addWidget(hr); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
281 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
282 |
QLabel * resolution = new QLabel(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
283 |
resolution->setText(QLabel::tr("Resolution")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
284 |
GBAreslayout->addWidget(resolution); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
285 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
286 |
CBResolution = new QComboBox(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
287 |
GBAreslayout->addWidget(CBResolution); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
288 |
GBAlayout->addLayout(GBAreslayout); |
6911
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
289 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
290 |
CBFullscreen = new QCheckBox(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
291 |
CBFullscreen->setText(QCheckBox::tr("Fullscreen")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
292 |
GBAreslayout->addWidget(CBFullscreen); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
293 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
294 |
QLabel * quality = new QLabel(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
295 |
quality->setText(QLabel::tr("Quality")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
296 |
quality->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
297 |
GBAqualayout->addWidget(quality); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
298 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
299 |
SLQuality = new QSlider(Qt::Horizontal, AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
300 |
SLQuality->setTickPosition(QSlider::TicksBelow); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
301 |
SLQuality->setMaximum(5); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
302 |
SLQuality->setMinimum(0); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
303 |
SLQuality->setFixedWidth(150); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
304 |
GBAqualayout->addWidget(SLQuality); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
305 |
GBAlayout->addLayout(GBAqualayout); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
306 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
307 |
QLabel * stereo = new QLabel(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
308 |
stereo->setText(QLabel::tr("Stereo rendering")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
309 |
GBAstereolayout->addWidget(stereo); |
6911
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
310 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
311 |
CBStereoMode = new QComboBox(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
312 |
CBStereoMode->addItem(QComboBox::tr("Disabled")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
313 |
CBStereoMode->addItem(QComboBox::tr("Red/Cyan")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
314 |
CBStereoMode->addItem(QComboBox::tr("Cyan/Red")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
315 |
CBStereoMode->addItem(QComboBox::tr("Red/Blue")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
316 |
CBStereoMode->addItem(QComboBox::tr("Blue/Red")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
317 |
CBStereoMode->addItem(QComboBox::tr("Red/Green")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
318 |
CBStereoMode->addItem(QComboBox::tr("Green/Red")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
319 |
CBStereoMode->addItem(QComboBox::tr("Side-by-side")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
320 |
CBStereoMode->addItem(QComboBox::tr("Top-Bottom")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
321 |
CBStereoMode->addItem(QComboBox::tr("Wiggle")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
322 |
CBStereoMode->addItem(QComboBox::tr("Red/Cyan grayscale")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
323 |
CBStereoMode->addItem(QComboBox::tr("Cyan/Red grayscale")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
324 |
CBStereoMode->addItem(QComboBox::tr("Red/Blue grayscale")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
325 |
CBStereoMode->addItem(QComboBox::tr("Blue/Red grayscale")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
326 |
CBStereoMode->addItem(QComboBox::tr("Red/Green grayscale")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
327 |
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
|
328 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
329 |
GBAstereolayout->addWidget(CBStereoMode); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
330 |
GBAlayout->addLayout(GBAstereolayout); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
331 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
332 |
hr = new QFrame(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
333 |
hr->setFrameStyle(QFrame::HLine); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
334 |
hr->setLineWidth(3); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
335 |
hr->setFixedHeight(10); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
336 |
GBAlayout->addWidget(hr); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
337 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
338 |
QGridLayout * GBAvollayout = new QGridLayout(); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
339 |
QLabel * vol = new QLabel(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
340 |
vol->setText(QLabel::tr("Initial sound volume")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
341 |
GBAvollayout->addWidget(vol, 0, 0, 1, 2); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
342 |
GBAlayout->addLayout(GBAvollayout); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
343 |
volumeBox = new QSpinBox(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
344 |
volumeBox->setRange(0, 100); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
345 |
volumeBox->setSingleStep(5); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
346 |
GBAvollayout->addWidget(volumeBox, 0, 2); |
5252 | 347 |
|
8246
6859b1afcbd4
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
348 |
CBSound = new QCheckBox(AGGroupBox); |
6859b1afcbd4
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
349 |
CBSound->setText(QCheckBox::tr("Sound")); |
8248
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
350 |
CBSound->setWhatsThis(QCheckBox::tr("In-game sound effects")); |
8246
6859b1afcbd4
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
351 |
GBAvollayout->addWidget(CBSound, 1, 0); |
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
352 |
|
8246
6859b1afcbd4
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
353 |
CBMusic = new QCheckBox(AGGroupBox); |
6859b1afcbd4
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
354 |
CBMusic->setText(QCheckBox::tr("Music")); |
8248
34d1aceb31aa
Cleaned up frontend options a bit and added a couple WhatsThis messages.
Mitchell Kember <mk12360@gmail.com>
parents:
8246
diff
changeset
|
355 |
CBMusic->setWhatsThis(QCheckBox::tr("In-game music")); |
8246
6859b1afcbd4
Removed redundant "enable"s on checkboxes and variable names.
Mitchell Kember <mk12360@gmail.com>
parents:
8192
diff
changeset
|
356 |
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
|
357 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
358 |
GBAvollayout->setSizeConstraint(QLayout::SetMinimumSize); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
359 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
360 |
hr = new QFrame(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
361 |
hr->setFrameStyle(QFrame::HLine); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
362 |
hr->setLineWidth(3); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
363 |
hr->setFixedHeight(10); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
364 |
GBAlayout->addWidget(hr); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
365 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
366 |
CBAltDamage = new QCheckBox(AGGroupBox); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
367 |
CBAltDamage->setText(QCheckBox::tr("Alternative damage show")); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
368 |
GBAlayout->addWidget(CBAltDamage); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
369 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
370 |
page1Layout->addWidget(AGGroupBox, 0, 1, 3, 1); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
371 |
} |
7678 | 372 |
|
373 |
page1Layout->addWidget(new QWidget(this), 3, 0); |
|
374 |
||
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
375 |
} |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
376 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
377 |
{ // page 2 |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
378 |
QGridLayout * page2Layout = new QGridLayout(page2); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
379 |
|
7630
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
380 |
{ |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
381 |
IconedGroupBox * gbColors = new IconedGroupBox(this); |
7678 | 382 |
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
|
383 |
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
|
384 |
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
|
385 |
QGridLayout * gbCLayout = new QGridLayout(gbColors); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
386 |
|
7630
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
387 |
QSignalMapper * mapper = new QSignalMapper(this); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
388 |
|
7630
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
389 |
QStandardItemModel * model = DataManager::instance().colorsModel(); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
390 |
|
7630
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
391 |
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
|
392 |
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
|
393 |
{ |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
394 |
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
|
395 |
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
|
396 |
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
|
397 |
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
|
398 |
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
|
399 |
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
|
400 |
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
|
401 |
} |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
402 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
403 |
connect(mapper, SIGNAL(mapped(int)), this, SLOT(colorButtonClicked(int))); |
7680 | 404 |
|
405 |
QPushButton * btn = new QPushButton(this); |
|
406 |
gbCLayout->addWidget(btn, (model->rowCount() - 1) / 3 + 1, 0, 1, 3); |
|
407 |
btn->setText(tr("Reset to default colors")); |
|
7681 | 408 |
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
|
409 |
} |
7153
f0d055645ab2
minor tweaks for options page; should improve readability at small window size... a bit...
sheepluva
parents:
6952
diff
changeset
|
410 |
|
7630
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
411 |
{ |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
412 |
IconedGroupBox * gbMisc = new IconedGroupBox(this); |
7678 | 413 |
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
|
414 |
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
|
415 |
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
|
416 |
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
|
417 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
418 |
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
|
419 |
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
|
420 |
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
|
421 |
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
|
422 |
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
|
423 |
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
|
424 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
425 |
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
|
426 |
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
|
427 |
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
|
428 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
429 |
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
|
430 |
|
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 |
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
|
433 |
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
|
434 |
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
|
435 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
436 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
437 |
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
|
438 |
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
|
439 |
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
|
440 |
|
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
441 |
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
|
442 |
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
|
443 |
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
|
444 |
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
|
445 |
} |
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
446 |
|
7700 | 447 |
{ |
448 |
IconedGroupBox * gbProxy = new IconedGroupBox(this); |
|
449 |
gbProxy->setIcon(QIcon(":/res/Settings.png")); |
|
450 |
gbProxy->setTitle(QGroupBox::tr("Proxy settings")); |
|
451 |
page2Layout->addWidget(gbProxy, 1, 0); |
|
452 |
QGridLayout * gbLayout = new QGridLayout(gbProxy); |
|
453 |
||
454 |
QStringList sl; |
|
455 |
sl |
|
456 |
<< tr("Proxy host") |
|
457 |
<< tr("Proxy port") |
|
458 |
<< tr("Proxy login") |
|
459 |
<< tr("Proxy password") |
|
460 |
; |
|
461 |
for(int i = 0; i < sl.size(); ++i) |
|
462 |
{ |
|
463 |
QLabel * l = new QLabel(gbProxy); |
|
464 |
l->setText(sl[i]); |
|
465 |
gbLayout->addWidget(l, i + 1, 0); |
|
466 |
} |
|
467 |
||
468 |
cbProxyType = new QComboBox(gbProxy); |
|
469 |
cbProxyType->addItems(QStringList() |
|
470 |
<< tr("No proxy") |
|
7702 | 471 |
<< tr("System proxy settings") |
7700 | 472 |
<< tr("Socks5 proxy") |
473 |
<< tr("HTTP proxy")); |
|
474 |
gbLayout->addWidget(cbProxyType, 0, 1); |
|
475 |
||
476 |
leProxy = new QLineEdit(gbProxy); |
|
477 |
gbLayout->addWidget(leProxy, 1, 1); |
|
478 |
||
479 |
sbProxyPort = new QSpinBox(gbProxy); |
|
480 |
sbProxyPort->setMaximum(65535); |
|
481 |
gbLayout->addWidget(sbProxyPort, 2, 1); |
|
482 |
||
483 |
leProxyLogin = new QLineEdit(gbProxy); |
|
484 |
gbLayout->addWidget(leProxyLogin, 3, 1); |
|
485 |
||
486 |
leProxyPassword = new QLineEdit(gbProxy); |
|
487 |
leProxyPassword->setEchoMode(QLineEdit::Password); |
|
488 |
gbLayout->addWidget(leProxyPassword, 4, 1); |
|
489 |
||
490 |
||
491 |
connect(cbProxyType, SIGNAL(currentIndexChanged(int)), this, SLOT(onProxyTypeChanged())); |
|
7701 | 492 |
onProxyTypeChanged(); |
7700 | 493 |
} |
494 |
||
495 |
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
|
496 |
} |
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
497 |
#ifdef VIDEOREC |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
498 |
{ // page 3 |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
499 |
QGridLayout * page3Layout = new QGridLayout(page3); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
500 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
501 |
IconedGroupBox* pOptionsGroup = new IconedGroupBox(this); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
502 |
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
|
503 |
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
|
504 |
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
|
505 |
QGridLayout * pOptLayout = new QGridLayout(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
506 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
507 |
// label for format |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
508 |
QLabel *labelFormat = new QLabel(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
509 |
labelFormat->setText(QLabel::tr("Format")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
510 |
pOptLayout->addWidget(labelFormat, 0, 0); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
511 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
512 |
// list of supported formats |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
513 |
comboAVFormats = new QComboBox(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
514 |
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
|
515 |
LibavInteraction::instance().fillFormats(comboAVFormats); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
516 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
517 |
// separator |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
518 |
QFrame * hr = new QFrame(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
519 |
hr->setFrameStyle(QFrame::HLine); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
520 |
hr->setLineWidth(3); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
521 |
hr->setFixedHeight(10); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
522 |
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
|
523 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
524 |
// label for audio codec |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
525 |
QLabel *labelACodec = new QLabel(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
526 |
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
|
527 |
pOptLayout->addWidget(labelACodec, 2, 0); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
528 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
529 |
// list of supported audio codecs |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
530 |
comboAudioCodecs = new QComboBox(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
531 |
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
|
532 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
533 |
// checkbox 'record audio' |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
534 |
checkRecordAudio = new QCheckBox(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
535 |
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
|
536 |
pOptLayout->addWidget(checkRecordAudio, 2, 4); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
537 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
538 |
// separator |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
539 |
hr = new QFrame(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
540 |
hr->setFrameStyle(QFrame::HLine); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
541 |
hr->setLineWidth(3); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
542 |
hr->setFixedHeight(10); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
543 |
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
|
544 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
545 |
// label for video codec |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
546 |
QLabel *labelVCodec = new QLabel(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
547 |
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
|
548 |
pOptLayout->addWidget(labelVCodec, 4, 0); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
549 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
550 |
// list of supported video codecs |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
551 |
comboVideoCodecs = new QComboBox(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
552 |
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
|
553 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
554 |
// label for resolution |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
555 |
QLabel *labelRes = new QLabel(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
556 |
labelRes->setText(QLabel::tr("Resolution")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
557 |
pOptLayout->addWidget(labelRes, 5, 0); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
558 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
559 |
// width |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
560 |
widthEdit = new QLineEdit(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
561 |
widthEdit->setValidator(new QIntValidator(this)); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
562 |
pOptLayout->addWidget(widthEdit, 5, 1); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
563 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
564 |
// x |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
565 |
QLabel *labelX = new QLabel(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
566 |
labelX->setText("X"); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
567 |
pOptLayout->addWidget(labelX, 5, 2); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
568 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
569 |
// height |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
570 |
heightEdit = new QLineEdit(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
571 |
heightEdit->setValidator(new QIntValidator(pOptionsGroup)); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
572 |
pOptLayout->addWidget(heightEdit, 5, 3); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
573 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
574 |
// checkbox 'use game resolution' |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
575 |
checkUseGameRes = new QCheckBox(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
576 |
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
|
577 |
pOptLayout->addWidget(checkUseGameRes, 5, 4); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
578 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
579 |
// label for framerate |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
580 |
QLabel *labelFramerate = new QLabel(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
581 |
labelFramerate->setText(QLabel::tr("Framerate")); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
582 |
pOptLayout->addWidget(labelFramerate, 6, 0); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
583 |
|
8192
81da6576b0c3
Make video recording options have fixed size and merge with spinbox->combobox change.
Mitchell Kember <mk12360@gmail.com>
parents:
8151
diff
changeset
|
584 |
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
|
585 |
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
|
586 |
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
|
587 |
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
|
588 |
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
|
589 |
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
|
590 |
pOptLayout->addWidget(framerateBox, 6, 1); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
591 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
592 |
// label for Bitrate |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
593 |
QLabel *labelBitrate = new QLabel(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
594 |
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
|
595 |
pOptLayout->addWidget(labelBitrate, 6, 2); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
596 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
597 |
// bitrate |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
598 |
bitrateBox = new QSpinBox(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
599 |
bitrateBox->setRange(100, 5000); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
600 |
bitrateBox->setSingleStep(100); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
601 |
pOptLayout->addWidget(bitrateBox, 6, 3); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
602 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
603 |
// button 'set default options' |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
604 |
btnDefaults = new QPushButton(pOptionsGroup); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
605 |
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
|
606 |
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
|
607 |
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
|
608 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
609 |
page3Layout->addWidget(pOptionsGroup, 1, 0); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
610 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
611 |
#endif |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
612 |
|
5878 | 613 |
previousQuality = this->SLQuality->value(); |
614 |
previousResolutionIndex = this->CBResolution->currentIndex(); |
|
615 |
previousFullscreenValue = this->CBFullscreen->isChecked(); |
|
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
|
616 |
|
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
|
617 |
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
|
618 |
} |
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
|
619 |
|
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
|
620 |
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
|
621 |
{ |
6525
6c97379c584b
[GCI] backz task: unify the back button functionality, avoid using the save button
m4tx
parents:
6218
diff
changeset
|
622 |
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
|
623 |
} |
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
|
624 |
|
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
|
625 |
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
|
626 |
{ |
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
627 |
#ifdef VIDEOREC |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
628 |
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
|
629 |
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
|
630 |
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
|
631 |
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
|
632 |
#endif |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
633 |
|
6911
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
634 |
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
|
635 |
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
|
636 |
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
|
637 |
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
|
638 |
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
|
639 |
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
|
640 |
} |
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
|
641 |
|
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
642 |
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
|
643 |
{ |
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
|
644 |
initPage(); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
645 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
646 |
|
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
647 |
void PageOptions::forceFullscreen(int index) |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
648 |
{ |
5878 | 649 |
bool forced = (index == 7 || index == 8 || index == 9); |
650 |
||
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
651 |
if (index != 0) |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
652 |
{ |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
653 |
this->SLQuality->setValue(this->SLQuality->maximum()); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
654 |
this->SLQuality->setEnabled(false); |
5878 | 655 |
this->CBFullscreen->setEnabled(!forced); |
656 |
this->CBFullscreen->setChecked(forced ? true : previousFullscreenValue); |
|
657 |
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
|
658 |
} |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
659 |
else |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6575
diff
changeset
|
660 |
{ |
5878 | 661 |
this->SLQuality->setEnabled(true); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
662 |
this->CBFullscreen->setEnabled(true); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
663 |
this->SLQuality->setValue(previousQuality); |
5878 | 664 |
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
|
665 |
this->CBResolution->setCurrentIndex(previousResolutionIndex); |
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
666 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
667 |
} |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
668 |
|
5878 | 669 |
void PageOptions::setQuality(int value) |
670 |
{ |
|
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
|
671 |
Q_UNUSED(value); |
6217 | 672 |
|
5878 | 673 |
int index = this->CBStereoMode->currentIndex(); |
674 |
if (index == 0) |
|
675 |
previousQuality = this->SLQuality->value(); |
|
676 |
} |
|
677 |
||
678 |
void PageOptions::setFullscreen(int state) |
|
679 |
{ |
|
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
|
680 |
Q_UNUSED(state); |
6217 | 681 |
|
5878 | 682 |
int index = this->CBStereoMode->currentIndex(); |
683 |
if (index != 7 && index != 8 && index != 9) |
|
684 |
previousFullscreenValue = this->CBFullscreen->isChecked(); |
|
685 |
} |
|
686 |
||
687 |
void PageOptions::setResolution(int state) |
|
688 |
{ |
|
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
|
689 |
Q_UNUSED(state); |
6217 | 690 |
|
5878 | 691 |
int index = this->CBStereoMode->currentIndex(); |
692 |
if (index != 7 && index != 8 && index != 9) |
|
693 |
previousResolutionIndex = this->CBResolution->currentIndex(); |
|
694 |
} |
|
695 |
||
5078
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
696 |
void PageOptions::trimNetNick() |
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 |
editNetNick->setText(editNetNick->text().trimmed()); |
3527f0e7bb21
Removing pages.cpp and splitting it up into various files.
Zorg <zorgiepoo@gmail.com>
parents:
diff
changeset
|
699 |
} |
6024 | 700 |
|
6911
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
701 |
void PageOptions::savePwdChanged(int state) { |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
702 |
if (state == 0) { |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
703 |
editNetPassword->setEnabled(false); |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
704 |
editNetPassword->setText(""); |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
705 |
} else |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
706 |
editNetPassword->setEnabled(true); |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
707 |
} |
1cda333286e0
added savepassword checkbox to options page, which now reloads values at every acces
koda
parents:
6700
diff
changeset
|
708 |
|
6024 | 709 |
void PageOptions::requestEditSelectedTeam() |
710 |
{ |
|
711 |
emit editTeamRequested(CBTeamName->currentText()); |
|
712 |
} |
|
713 |
||
714 |
void PageOptions::requestDeleteSelectedTeam() |
|
715 |
{ |
|
716 |
emit deleteTeamRequested(CBTeamName->currentText()); |
|
717 |
} |
|
718 |
||
719 |
void PageOptions::setTeamOptionsEnabled(bool enabled) |
|
720 |
{ |
|
721 |
BtnNewTeam->setVisible(enabled); |
|
722 |
BtnEditTeam->setVisible(enabled); |
|
723 |
BtnDeleteTeam->setVisible(enabled); |
|
724 |
CBTeamName->setVisible(enabled); |
|
725 |
LblNoEditTeam->setVisible(!enabled); |
|
726 |
} |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
727 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
728 |
void PageOptions::colorButtonClicked(int i) |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
729 |
{ |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
730 |
if(i < 0 || i >= m_colorButtons.size()) |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
731 |
return; |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
732 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
733 |
QPalette p = m_colorButtons[i]->palette(); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
734 |
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
|
735 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
736 |
if(c.isValid()) |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
737 |
{ |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
738 |
DataManager::instance().colorsModel()->item(i)->setData(c); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
739 |
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
|
740 |
} |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
741 |
} |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
742 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
743 |
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
|
744 |
{ |
7630
13fa53bb3134
Move some options to the second page so first page doesn't look ugly on low resolution
unc0rr
parents:
7541
diff
changeset
|
745 |
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
|
746 |
|
7541
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
747 |
QStandardItemModel * model = DataManager::instance().colorsModel(); |
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
748 |
|
e51b11349637
Allow customization of colors in ui, store custom colors in config
unc0rr
parents:
7153
diff
changeset
|
749 |
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
|
750 |
} |
7700 | 751 |
|
752 |
void PageOptions::onProxyTypeChanged() |
|
753 |
{ |
|
7703 | 754 |
bool b = cbProxyType->currentIndex() != NoProxy && cbProxyType->currentIndex() != SystemProxy ; |
7700 | 755 |
|
756 |
sbProxyPort->setEnabled(b); |
|
757 |
leProxy->setEnabled(b); |
|
758 |
leProxyLogin->setEnabled(b); |
|
759 |
leProxyPassword->setEnabled(b); |
|
760 |
} |
|
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
761 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
762 |
// Video Recording |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
763 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
764 |
void PageOptions::setConfig(GameUIConfig * config) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
765 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
766 |
this->config = config; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
767 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
768 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
769 |
// 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
|
770 |
void PageOptions::changeAVFormat(int index) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
771 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
772 |
// remember selected codecs |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
773 |
QString prevVCodec = videoCodec(); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
774 |
QString prevACodec = audioCodec(); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
775 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
776 |
// clear lists of codecs |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
777 |
comboVideoCodecs->clear(); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
778 |
comboAudioCodecs->clear(); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
779 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
780 |
// 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
|
781 |
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
|
782 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
783 |
// 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
|
784 |
if (comboAudioCodecs->count() == 0) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
785 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
786 |
checkRecordAudio->setChecked(false); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
787 |
checkRecordAudio->setEnabled(false); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
788 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
789 |
else |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
790 |
checkRecordAudio->setEnabled(true); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
791 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
792 |
// restore selected codecs if possible |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
793 |
int iVCodec = comboVideoCodecs->findData(prevVCodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
794 |
if (iVCodec != -1) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
795 |
comboVideoCodecs->setCurrentIndex(iVCodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
796 |
int iACodec = comboAudioCodecs->findData(prevACodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
797 |
if (iACodec != -1) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
798 |
comboAudioCodecs->setCurrentIndex(iACodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
799 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
800 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
801 |
// 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
|
802 |
void PageOptions::changeUseGameRes(int state) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
803 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
804 |
if (state && config) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
805 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
806 |
// set resolution to game resolution |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
807 |
QRect resolution = config->vid_Resolution(); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
808 |
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
|
809 |
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
|
810 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
811 |
widthEdit->setEnabled(!state); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
812 |
heightEdit->setEnabled(!state); |
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 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
815 |
// user switched checkbox 'record audio' |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
816 |
void PageOptions::changeRecordAudio(int state) |
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 |
comboAudioCodecs->setEnabled(!!state); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
819 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
820 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
821 |
void PageOptions::setDefaultCodecs() |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
822 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
823 |
// 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
|
824 |
// 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
|
825 |
// Windows Media Player TODO |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
826 |
if (tryCodecs("mp4", "libx264", "aac")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
827 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
828 |
if (tryCodecs("mp4", "libx264", "libfaac")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
829 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
830 |
if (tryCodecs("mp4", "libx264", "libmp3lame")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
831 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
832 |
if (tryCodecs("mp4", "libx264", "mp2")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
833 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
834 |
if (tryCodecs("avi", "libxvid", "libmp3lame")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
835 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
836 |
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
|
837 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
838 |
if (tryCodecs("avi", "libxvid", "mp2")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
839 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
840 |
if (tryCodecs("avi", "mpeg4", "libmp3lame")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
841 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
842 |
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
|
843 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
844 |
if (tryCodecs("avi", "mpeg4", "mp2")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
845 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
846 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
847 |
// 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
|
848 |
if (tryCodecs("ogg", "libtheora", "libvorbis")) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
849 |
return; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
850 |
tryCodecs("ogg", "libtheora", "flac"); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
851 |
} |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
852 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
853 |
void PageOptions::setDefaultOptions() |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
854 |
{ |
8192
81da6576b0c3
Make video recording options have fixed size and merge with spinbox->combobox change.
Mitchell Kember <mk12360@gmail.com>
parents:
8151
diff
changeset
|
855 |
framerateBox->setCurrentIndex(2); |
8151
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
856 |
bitrateBox->setValue(1000); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
857 |
checkRecordAudio->setChecked(true); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
858 |
checkUseGameRes->setChecked(true); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
859 |
setDefaultCodecs(); |
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 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
862 |
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
|
863 |
{ |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
864 |
// first we should change format |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
865 |
int iFormat = comboAVFormats->findData(format); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
866 |
if (iFormat == -1) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
867 |
return false; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
868 |
comboAVFormats->setCurrentIndex(iFormat); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
869 |
// 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
|
870 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
871 |
// try to find video codec |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
872 |
int iVCodec = comboVideoCodecs->findData(vcodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
873 |
if (iVCodec == -1) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
874 |
return false; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
875 |
comboVideoCodecs->setCurrentIndex(iVCodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
876 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
877 |
// try to find audio codec |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
878 |
int iACodec = comboAudioCodecs->findData(acodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
879 |
if (iACodec == -1 && checkRecordAudio->isChecked()) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
880 |
return false; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
881 |
if (iACodec != -1) |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
882 |
comboAudioCodecs->setCurrentIndex(iACodec); |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
883 |
|
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
884 |
return true; |
25b95d6224fc
Google Code-in: Move video preferences in settings tab
Mitchell Kember <mk12360@gmail.com>
parents:
8098
diff
changeset
|
885 |
} |