2#include <ossia-max/src/object_base.hpp>
9class parameter_base :
public object_base
12 static void update_attribute(
13 parameter_base* x, ossia::string_view attribute,
16 notify(parameter_base* x, t_symbol* s, t_symbol* msg,
void* sender,
void* data);
20 void output_values(
bool only_default);
23 void set_access_mode();
24 void set_repetition_filter();
29 void set_bounding_mode();
36 static void class_setup(t_class* c);
38 static void get_mess_cb(parameter_base* x, t_symbol* s);
39 static void get_unit(parameter_base* x, std::vector<matcher*> nodes);
40 static void get_rate(parameter_base* x, std::vector<matcher*> nodes);
41 static void get_mute(parameter_base* x, std::vector<matcher*> nodes);
42 static void get_domain(parameter_base* x, std::vector<matcher*> nodes);
43 static void get_min(parameter_base* x, std::vector<matcher*> nodes);
44 static void get_max(parameter_base* x, std::vector<matcher*> nodes);
45 static void get_bounding_mode(parameter_base* x, std::vector<matcher*> nodes);
46 static void get_default(parameter_base* x, std::vector<matcher*> nodes);
47 static void get_type(parameter_base* x, std::vector<matcher*> nodes);
48 static void get_access_mode(parameter_base* x, std::vector<matcher*> nodes);
49 static void get_repetition_filter(parameter_base* x, std::vector<matcher*> nodes);
50 static void get_critical(parameter_base* x, std::vector<matcher*> nodes);
51 static void get_enable(parameter_base* x, std::vector<matcher*> nodes);
55 t_atom m_default[OSSIA_MAX_MAX_ATTR_SIZE] = {{}};
56 t_atom m_min[OSSIA_MAX_MAX_ATTR_SIZE] = {{}};
57 t_atom m_max[OSSIA_MAX_MAX_ATTR_SIZE] = {{}};
58 t_atom m_range[OSSIA_MAX_MAX_ATTR_SIZE] = {{}};
59 t_symbol* m_bounding_mode{};
60 t_symbol* m_access_mode{};
61 long m_repetitions{1};
66 std::optional<ossia::unit_t> m_local_unit;
69 long m_default_size{};
82 static void push(parameter_base* x, t_symbol*,
int argc, t_atom* argv);
87 static void push_one(parameter_base* x, t_symbol* s,
int argc, t_atom* argv);
93 static void bang(parameter_base* x);
94 static void push_default_value(parameter_base* x);
96 static void set(parameter_base* x, t_symbol* s,
int argc, t_atom* argv);
97 static void in_float(parameter_base* x,
double f);
98 static void in_int(parameter_base* x,
long int f);
99 static void in_symbol(parameter_base* x, t_symbol* f);
The node_base class.
Definition node.hpp:48