mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-11-26 06:47:07 +03:00
0990340a2b
- added ability to edit game running command
41 lines
753 B
Text
41 lines
753 B
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
Adw.PreferencesPage page {
|
|
Adw.PreferencesGroup {
|
|
title: "Game command";
|
|
|
|
Gtk.Entry command {
|
|
placeholder-text: "%command%";
|
|
}
|
|
}
|
|
|
|
Adw.PreferencesGroup {
|
|
title: "New variable";
|
|
|
|
Gtk.Box {
|
|
orientation: horizontal;
|
|
spacing: 8;
|
|
|
|
Gtk.Entry name {
|
|
placeholder-text: "Name";
|
|
}
|
|
|
|
Gtk.Entry value {
|
|
placeholder-text: "Value";
|
|
hexpand: true;
|
|
}
|
|
}
|
|
|
|
Gtk.Button add {
|
|
label: "Add";
|
|
|
|
margin-top: 8;
|
|
halign: start;
|
|
}
|
|
}
|
|
|
|
Adw.PreferencesGroup variables {
|
|
title: "Variables";
|
|
}
|
|
}
|