mirror of
https://github.com/an-anime-team/sleepy-launcher.git
synced 2024-11-22 21:02:44 +03:00
82691f70f9
- renamed "page_*" to some actual pages names - added voice packages selection page - made "Advanced" button working. It shows default paths selection page
47 lines
1.1 KiB
Text
47 lines
1.1 KiB
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
Gtk.Box page {
|
|
orientation: vertical;
|
|
hexpand: true;
|
|
|
|
Adw.PreferencesPage {
|
|
Adw.PreferencesGroup {
|
|
Gtk.Label {
|
|
label: "Downloading finished!";
|
|
margin-top: 64;
|
|
|
|
styles ["title-1"]
|
|
}
|
|
|
|
Gtk.Label {
|
|
label: "All the basic components were downloaded. Now you can restart the launcher and download the game. Welcome to our club!";
|
|
|
|
wrap: true;
|
|
justify: center;
|
|
margin-top: 32;
|
|
}
|
|
}
|
|
|
|
Adw.PreferencesGroup {
|
|
vexpand: true;
|
|
valign: center;
|
|
|
|
Gtk.Box {
|
|
orientation: horizontal;
|
|
spacing: 8;
|
|
halign: center;
|
|
|
|
Gtk.Button restart_button {
|
|
label: "Restart";
|
|
|
|
styles ["suggested-action"]
|
|
}
|
|
|
|
Gtk.Button exit_button {
|
|
label: "Exit";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|