mirror of
https://github.com/Xetibo/ReSet.git
synced 2025-04-18 18:48:33 +02:00
16 lines
408 B
Rust
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()
|
|
}
|
|
}
|