using Gtk 4.0; using Adw 1; template $PreferencesWindow : Adw.PreferencesWindow { default-height: 500; Adw.PreferencesPage general_page { name: "general"; title: _("General"); icon-name: "user-home-symbolic"; Adw.PreferencesGroup behavior_group { title: _("Behavior"); Adw.ActionRow { title: _("Exit After Launching Games"); activatable-widget: exit_after_launch_switch; Switch exit_after_launch_switch { valign: center; } } Adw.ActionRow { title: _("Cover Image Launches Game"); subtitle: _("Swaps the behavior of the cover image and the play button"); activatable-widget: cover_launches_game_switch; Switch cover_launches_game_switch { valign: center; } } } Adw.PreferencesGroup images_group { title: _("Images"); Adw.ActionRow { title: _("High Quality Images"); subtitle: _("Save game covers losslessly at the cost of storage"); activatable-widget: high_quality_images_switch; Switch high_quality_images_switch { valign: center; } } } Adw.PreferencesGroup danger_zone_group { title: _("Danger Zone"); Adw.ActionRow { title: _("Remove All Games"); Button remove_all_games_button { label: _("Remove"); valign: center; styles [ "destructive-action", ] } } Adw.ActionRow reset_action_row { title: "Reset App"; subtitle: "Completely resets and quits Cartridges"; visible: false; Button reset_button { label: "Reset"; valign: center; styles [ "destructive-action", ] } } } } Adw.PreferencesPage import_page { name: "import"; title: _("Import"); icon-name: "document-save-symbolic"; Adw.PreferencesGroup sources_group { title: _("Sources"); Adw.ExpanderRow steam_expander_row { title: _("Steam"); show-enable-switch: true; Adw.ActionRow steam_data_action_row { title: _("Install Location"); Button steam_data_file_chooser_button { icon-name: "folder-symbolic"; valign: center; } } } Adw.ExpanderRow lutris_expander_row { title: _("Lutris"); show-enable-switch: true; Adw.ActionRow lutris_data_action_row { title: _("Install Location"); Button lutris_data_file_chooser_button { icon-name: "folder-symbolic"; valign: center; } } Adw.ActionRow lutris_cache_action_row { title: _("Cache Location"); Button lutris_cache_file_chooser_button { icon-name: "folder-symbolic"; valign: center; } } Adw.ActionRow { title: _("Import Steam Games"); activatable-widget: lutris_import_steam_switch; Switch lutris_import_steam_switch { valign: center; } } Adw.ActionRow { title: _("Import Flatpak Games"); activatable-widget: lutris_import_flatpak_switch; Switch lutris_import_flatpak_switch { valign: center; } } } Adw.ExpanderRow heroic_expander_row { title: _("Heroic"); show-enable-switch: true; Adw.ActionRow heroic_config_action_row { title: _("Install Location"); Button heroic_config_file_chooser_button { icon-name: "folder-symbolic"; valign: center; } } Adw.ActionRow { title: _("Import Epic Games"); activatable-widget: heroic_import_epic_switch; Switch heroic_import_epic_switch { valign: center; } } Adw.ActionRow { title: _("Import GOG Games"); activatable-widget: heroic_import_gog_switch; Switch heroic_import_gog_switch { valign: center; } } Adw.ActionRow { title: _("Import Amazon Games"); activatable-widget: heroic_import_amazon_switch; Switch heroic_import_amazon_switch { valign: center; } } Adw.ActionRow { title: _("Import Sideloaded Games"); activatable-widget: heroic_import_sideload_switch; Switch heroic_import_sideload_switch { valign: center; } } } Adw.ExpanderRow bottles_expander_row { title: _("Bottles"); show-enable-switch: true; Adw.ActionRow bottles_data_action_row { title: _("Install Location"); Button bottles_data_file_chooser_button { icon-name: "folder-symbolic"; valign: center; } } } Adw.ExpanderRow itch_expander_row { title: _("itch"); show-enable-switch: true; Adw.ActionRow itch_config_action_row { title: _("Install Location"); Button itch_config_file_chooser_button { icon-name: "folder-symbolic"; valign: center; } } } Adw.ExpanderRow legendary_expander_row { title: _("Legendary"); show-enable-switch: true; Adw.ActionRow legendary_config_action_row { title: _("Install Location"); Button legendary_config_file_chooser_button { icon-name: "folder-symbolic"; valign: center; } } } Adw.ExpanderRow flatpak_expander_row { title: _("Flatpak"); show-enable-switch: true; Adw.ActionRow flatpak_data_action_row { title: _("Install Location"); Button flatpak_data_file_chooser_button { icon-name: "folder-symbolic"; valign: center; } } Adw.ActionRow flatpak_import_launchers_row { title: _("Import Game Launchers"); activatable-widget: flatpak_import_launchers_switch; Switch flatpak_import_launchers_switch { valign: center; } } } } } Adw.PreferencesPage sgdb_page { name: "sgdb"; title: _("SteamGridDB"); icon-name: "image-x-generic-symbolic"; Adw.PreferencesGroup sgdb_key_group { title: _("Authentication"); Adw.EntryRow sgdb_key_entry_row { title: _("API Key"); } } Adw.PreferencesGroup sgdb_behavior_group { title: _("Behavior"); Adw.ActionRow sgdb_switch_row { title: _("Use SteamGridDB"); subtitle: _("Download images when adding or importing games"); activatable-widget: sgdb_switch; Switch sgdb_switch { valign: center; } } Adw.ActionRow { title: _("Prefer Over Official Images"); activatable-widget: sgdb_prefer_switch; Switch sgdb_prefer_switch { valign: center; } } Adw.ActionRow { title: _("Prefer Animated Images"); activatable-widget: sgdb_animated_switch; Switch sgdb_animated_switch { valign: center; } } } } }