2024-04-01 15:42:50 +03:00
|
|
|
use glib::subclass::InitializingObject;
|
|
|
|
use gtk::subclass::prelude::*;
|
|
|
|
use gtk::{glib, Button, CompositeTemplate};
|
|
|
|
|
|
|
|
#[derive(CompositeTemplate, Default)]
|
2024-04-01 23:46:13 +03:00
|
|
|
#[template(resource = "/org/foxarmy/learn-hieroglyph/cards/settings/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-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) {
|
|
|
|
self.parent_constructed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl WidgetImpl for MemoryCardsSetupScene {}
|
|
|
|
|
|
|
|
impl WindowImpl for MemoryCardsSetupScene {}
|
|
|
|
|
2024-04-02 15:23:56 +03:00
|
|
|
impl ApplicationWindowImpl for MemoryCardsSetupScene {}
|