Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
bbeb9f1d
There was an error fetching the commit references. Please try again later.
Commit
bbeb9f1d
authored
7 years ago
by
Kloen
Browse files
Options
Downloads
Patches
Plain Diff
citra-qt: add new uisetting->theme
parent
6d436d7a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/citra_qt/configuration/config.cpp
+2
-0
2 additions, 0 deletions
src/citra_qt/configuration/config.cpp
src/citra_qt/ui_settings.h
+7
-0
7 additions, 0 deletions
src/citra_qt/ui_settings.h
with
9 additions
and
0 deletions
src/citra_qt/configuration/config.cpp
+
2
−
0
View file @
bbeb9f1d
...
...
@@ -134,6 +134,7 @@ void Config::ReadValues() {
qt_config
->
endGroup
();
qt_config
->
beginGroup
(
"UI"
);
UISettings
::
values
.
theme
=
qt_config
->
value
(
"theme"
,
UISettings
::
themes
[
0
].
second
).
toString
();
qt_config
->
beginGroup
(
"UILayout"
);
UISettings
::
values
.
geometry
=
qt_config
->
value
(
"geometry"
).
toByteArray
();
...
...
@@ -269,6 +270,7 @@ void Config::SaveValues() {
qt_config
->
endGroup
();
qt_config
->
beginGroup
(
"UI"
);
qt_config
->
setValue
(
"theme"
,
UISettings
::
values
.
theme
);
qt_config
->
beginGroup
(
"UILayout"
);
qt_config
->
setValue
(
"geometry"
,
UISettings
::
values
.
geometry
);
...
...
This diff is collapsed.
Click to expand it.
src/citra_qt/ui_settings.h
+
7
−
0
View file @
bbeb9f1d
...
...
@@ -4,6 +4,7 @@
#pragma once
#include
<array>
#include
<vector>
#include
<QByteArray>
#include
<QString>
...
...
@@ -14,6 +15,10 @@ namespace UISettings {
using
ContextualShortcut
=
std
::
pair
<
QString
,
int
>
;
using
Shortcut
=
std
::
pair
<
QString
,
ContextualShortcut
>
;
static
const
std
::
array
<
std
::
pair
<
QString
,
QString
>
,
2
>
themes
=
{
{
std
::
make_pair
(
QString
(
"Default"
),
QString
(
"default"
)),
std
::
make_pair
(
QString
(
"Dark"
),
QString
(
"qdarkstyle"
))}};
struct
Values
{
QByteArray
geometry
;
QByteArray
state
;
...
...
@@ -39,6 +44,8 @@ struct Values {
bool
gamedir_deepscan
;
QStringList
recent_files
;
QString
theme
;
// Shortcut name <Shortcut, context>
std
::
vector
<
Shortcut
>
shortcuts
;
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment