#include "api.hh"
Public Member Functions | |
virtual DeviceP | append_device (const String &uri)=0 |
virtual DeviceP | insert_device (const String &uri, Device &beforesibling)=0 |
virtual bool | is_combo_device ()=0 |
DeviceInfoS | list_device_types () |
virtual void | remove_device (Device &sub)=0 |
![]() | |
virtual void | _activate ()=0 |
virtual AudioProcessorP | _audio_processor () const =0 |
virtual void | _deactivate ()=0 |
virtual void | _disconnect_remove ()=0 |
virtual void | _set_event_source (AudioProcessorP esource)=0 |
Track * | _track () const |
virtual DeviceInfo | device_info ()=0 |
virtual bool | gui_supported ()=0 |
virtual void | gui_toggle ()=0 |
virtual bool | gui_visible ()=0 |
virtual bool | is_active ()=0 |
virtual DeviceS | list_devices ()=0 |
void | remove_self () |
![]() | |
virtual GadgetImpl * | _parent () const =0 |
ProjectImpl * | _project () const |
virtual void | _set_parent (GadgetImpl *parent)=0 |
virtual PropertyS | access_properties ()=0 |
virtual PropertyP | access_property (String ident) |
virtual Value | get_data (const String &key) const =0 |
Value | get_value (String ident) |
virtual StringS | list_properties () |
virtual bool | set_data (const String &key, const Value &v)=0 |
bool | set_value (String ident, const Value &v) |
virtual String | type_nick () const =0 |
![]() | |
virtual void | emit_event (const String &type, const String &detail, const ValueR fields={})=0 |
virtual void | emit_notify (const String &detail)=0 |
void | js_trigger (const String &eventselector, JsTrigger callback) |
virtual ASE_USE_RESULT Connection | on_event (const String &eventselector, const EventHandler &eventhandler)=0 |
Additional Inherited Members | |
![]() | |
Member<&Device::devs_ > | devs |
![]() | |
Member<&Gadget::name_ > | name |
![]() | |
Device () | |
![]() | |
Gadget () | |
virtual bool | name_ (const std::string *n, std::string *q)=0 |
![]() | |
virtual | ~Object ()=0 |
![]() | |
virtual | ~VirtualBase () noexcept=0 |
Interface to access NativeDevice instances.
|
pure virtual |
Retrieve wether this NativeDevice handles sub devices.
Implemented in NativeDeviceImpl.
DeviceInfoS list_device_types | ( | ) |
List registered Device types with their unique uri.
|
pure virtual |
Remove a directly contained device.
Implemented in NativeDeviceImpl.
|
pure virtual |
Append a new device, see list_device_types().
Implemented in NativeDeviceImpl.
Insert a new device, before `beforesibling`.
Implemented in NativeDeviceImpl.