Adding switches for matériels

This commit is contained in:
Pcornat 2024-10-29 20:23:15 +01:00
parent ae3c7d496a
commit 91180411ab
Signed by: Pcornat
GPG key ID: E0326CC678A00BDD
2 changed files with 65 additions and 0 deletions

View file

@ -8,6 +8,10 @@ namespace learn_gtkmm4 {
class HelloWorld;
}
namespace Gtk {
class Switch;
}
namespace gui_to_app {
class AppWin2Back final : public Gtk::Application {
@ -27,6 +31,20 @@ namespace gui_to_app {
void on_quit();
learn_gtkmm4::HelloWorld *main_window{ nullptr };
Gtk::Switch *sword_switch{ nullptr };
Gtk::Switch *lance_switch{ nullptr };
Gtk::Switch *morgen_switch{ nullptr };
Gtk::Switch *bow_switch{ nullptr };
Gtk::Switch *chainmail_switch{ nullptr };
Gtk::Switch *cookpot_switch{ nullptr };
Gtk::Switch *pamphlet_switch{ nullptr };
Gtk::Switch *medkit_switch{ nullptr };
Gtk::Switch *fourche_switch{ nullptr };
Gtk::Switch *dagger_switch{ nullptr };
Gtk::Switch *rock_kit_switch{ nullptr };
Gtk::Switch *sack_switch{ nullptr };
};
} // gui_to_app