learn-hieroglyphs/src/ui/cards/setup/imp.rs

42 lines
1.1 KiB
Rust
Raw Normal View History

2024-04-01 15:42:50 +03:00
use glib::subclass::InitializingObject;
use gtk::subclass::prelude::*;
2024-04-23 18:20:03 +03:00
use gtk::{glib, Button, CompositeTemplate};
2024-04-01 15:42:50 +03:00
#[derive(CompositeTemplate, Default)]
#[template(resource = "/org/foxarmy/learn-hieroglyph/cards/setup/ui.xml")]
2024-04-01 15:42:50 +03:00
pub struct MemoryCardsSetupScene {
#[template_child]
pub edit_button: TemplateChild<Button>,
#[template_child]
2024-04-02 15:23:56 +03:00
pub start_button: TemplateChild<Button>,
2024-04-10 20:25:02 +03:00
#[template_child]
pub back_button: TemplateChild<Button>,
2024-04-01 15:42:50 +03:00
}
#[glib::object_subclass]
impl ObjectSubclass for MemoryCardsSetupScene {
const NAME: &'static str = "MemoryCardsSetupScene";
type Type = super::MemoryCardsSetupScene;
type ParentType = gtk::ApplicationWindow;
fn class_init(klass: &mut Self::Class) {
klass.bind_template();
}
fn instance_init(obj: &InitializingObject<Self>) {
obj.init_template();
}
}
impl ObjectImpl for MemoryCardsSetupScene {
fn constructed(&self) {
2024-04-23 18:20:03 +03:00
self.parent_constructed();
2024-04-01 15:42:50 +03:00
}
}
impl WidgetImpl for MemoryCardsSetupScene {}
impl WindowImpl for MemoryCardsSetupScene {}
2024-04-02 15:23:56 +03:00
impl ApplicationWindowImpl for MemoryCardsSetupScene {}