5#include <ossia/preset/cue.hpp>
7#include <ossia-max/src/object_base.hpp>
9#include <ossia-max/src/search_filter.hpp>
10#include <rapidjson/stringbuffer.h>
21 static t_class* max_class;
22 t_symbol* m_device_name = _sym_nothing;
24 void create(
int argc, t_atom* argv);
25 void update(
int argc, t_atom* argv);
26 void remove(
int argc, t_atom* argv);
27 void rename(
int argc, t_atom* argv);
29 void move(
int argc, t_atom* argv);
30 void output(
int argc, t_atom* argv);
31 void read(
int argc, t_atom* argv);
32 void write(
int argc, t_atom* argv);
33 void edit(
int argc, t_atom* argv);
34 void sort(
int argc, t_atom* argv);
38 void explore(
int argc, t_atom* argv);
39 void do_explore(t_symbol* name);
41 void recall(
int argc, t_atom* argv);
42 void recall_next(
int argc, t_atom* argv);
43 void recall_previous(
int argc, t_atom* argv);
45 void display_model(
int argc, t_atom* argv);
46 void do_display_model(std::string_view);
47 void select_model(
int argc, t_atom* argv);
48 void select(
int argc, t_atom* argv);
51 void selection_dump();
52 void selection_add(
int argc, t_atom* argv);
53 void selection_switch(
int argc, t_atom* argv);
54 void selection_filter_all(
int argc, t_atom* argv);
55 void selection_filter_any(
int argc, t_atom* argv);
56 void selection_remove(
int argc, t_atom* argv);
57 void selection_grab(
int argc, t_atom* argv);
61 void filter_add(
int argc, t_atom* argv);
62 void filter_filter_all(
int argc, t_atom* argv);
63 void filter_filter_any(
int argc, t_atom* argv);
64 void filter_remove(
int argc, t_atom* argv);
65 void filter_grab(
int argc, t_atom* argv);
67 void do_registration();
70 void update_selection();
73 t_max_err get_device_name(
long* ac, t_atom** av);
74 t_max_err set_device_name(
long ac, t_atom* av);
76 static
void in_long(ocue* x,
long argc);
77 static
void reset(ocue* x);
78 static
void free(ocue* x);
79 static
void closebang(ocue* x);
80 static t_max_err notify(ocue* x, t_symbol* s, t_symbol* msg,
void* sender,
void* data);
82 static
void assist(ocue* x,
void* b,
long m,
long a,
char* s);
84 template <typename... T>
85 void dump_message(std::string_view str, T&&...);
86 void dump_message(std::string_view msg, const std::vector<std::string_view>& t);
88 std::shared_ptr<
ossia::cues> m_cues;
89 namespace_selection m_ns;
90 namespace_selection m_filter;
91 std::
string m_last_filename;
92 t_symbol* m_last_explore{_sym_nothing};
Root of a device tree.
Definition ossia/network/base/device.hpp:58