mirror of
https://github.com/PancakeTAS/lsfg-vk.git
synced 2026-07-10 00:31:02 +00:00
18 lines
352 B
Rust
18 lines
352 B
Rust
use gtk::glib;
|
|
use gtk;
|
|
|
|
pub mod entry;
|
|
|
|
glib::wrapper! {
|
|
pub struct Entry(ObjectSubclass<entry::Entry>)
|
|
@extends
|
|
gtk::ListBoxRow, gtk::Widget,
|
|
@implements
|
|
gtk::Accessible, gtk::Actionable, gtk::Buildable, gtk::ConstraintTarget;
|
|
}
|
|
|
|
impl Entry {
|
|
pub fn new() -> Self {
|
|
glib::Object::new()
|
|
}
|
|
}
|