Home
last modified time | relevance | path

Searched refs:historable (Results 1 – 15 of 15) sorted by relevance

/dports/audio/traverso/traverso-0.49.6/src/plugins/
H A DPluginChain.cpp100 Command* PluginChain::add_plugin(Plugin * plugin, bool historable) in add_plugin() argument
104 return new AddRemove( this, plugin, historable, m_sheet, in add_plugin()
111 Command* PluginChain::remove_plugin(Plugin* plugin, bool historable) in remove_plugin() argument
113 return new AddRemove( this, plugin, historable, m_sheet, in remove_plugin()
H A DPluginChain.h47 Command* add_plugin(Plugin* plugin, bool historable=true);
48 Command* remove_plugin(Plugin* plugin, bool historable=true);
/dports/audio/traverso/traverso-0.49.6/src/core/
H A DTimeLine.cpp74 Command * TimeLine::add_marker(Marker* marker, bool historable)
79 cmd = new AddRemove(this, marker, historable, m_sheet,
93 Command* TimeLine::remove_marker(Marker* marker, bool historable)
96 cmd = new AddRemove(this, marker, historable, m_sheet,
H A DTimeLine.h54 Command* add_marker(Marker* marker, bool historable=true);
55 Command* remove_marker(Marker* marker, bool historable=true);
H A DCurve.h57 Command* add_node(CurveNode* node, bool historable=true);
58 Command* remove_node(CurveNode* node, bool historable=true);
H A DProject.h88 Command* add_sheet(Sheet* sheet, bool historable=true);
89 Command* remove_sheet(Sheet* sheet, bool historable=true);
H A DTrack.h57 Command* add_clip(AudioClip* clip, bool historable=true, bool ismove=false);
60 Command* remove_clip(AudioClip* clip, bool historable=true, bool ismove=false);
H A DTrack.cpp213 Command* Track::remove_clip(AudioClip* clip, bool historable, bool ismove)
219 return new AddRemove(this, clip, historable, m_sheet,
226 Command* Track::add_clip(AudioClip* clip, bool historable, bool ismove)
233 return new AddRemove(this, clip, historable, m_sheet,
H A DCurve.cpp691 Command* Curve::add_node(CurveNode* node, bool historable) in add_node() argument
705 cmd = new AddRemove(this, node, historable, m_sheet, in add_node()
729 Command* Curve::remove_node(CurveNode* node, bool historable) in remove_node() argument
744 cmd = new AddRemove(this, node, historable, m_sheet, in remove_node()
H A DProject.cpp438 Command* Project::add_sheet(Sheet* sheet, bool historable) in add_sheet() argument
443 cmd = new AddRemove(this, sheet, historable, 0, in add_sheet()
513 Command* Project::remove_sheet(Sheet* sheet, bool historable) in remove_sheet() argument
516 cmd = new AddRemove(this, sheet, historable, 0, in remove_sheet()
H A DSheet.h141 Command* add_track(Track* track, bool historable=true);
142 Command* remove_track(Track* track, bool historable=true);
H A DSheet.cpp335 Command* Sheet::add_track(Track* track, bool historable) in add_track() argument
344 return new AddRemove(this, track, historable, this, in add_track()
351 Command* Sheet::remove_track(Track* track, bool historable) in remove_track() argument
353 return new AddRemove(this, track, historable, this, in remove_track()
/dports/audio/traverso/traverso-0.49.6/src/commands/
H A DCommandGroup.h33 CommandGroup(ContextItem* parent, const QString& des, bool historable=true)
36 m_isHistorable = historable; in Command()
H A DAddRemove.cpp159 bool historable, in AddRemove() argument
176 m_isHistorable = historable; in AddRemove()
H A DAddRemove.h38 bool historable,