2022-07-29 15:44:48 +03:00
|
|
|
using Gtk 4.0;
|
|
|
|
using Adw 1;
|
|
|
|
|
|
|
|
Gtk.Box page {
|
|
|
|
orientation: vertical;
|
|
|
|
hexpand: true;
|
|
|
|
|
|
|
|
Adw.PreferencesPage {
|
|
|
|
Adw.PreferencesGroup {
|
|
|
|
Gtk.Label {
|
2022-08-04 02:24:25 +03:00
|
|
|
label: "Select voice packages";
|
|
|
|
margin-top: 16;
|
2022-07-29 15:44:48 +03:00
|
|
|
|
|
|
|
styles ["title-1"]
|
|
|
|
}
|
2022-08-04 02:24:25 +03:00
|
|
|
}
|
2022-07-29 15:44:48 +03:00
|
|
|
|
2022-08-04 02:24:25 +03:00
|
|
|
Adw.PreferencesGroup voice_packages_group {
|
|
|
|
vexpand: true;
|
|
|
|
valign: center;
|
2022-07-29 15:44:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Adw.PreferencesGroup {
|
|
|
|
vexpand: true;
|
|
|
|
valign: center;
|
|
|
|
|
|
|
|
Gtk.Box {
|
|
|
|
orientation: horizontal;
|
|
|
|
spacing: 8;
|
|
|
|
halign: center;
|
|
|
|
|
2022-08-04 02:24:25 +03:00
|
|
|
Gtk.Button continue_button {
|
|
|
|
label: "Continue";
|
2022-07-29 15:44:48 +03:00
|
|
|
|
|
|
|
styles ["suggested-action"]
|
|
|
|
}
|
|
|
|
|
|
|
|
Gtk.Button exit_button {
|
|
|
|
label: "Exit";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|