2#include <ossia/detail/config.hpp>
4#include <ossia/network/context_functions.hpp>
10#include <ossia/detail/hash_map.hpp>
25class multiplex_protocol;
31using qpointer_set = ossia::hash_map<T*, QPointer<T>>;
37class qml_property_reader;
38class qml_property_writer;
39class qml_model_property;
43class OSSIA_EXPORT qml_device :
public QObject
47 qml_device(QObject* parent =
nullptr);
50 void timerEvent(QTimerEvent* ev);
56 bool readPreset()
const;
58 void add(qml_node* n);
59 void remove(qml_node* n);
60 void add(qml_property* n);
61 void remove(qml_property* n);
62 void add(qml_parameter* n);
63 void remove(qml_parameter* n);
64 void add(qml_signal* n);
65 void remove(qml_signal* n);
67 void add(qml_property_reader* n);
68 void remove(qml_property_reader* n);
69 void add(qml_property_writer* n);
70 void remove(qml_property_writer* n);
71 void add(qml_model_property* n);
72 void remove(qml_model_property* n);
73 void add(qml_binding* n);
74 void remove(qml_binding* n);
75 void add(qml_callback* n);
76 void remove(qml_callback* n);
80 const qpointer_set<qml_model_property>& models()
const {
return m_models; }
82 bool openOSC(
const QString& ip,
int localPort,
int remotePort);
84 bool openOSCQueryServer(
int WSport,
int oscPort);
85 W_INVOKABLE(openOSCQueryServer)
86 bool openOSCQueryClient(
const QString& address,
int localOscPort);
87 W_INVOKABLE(openOSCQueryClient)
88 bool openMIDIInputDevice(
int device);
89 W_INVOKABLE(openMIDIInputDevice)
90 bool openMIDIOutputDevice(
int device);
91 W_INVOKABLE(openMIDIOutputDevice)
92 QVariantMap getMIDIInputDevices()
const;
93 W_INVOKABLE(getMIDIInputDevices)
94 QVariantMap getMIDIOutputDevices()
const;
95 W_INVOKABLE(getMIDIOutputDevices)
97 void recreate(QObject* root);
99 void remap(QObject* root);
102 void setReadPreset(
bool readPreset);
103 W_INVOKABLE(setReadPreset)
105 void savePreset(
const QUrl& file);
106 W_INVOKABLE(savePreset)
107 void loadPreset(QObject* root,
const QString& file);
108 W_INVOKABLE(loadPreset)
109 void saveDevice(
const QUrl& file);
110 W_INVOKABLE(saveDevice)
112 void setName(QString name);
118 void readPresetChanged(
bool readPreset)
119 E_SIGNAL(OSSIA_EXPORT, readPresetChanged, readPreset)
121 void presetFinishedLoading() E_SIGNAL(
122 OSSIA_EXPORT, presetFinishedLoading)
void presetFailedLoading(QString err)
123 E_SIGNAL(OSSIA_EXPORT, presetFailedLoading, err)
125 void nameChanged(QString name)
126 E_SIGNAL(OSSIA_EXPORT, nameChanged, name)
130 readPreset READ readPreset WRITE setReadPreset NOTIFY
135 name READ name WRITE setName NOTIFY nameChanged,
138 private :
void setupLocal();
139 void clearEmptyElements();
141 QString m_name{
"device"};
142 ossia::net::network_context_ptr m_context;
144 std::unique_ptr<ossia::net::device_base> m_device;
146 qpointer_set<qml_node> m_nodes;
147 qpointer_set<qml_property> m_properties;
148 qpointer_set<qml_parameter> m_parameters;
149 qpointer_set<qml_signal> m_signals;
150 qpointer_set<qml_property_reader> m_reader_properties;
151 qpointer_set<qml_property_writer> m_writer_properties;
152 qpointer_set<qml_model_property> m_models;
153 qpointer_set<qml_binding> m_bindings;
154 qpointer_set<qml_callback> m_callbacks;
155 bool m_readPreset{
false};
156 bool m_loadingPreset{
false};
157 void recreate_preset(QObject* root);
160class OSSIA_EXPORT qml_singleton_device :
public qml_device
162 W_OBJECT(qml_singleton_device)
164 static qml_singleton_device& instance();
167 qml_singleton_device();
168 ~qml_singleton_device();
172W_REGISTER_ARGTYPE(ossia::qt::qml_device*)
Root of a device tree.
Definition ossia/network/base/device.hpp:58
A protocol used to expose a local application's data through multiple other protocols.
Definition local.hpp:22