2#include <ossia/detail/config.hpp>
4#include <ossia/detail/hash_map.hpp>
5#include <ossia/network/common/parameter_properties.hpp>
6#include <ossia/network/value/value.hpp>
7#include <ossia/preset/preset.hpp>
9#include <nano_observer.hpp>
23 ossia::presets::preset preset;
26struct selection_filters
28 std::vector<std::string> selection;
29 std::vector<ossia::val_type> type;
30 std::vector<ossia::access_mode> access;
31 std::vector<ossia::bounding_mode> bounding;
32 std::vector<std::string>
tags;
39 std::optional<visibility_t> visibility;
42class OSSIA_EXPORT namespace_selection : Nano::Observer
47 void namespace_select(std::string_view pat);
48 void namespace_deselect(std::string_view pat);
49 void namespace_switch(std::string_view pat);
50 void namespace_filter_all(
const selection_filters& pat);
51 void namespace_filter_any(
const selection_filters& pat);
52 void namespace_grab(std::string_view pat);
59 ossia::hash_set<ossia::net::node_base*> m_selection;
62class OSSIA_EXPORT cues
65 std::vector<cue> m_cues{{.name{
"Init"}, .preset = {}}};
67 int size() const noexcept {
return this->m_cues.size(); }
69 int current_index() const noexcept {
return m_current; }
70 cue* current_cue() noexcept {
71 if(has_cue(m_current))
72 return &this->m_cues[m_current];
76 cue* get_cue(
int idx)
noexcept
78 return (idx >= 0 && idx < std::ssize(this->m_cues)) ? &this->m_cues[idx] :
nullptr;
80 std::optional<int> find_cue(std::string_view name);
81 int get_cue(std::string_view name);
83 void create(std::string_view name);
93 void remove(std::string_view name);
98 void rename(std::string_view oldname, std::string_view newname);
99 void rename(
int idx, std::string_view newname);
100 void rename(std::string_view newname);
102 void move(std::string_view name,
int index);
103 void move(
int from,
int to);
105 void output(std::string_view name);
106 void output(std::string_view name, std::string_view pattern);
108 bool has_cue(
int cue)
const noexcept;
Root of a device tree.
Definition ossia/network/base/device.hpp:58
The node_base class.
Definition node.hpp:48
std::vector< std::string > tags
Tags applied to a node: {"model", "interesting", ...}.
Definition node_attributes.hpp:71