mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-06 16:50:12 +01:00
Add AutomationCommands class
- AutomationCommands replaces GetAllMenuCommands, and can provide information about menus, buttons and toolbars to a script. - BatchCommands can now return textual results to a script. - There's a new GUID for mod-script-pipe and it is included in the .sln.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
@@ -399,7 +399,7 @@
|
||||
<ClCompile Include="..\..\..\src\commands\CommandType.cpp" />
|
||||
<ClCompile Include="..\..\..\src\commands\CompareAudioCommand.cpp" />
|
||||
<ClCompile Include="..\..\..\src\commands\ExecMenuCommand.cpp" />
|
||||
<ClCompile Include="..\..\..\src\commands\GetAllMenuCommands.cpp" />
|
||||
<ClCompile Include="..\..\..\src\commands\AutomationCommands.cpp" />
|
||||
<ClCompile Include="..\..\..\src\commands\GetProjectInfoCommand.cpp" />
|
||||
<ClCompile Include="..\..\..\src\commands\GetTrackInfoCommand.cpp" />
|
||||
<ClCompile Include="..\..\..\src\commands\HelpCommand.cpp" />
|
||||
@@ -749,7 +749,7 @@
|
||||
<ClInclude Include="..\..\..\src\commands\CommandType.h" />
|
||||
<ClInclude Include="..\..\..\src\commands\CompareAudioCommand.h" />
|
||||
<ClInclude Include="..\..\..\src\commands\ExecMenuCommand.h" />
|
||||
<ClInclude Include="..\..\..\src\commands\GetAllMenuCommands.h" />
|
||||
<ClInclude Include="..\..\..\src\commands\AutomationCommands.h" />
|
||||
<ClInclude Include="..\..\..\src\commands\GetProjectInfoCommand.h" />
|
||||
<ClInclude Include="..\..\..\src\commands\GetTrackInfoCommand.h" />
|
||||
<ClInclude Include="..\..\..\src\commands\HelpCommand.h" />
|
||||
@@ -1218,4 +1218,4 @@
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
<Import Project="..\..\ny.targets" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
@@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="src">
|
||||
@@ -683,9 +683,6 @@
|
||||
<ClCompile Include="..\..\..\src\commands\ExecMenuCommand.cpp">
|
||||
<Filter>src\commands</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\src\commands\GetAllMenuCommands.cpp">
|
||||
<Filter>src\commands</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\src\commands\GetProjectInfoCommand.cpp">
|
||||
<Filter>src\commands</Filter>
|
||||
</ClCompile>
|
||||
@@ -1061,6 +1058,9 @@
|
||||
<ClCompile Include="..\..\..\src\tracks\playabletrack\notetrack\ui\NoteTrackSliderHandles.cpp">
|
||||
<Filter>src\tracks\playabletrack\notetrack\ui</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\src\commands\AutomationCommands.cpp">
|
||||
<Filter>src\commands</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\..\src\AboutDialog.h">
|
||||
@@ -1669,9 +1669,6 @@
|
||||
<ClInclude Include="..\..\..\src\commands\ExecMenuCommand.h">
|
||||
<Filter>src\commands</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\src\commands\GetAllMenuCommands.h">
|
||||
<Filter>src\commands</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\src\commands\GetProjectInfoCommand.h">
|
||||
<Filter>src\commands</Filter>
|
||||
</ClInclude>
|
||||
@@ -2116,6 +2113,9 @@
|
||||
<ClInclude Include="..\..\..\src\tracks\playabletrack\notetrack\ui\NoteTrackSliderHandles.h">
|
||||
<Filter>src\tracks\playabletrack\notetrack\ui</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\src\commands\AutomationCommands.h">
|
||||
<Filter>src\commands</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Image Include="..\..\audacity.ico">
|
||||
@@ -2339,4 +2339,4 @@
|
||||
<Filter>plug-ins</Filter>
|
||||
</copy>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user