mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-04-18 18:48:33 +02:00
16 lines
417 B
Rust
16 lines
417 B
Rust
use crate::components::input::inputStreamEntryImpl;
|
|
use adw::glib;
|
|
use adw::glib::Object;
|
|
|
|
glib::wrapper! {
|
|
pub struct InputStreamEntry(ObjectSubclass<inputStreamEntryImpl::InputStreamEntry>)
|
|
@extends gtk::Box, gtk::Widget,
|
|
@implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget, gtk::Orientable;
|
|
}
|
|
|
|
impl InputStreamEntry {
|
|
pub fn new() -> Self {
|
|
Object::builder().build()
|
|
}
|
|
}
|