ReSet/src/components/output/audioSource.rs
takotori 35c58e2fcd Implement Microphone UI
Improve Audio UI
You won't believe what happened (gone sexual)
2023-11-12 17:43:01 +01:00

16 lines
408 B
Rust

use adw::glib;
use adw::glib::Object;
use crate::components::output::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()
}
}