mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2025-02-16 23:31:29 +03:00
104 lines
2.2 KiB
Text
104 lines
2.2 KiB
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
Adw.PreferencesPage page {
|
|
Adw.PreferencesGroup {
|
|
title: "General";
|
|
|
|
Adw.ComboRow {
|
|
title: "Launcher language";
|
|
|
|
model: Gtk.StringList {
|
|
strings [
|
|
"English",
|
|
"German",
|
|
"Russian",
|
|
"French",
|
|
"Chinese"
|
|
]
|
|
};
|
|
|
|
sensitive: false;
|
|
tooltip-text: "Work in progress";
|
|
}
|
|
|
|
Adw.ExpanderRow voiceovers_row {
|
|
title: "Game voiceovers";
|
|
subtitle: "Select voice packages used in game";
|
|
}
|
|
|
|
Gtk.Box {
|
|
orientation: horizontal;
|
|
spacing: 8;
|
|
margin-top: 16;
|
|
|
|
Gtk.Button repair_game {
|
|
label: "Repair game";
|
|
}
|
|
}
|
|
}
|
|
|
|
Adw.PreferencesGroup {
|
|
title: "Status";
|
|
|
|
Adw.ActionRow {
|
|
title: "Game version";
|
|
|
|
Gtk.Label game_version {
|
|
label: "2.7.0";
|
|
|
|
styles ["success"]
|
|
}
|
|
}
|
|
|
|
Adw.ActionRow {
|
|
title: "Patch version";
|
|
|
|
Gtk.Label patch_version {
|
|
label: "2.7.0";
|
|
|
|
styles ["success"]
|
|
}
|
|
}
|
|
}
|
|
|
|
Adw.PreferencesGroup {
|
|
title: "Wine version";
|
|
|
|
Adw.ComboRow wine_selected {
|
|
title: "Selected version";
|
|
}
|
|
|
|
Adw.ActionRow {
|
|
title: "Recommended only";
|
|
subtitle: "Show only recommended wine versions";
|
|
|
|
Gtk.Switch wine_recommended_only {
|
|
valign: center;
|
|
state: true;
|
|
}
|
|
}
|
|
}
|
|
|
|
Adw.PreferencesGroup wine_groups {}
|
|
|
|
Adw.PreferencesGroup {
|
|
title: "DXVK version";
|
|
|
|
Adw.ComboRow dxvk_selected {
|
|
title: "Selected version";
|
|
}
|
|
|
|
Adw.ActionRow {
|
|
title: "Recommended only";
|
|
subtitle: "Show only recommended DXVK versions";
|
|
|
|
Gtk.Switch dxvk_recommended_only {
|
|
valign: center;
|
|
state: true;
|
|
}
|
|
}
|
|
}
|
|
|
|
Adw.PreferencesGroup dxvk_groups {}
|
|
}
|