ReSet/src/components/audio/audioSource.rs
2023-10-30 19:43:50 +01:00

16 lines
407 B
Rust

use adw::glib;
use adw::glib::Object;
use crate::components::audio::audioSourceImpl;
glib::wrapper! {
pub struct AudioSourceEntry(ObjectSubclass<audioSourceImpl::AudioSourceEntry>)
@extends gtk::Box, gtk::Widget,
@implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget, gtk::Orientable;
}
impl AudioSourceEntry {
pub fn new() -> Self {
Object::builder().build()
}
}