the-honkers-railway-launcher/assets/ui/preferences/general.blp

105 lines
2.2 KiB
Text
Raw Normal View History

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";
}
2022-07-02 16:03:32 +00:00
Adw.ExpanderRow voiceovers_row {
2022-07-02 16:03:32 +00:00
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 {
2022-07-04 05:33:55 +00:00
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 {
2022-07-04 05:33:55 +00:00
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 {}
}