11namespace tracktion {
inline namespace engine
14const char* TextPlugin::xmlTypeName (
"text");
16TextPlugin::TextPlugin (PluginCreationInfo info) : Plugin (info)
18 auto um = getUndoManager();
20 textTitle.referTo (state, IDs::title, um);
21 textBody.referTo (state, IDs::body, um);
24TextPlugin::~TextPlugin()
26 notifyListenersOfDeletion();
31 return createValueTree (IDs::PLUGIN,
32 IDs::type, xmlTypeName);