1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

2582 enh repeat last process (#722)

* Enhancement: Add Repeat Last Process

* add include UndoManager.h
This commit is contained in:
JohnColket
2021-01-15 09:22:38 -05:00
committed by GitHub
parent 8aaecdc596
commit 549dacf054
6 changed files with 177 additions and 13 deletions

View File

@@ -30,6 +30,7 @@ class ViewInfo;
enum EffectType : int;
typedef wxString PluginID;
typedef wxString MacroID;
typedef wxArrayString PluginIDs;
namespace Registry{ class Visitor; }
@@ -48,7 +49,11 @@ public:
CommandFlag mLastFlags;
// Last effect applied to this project
PluginID mLastGenerator{};
PluginID mLastEffect{};
PluginID mLastAnalyzer{};
PluginID mLastTool{};
bool mLastToolIsMacro;
};
struct ToolbarMenuVisitor;