diff --git a/locale/POTFILES.in b/locale/POTFILES.in index 66e2060b7..912f13194 100644 --- a/locale/POTFILES.in +++ b/locale/POTFILES.in @@ -62,6 +62,8 @@ src/CellularPanel.cpp src/CellularPanel.h src/Clipboard.cpp src/Clipboard.h +src/CommonCommandFlags.cpp +src/CommonCommandFlags.h src/CrashReport.cpp src/CrashReport.h src/ClassicThemeAsCeeCode.h diff --git a/mac/Audacity.xcodeproj/project.pbxproj b/mac/Audacity.xcodeproj/project.pbxproj index 10d8c0587..df5d46fdc 100644 --- a/mac/Audacity.xcodeproj/project.pbxproj +++ b/mac/Audacity.xcodeproj/project.pbxproj @@ -1216,9 +1216,9 @@ 5E135A3C229EDF2E0076E983 /* ProjectManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E135A3A229EDF2E0076E983 /* ProjectManager.cpp */; }; 5E135A45229EE4DE0076E983 /* ProjectFileIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E135A43229EE4DE0076E983 /* ProjectFileIO.cpp */; }; 5E135A48229EE5530076E983 /* ProjectWindow.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E135A46229EE5530076E983 /* ProjectWindow.cpp */; }; - 5E135A5122A93DC60076E983 /* ProjectAudioManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E135A4F22A93DC60076E983 /* ProjectAudioManager.cpp */; }; 5E135A4B22A5F7560076E983 /* AudioIOBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E135A4922A5F7560076E983 /* AudioIOBase.cpp */; }; 5E135A4E22A62B7E0076E983 /* MeterPanelBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E135A4C22A62B7E0076E983 /* MeterPanelBase.cpp */; }; + 5E135A5122A93DC60076E983 /* ProjectAudioManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E135A4F22A93DC60076E983 /* ProjectAudioManager.cpp */; }; 5E15123D1DB000C000702E29 /* UIHandle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E15123B1DB000C000702E29 /* UIHandle.cpp */; }; 5E15125A1DB000DC00702E29 /* LabelTrackControls.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E1512401DB000DC00702E29 /* LabelTrackControls.cpp */; }; 5E15125B1DB000DC00702E29 /* LabelTrackUI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E1512421DB000DC00702E29 /* LabelTrackUI.cpp */; }; @@ -1230,6 +1230,7 @@ 5E15126E1DB0010C00702E29 /* TrackControls.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E1512681DB0010C00702E29 /* TrackControls.cpp */; }; 5E15126F1DB0010C00702E29 /* TrackUI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E15126A1DB0010C00702E29 /* TrackUI.cpp */; }; 5E1512701DB0010C00702E29 /* TrackVRulerControls.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E15126B1DB0010C00702E29 /* TrackVRulerControls.cpp */; }; + 5E15A9AF22B3F7710007CC43 /* CommonCommandFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E15A9AD22B3F7710007CC43 /* CommonCommandFlags.cpp */; }; 5E16FF4D1FF9CE0B0085E1B8 /* LanguageNames.txt in Resources */ = {isa = PBXBuildFile; fileRef = 5E16FF4C1FF9CE0B0085E1B8 /* LanguageNames.txt */; }; 5E17EF712298372D00B47301 /* EnvelopeEditor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E17EF6F2298372D00B47301 /* EnvelopeEditor.cpp */; }; 5E18CFF02291C31000E75250 /* ProjectFileIORegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E18CFEE2291C31000E75250 /* ProjectFileIORegistry.cpp */; }; @@ -3191,12 +3192,12 @@ 5E135A44229EE4DE0076E983 /* ProjectFileIO.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProjectFileIO.h; sourceTree = ""; }; 5E135A46229EE5530076E983 /* ProjectWindow.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ProjectWindow.cpp; sourceTree = ""; }; 5E135A47229EE5530076E983 /* ProjectWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProjectWindow.h; sourceTree = ""; }; - 5E135A4F22A93DC60076E983 /* ProjectAudioManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ProjectAudioManager.cpp; sourceTree = ""; }; - 5E135A5022A93DC60076E983 /* ProjectAudioManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProjectAudioManager.h; sourceTree = ""; }; 5E135A4922A5F7560076E983 /* AudioIOBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudioIOBase.cpp; sourceTree = ""; }; 5E135A4A22A5F7560076E983 /* AudioIOBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioIOBase.h; sourceTree = ""; }; 5E135A4C22A62B7E0076E983 /* MeterPanelBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MeterPanelBase.cpp; sourceTree = ""; }; 5E135A4D22A62B7E0076E983 /* MeterPanelBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MeterPanelBase.h; sourceTree = ""; }; + 5E135A4F22A93DC60076E983 /* ProjectAudioManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ProjectAudioManager.cpp; sourceTree = ""; }; + 5E135A5022A93DC60076E983 /* ProjectAudioManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProjectAudioManager.h; sourceTree = ""; }; 5E1512381DB000C000702E29 /* HitTestResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HitTestResult.h; sourceTree = ""; }; 5E1512391DB000C000702E29 /* RefreshCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RefreshCode.h; sourceTree = ""; }; 5E15123A1DB000C000702E29 /* TrackPanelMouseEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TrackPanelMouseEvent.h; sourceTree = ""; }; @@ -3219,6 +3220,8 @@ 5E15126A1DB0010C00702E29 /* TrackUI.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TrackUI.cpp; sourceTree = ""; }; 5E15126B1DB0010C00702E29 /* TrackVRulerControls.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TrackVRulerControls.cpp; sourceTree = ""; }; 5E15126C1DB0010C00702E29 /* TrackVRulerControls.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TrackVRulerControls.h; sourceTree = ""; }; + 5E15A9AD22B3F7710007CC43 /* CommonCommandFlags.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CommonCommandFlags.cpp; sourceTree = ""; }; + 5E15A9AE22B3F7710007CC43 /* CommonCommandFlags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommonCommandFlags.h; sourceTree = ""; }; 5E16FF4C1FF9CE0B0085E1B8 /* LanguageNames.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = LanguageNames.txt; path = ../locale/LanguageNames.txt; sourceTree = ""; }; 5E17EF6F2298372D00B47301 /* EnvelopeEditor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = EnvelopeEditor.cpp; sourceTree = ""; }; 5E17EF702298372D00B47301 /* EnvelopeEditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EnvelopeEditor.h; sourceTree = ""; }; @@ -4347,6 +4350,7 @@ 1790AFE809883BFD008A330A /* BlockFile.cpp */, 5E0A1CDB20E95FF7001AAF8D /* CellularPanel.cpp */, 5EFEAD9C22723E390077DFF6 /* Clipboard.cpp */, + 5E15A9AD22B3F7710007CC43 /* CommonCommandFlags.cpp */, 5EFEADA122733DD30077DFF6 /* CrashReport.cpp */, 1790AFF409883BFD008A330A /* CrossFade.cpp */, 2849B4600A7444BE00ECF12D /* Dependencies.cpp */, @@ -4464,6 +4468,7 @@ 5E0D233E21B468BF0057D7C3 /* ClientData.h */, 5E6E060321BD98E700130DE0 /* ClientDataHelpers.h */, 5EFEAD9D22723E390077DFF6 /* Clipboard.h */, + 5E15A9AE22B3F7710007CC43 /* CommonCommandFlags.h */, 1790AFF009883BFD008A330A /* configtemplate.h */, 5EFEADA222733DD30077DFF6 /* CrashReport.h */, 1790AFF509883BFD008A330A /* CrossFade.h */, @@ -8405,6 +8410,7 @@ 1790B18009883BFD008A330A /* BatchPrefs.cpp in Sources */, 5E135A39229EDEBA0076E983 /* ProjectAudioIO.cpp in Sources */, 1790B18109883BFD008A330A /* DirectoriesPrefs.cpp in Sources */, + 5E15A9AF22B3F7710007CC43 /* CommonCommandFlags.cpp in Sources */, 1790B18309883BFD008A330A /* GUIPrefs.cpp in Sources */, 1790B18409883BFD008A330A /* KeyConfigPrefs.cpp in Sources */, 2806EF7A1B32532A00D1AB9A /* FileDialogPrivate.mm in Sources */, diff --git a/src/CommonCommandFlags.cpp b/src/CommonCommandFlags.cpp new file mode 100644 index 000000000..e69de29bb diff --git a/src/CommonCommandFlags.h b/src/CommonCommandFlags.h new file mode 100644 index 000000000..e69de29bb diff --git a/src/Makefile.am b/src/Makefile.am index 53f88a338..4514ff451 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -133,6 +133,8 @@ audacity_SOURCES = \ ClientDataHelpers.h \ Clipboard.cpp \ Clipboard.h \ + CommonCommandFlags.cpp \ + CommonCommandFlags.h \ CrashReport.cpp \ CrashReport.h \ Dependencies.cpp \ diff --git a/src/Makefile.in b/src/Makefile.in index 4f0de09ed..380298ea2 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -297,41 +297,42 @@ am__audacity_SOURCES_DIST = BlockFile.cpp BlockFile.h DirManager.cpp \ BatchCommands.h BatchProcessDialog.cpp BatchProcessDialog.h \ Benchmark.cpp Benchmark.h CellularPanel.cpp CellularPanel.h \ ClientData.h ClientDataHelpers.h Clipboard.cpp Clipboard.h \ - CrashReport.cpp CrashReport.h Dependencies.cpp Dependencies.h \ - DeviceChange.cpp DeviceChange.h DeviceManager.cpp \ - DeviceManager.h Diags.cpp Diags.h Envelope.cpp Envelope.h \ - EnvelopeEditor.cpp EnvelopeEditor.h Experimental.h FFmpeg.cpp \ - FFmpeg.h FFT.cpp FFT.h FileException.cpp FileException.h \ - FileIO.cpp FileIO.h FileNames.cpp FileNames.h float_cast.h \ - FreqWindow.cpp FreqWindow.h HelpText.cpp HelpText.h \ - HistoryWindow.cpp HistoryWindow.h HitTestResult.h \ - ImageManipulation.cpp ImageManipulation.h \ - InconsistencyException.cpp InconsistencyException.h \ - InterpolateAudio.cpp InterpolateAudio.h KeyboardCapture.cpp \ - KeyboardCapture.h LabelDialog.cpp LabelDialog.h LabelTrack.cpp \ - LabelTrack.h LangChoice.cpp LangChoice.h Languages.cpp \ - Languages.h Legacy.cpp Legacy.h Lyrics.cpp Lyrics.h \ - LyricsWindow.cpp LyricsWindow.h MacroMagic.h Matrix.cpp \ - Matrix.h MemoryX.h Menus.cpp Menus.h \ - MissingAliasFileDialog.cpp MissingAliasFileDialog.h Mix.cpp \ - Mix.h MixerBoard.cpp MixerBoard.h ModuleManager.cpp \ - ModuleManager.h NumberScale.h PitchName.cpp PitchName.h \ - PlatformCompatibility.cpp PlatformCompatibility.h \ - PluginManager.cpp PluginManager.h Printing.cpp Printing.h \ - Profiler.cpp Profiler.h Project.cpp Project.h \ - ProjectAudioIO.cpp ProjectAudioIO.h ProjectAudioManager.cpp \ - ProjectAudioManager.h ProjectFileIO.cpp ProjectFileIO.h \ - ProjectFileIORegistry.cpp ProjectFileIORegistry.h \ - ProjectFileManager.cpp ProjectFileManager.h ProjectFSCK.cpp \ - ProjectFSCK.h ProjectHistory.cpp ProjectHistory.h \ - ProjectManager.cpp ProjectManager.h \ - ProjectSelectionManager.cpp ProjectSelectionManager.h \ - ProjectSettings.cpp ProjectSettings.h ProjectWindow.cpp \ - ProjectWindow.h RealFFTf.cpp RealFFTf.h RealFFTf48x.cpp \ - RealFFTf48x.h RefreshCode.h Resample.cpp Resample.h \ - RevisionIdent.h RingBuffer.cpp RingBuffer.h Screenshot.cpp \ - Screenshot.h SelectedRegion.cpp SelectedRegion.h \ - SelectionState.cpp SelectionState.h Shuttle.cpp Shuttle.h \ + CommonCommandFlags.cpp CommonCommandFlags.h CrashReport.cpp \ + CrashReport.h Dependencies.cpp Dependencies.h DeviceChange.cpp \ + DeviceChange.h DeviceManager.cpp DeviceManager.h Diags.cpp \ + Diags.h Envelope.cpp Envelope.h EnvelopeEditor.cpp \ + EnvelopeEditor.h Experimental.h FFmpeg.cpp FFmpeg.h FFT.cpp \ + FFT.h FileException.cpp FileException.h FileIO.cpp FileIO.h \ + FileNames.cpp FileNames.h float_cast.h FreqWindow.cpp \ + FreqWindow.h HelpText.cpp HelpText.h HistoryWindow.cpp \ + HistoryWindow.h HitTestResult.h ImageManipulation.cpp \ + ImageManipulation.h InconsistencyException.cpp \ + InconsistencyException.h InterpolateAudio.cpp \ + InterpolateAudio.h KeyboardCapture.cpp KeyboardCapture.h \ + LabelDialog.cpp LabelDialog.h LabelTrack.cpp LabelTrack.h \ + LangChoice.cpp LangChoice.h Languages.cpp Languages.h \ + Legacy.cpp Legacy.h Lyrics.cpp Lyrics.h LyricsWindow.cpp \ + LyricsWindow.h MacroMagic.h Matrix.cpp Matrix.h MemoryX.h \ + Menus.cpp Menus.h MissingAliasFileDialog.cpp \ + MissingAliasFileDialog.h Mix.cpp Mix.h MixerBoard.cpp \ + MixerBoard.h ModuleManager.cpp ModuleManager.h NumberScale.h \ + PitchName.cpp PitchName.h PlatformCompatibility.cpp \ + PlatformCompatibility.h PluginManager.cpp PluginManager.h \ + Printing.cpp Printing.h Profiler.cpp Profiler.h Project.cpp \ + Project.h ProjectAudioIO.cpp ProjectAudioIO.h \ + ProjectAudioManager.cpp ProjectAudioManager.h \ + ProjectFileIO.cpp ProjectFileIO.h ProjectFileIORegistry.cpp \ + ProjectFileIORegistry.h ProjectFileManager.cpp \ + ProjectFileManager.h ProjectFSCK.cpp ProjectFSCK.h \ + ProjectHistory.cpp ProjectHistory.h ProjectManager.cpp \ + ProjectManager.h ProjectSelectionManager.cpp \ + ProjectSelectionManager.h ProjectSettings.cpp \ + ProjectSettings.h ProjectWindow.cpp ProjectWindow.h \ + RealFFTf.cpp RealFFTf.h RealFFTf48x.cpp RealFFTf48x.h \ + RefreshCode.h Resample.cpp Resample.h RevisionIdent.h \ + RingBuffer.cpp RingBuffer.h Screenshot.cpp Screenshot.h \ + SelectedRegion.cpp SelectedRegion.h SelectionState.cpp \ + SelectionState.h Shuttle.cpp Shuttle.h \ ShuttleGetDefinition.cpp ShuttleGetDefinition.h ShuttleGui.cpp \ ShuttleGui.h ShuttlePrefs.cpp ShuttlePrefs.h Snap.cpp Snap.h \ SoundActivatedRecord.cpp SoundActivatedRecord.h Spectrum.cpp \ @@ -644,8 +645,9 @@ am_audacity_OBJECTS = $(am__objects_1) audacity-AboutDialog.$(OBJEXT) \ audacity-BatchCommands.$(OBJEXT) \ audacity-BatchProcessDialog.$(OBJEXT) \ audacity-Benchmark.$(OBJEXT) audacity-CellularPanel.$(OBJEXT) \ - audacity-Clipboard.$(OBJEXT) audacity-CrashReport.$(OBJEXT) \ - audacity-Dependencies.$(OBJEXT) \ + audacity-Clipboard.$(OBJEXT) \ + audacity-CommonCommandFlags.$(OBJEXT) \ + audacity-CrashReport.$(OBJEXT) audacity-Dependencies.$(OBJEXT) \ audacity-DeviceChange.$(OBJEXT) \ audacity-DeviceManager.$(OBJEXT) audacity-Diags.$(OBJEXT) \ audacity-Envelope.$(OBJEXT) audacity-EnvelopeEditor.$(OBJEXT) \ @@ -1376,41 +1378,42 @@ audacity_SOURCES = $(libaudacity_la_SOURCES) AboutDialog.cpp \ BatchCommands.h BatchProcessDialog.cpp BatchProcessDialog.h \ Benchmark.cpp Benchmark.h CellularPanel.cpp CellularPanel.h \ ClientData.h ClientDataHelpers.h Clipboard.cpp Clipboard.h \ - CrashReport.cpp CrashReport.h Dependencies.cpp Dependencies.h \ - DeviceChange.cpp DeviceChange.h DeviceManager.cpp \ - DeviceManager.h Diags.cpp Diags.h Envelope.cpp Envelope.h \ - EnvelopeEditor.cpp EnvelopeEditor.h Experimental.h FFmpeg.cpp \ - FFmpeg.h FFT.cpp FFT.h FileException.cpp FileException.h \ - FileIO.cpp FileIO.h FileNames.cpp FileNames.h float_cast.h \ - FreqWindow.cpp FreqWindow.h HelpText.cpp HelpText.h \ - HistoryWindow.cpp HistoryWindow.h HitTestResult.h \ - ImageManipulation.cpp ImageManipulation.h \ - InconsistencyException.cpp InconsistencyException.h \ - InterpolateAudio.cpp InterpolateAudio.h KeyboardCapture.cpp \ - KeyboardCapture.h LabelDialog.cpp LabelDialog.h LabelTrack.cpp \ - LabelTrack.h LangChoice.cpp LangChoice.h Languages.cpp \ - Languages.h Legacy.cpp Legacy.h Lyrics.cpp Lyrics.h \ - LyricsWindow.cpp LyricsWindow.h MacroMagic.h Matrix.cpp \ - Matrix.h MemoryX.h Menus.cpp Menus.h \ - MissingAliasFileDialog.cpp MissingAliasFileDialog.h Mix.cpp \ - Mix.h MixerBoard.cpp MixerBoard.h ModuleManager.cpp \ - ModuleManager.h NumberScale.h PitchName.cpp PitchName.h \ - PlatformCompatibility.cpp PlatformCompatibility.h \ - PluginManager.cpp PluginManager.h Printing.cpp Printing.h \ - Profiler.cpp Profiler.h Project.cpp Project.h \ - ProjectAudioIO.cpp ProjectAudioIO.h ProjectAudioManager.cpp \ - ProjectAudioManager.h ProjectFileIO.cpp ProjectFileIO.h \ - ProjectFileIORegistry.cpp ProjectFileIORegistry.h \ - ProjectFileManager.cpp ProjectFileManager.h ProjectFSCK.cpp \ - ProjectFSCK.h ProjectHistory.cpp ProjectHistory.h \ - ProjectManager.cpp ProjectManager.h \ - ProjectSelectionManager.cpp ProjectSelectionManager.h \ - ProjectSettings.cpp ProjectSettings.h ProjectWindow.cpp \ - ProjectWindow.h RealFFTf.cpp RealFFTf.h RealFFTf48x.cpp \ - RealFFTf48x.h RefreshCode.h Resample.cpp Resample.h \ - RevisionIdent.h RingBuffer.cpp RingBuffer.h Screenshot.cpp \ - Screenshot.h SelectedRegion.cpp SelectedRegion.h \ - SelectionState.cpp SelectionState.h Shuttle.cpp Shuttle.h \ + CommonCommandFlags.cpp CommonCommandFlags.h CrashReport.cpp \ + CrashReport.h Dependencies.cpp Dependencies.h DeviceChange.cpp \ + DeviceChange.h DeviceManager.cpp DeviceManager.h Diags.cpp \ + Diags.h Envelope.cpp Envelope.h EnvelopeEditor.cpp \ + EnvelopeEditor.h Experimental.h FFmpeg.cpp FFmpeg.h FFT.cpp \ + FFT.h FileException.cpp FileException.h FileIO.cpp FileIO.h \ + FileNames.cpp FileNames.h float_cast.h FreqWindow.cpp \ + FreqWindow.h HelpText.cpp HelpText.h HistoryWindow.cpp \ + HistoryWindow.h HitTestResult.h ImageManipulation.cpp \ + ImageManipulation.h InconsistencyException.cpp \ + InconsistencyException.h InterpolateAudio.cpp \ + InterpolateAudio.h KeyboardCapture.cpp KeyboardCapture.h \ + LabelDialog.cpp LabelDialog.h LabelTrack.cpp LabelTrack.h \ + LangChoice.cpp LangChoice.h Languages.cpp Languages.h \ + Legacy.cpp Legacy.h Lyrics.cpp Lyrics.h LyricsWindow.cpp \ + LyricsWindow.h MacroMagic.h Matrix.cpp Matrix.h MemoryX.h \ + Menus.cpp Menus.h MissingAliasFileDialog.cpp \ + MissingAliasFileDialog.h Mix.cpp Mix.h MixerBoard.cpp \ + MixerBoard.h ModuleManager.cpp ModuleManager.h NumberScale.h \ + PitchName.cpp PitchName.h PlatformCompatibility.cpp \ + PlatformCompatibility.h PluginManager.cpp PluginManager.h \ + Printing.cpp Printing.h Profiler.cpp Profiler.h Project.cpp \ + Project.h ProjectAudioIO.cpp ProjectAudioIO.h \ + ProjectAudioManager.cpp ProjectAudioManager.h \ + ProjectFileIO.cpp ProjectFileIO.h ProjectFileIORegistry.cpp \ + ProjectFileIORegistry.h ProjectFileManager.cpp \ + ProjectFileManager.h ProjectFSCK.cpp ProjectFSCK.h \ + ProjectHistory.cpp ProjectHistory.h ProjectManager.cpp \ + ProjectManager.h ProjectSelectionManager.cpp \ + ProjectSelectionManager.h ProjectSettings.cpp \ + ProjectSettings.h ProjectWindow.cpp ProjectWindow.h \ + RealFFTf.cpp RealFFTf.h RealFFTf48x.cpp RealFFTf48x.h \ + RefreshCode.h Resample.cpp Resample.h RevisionIdent.h \ + RingBuffer.cpp RingBuffer.h Screenshot.cpp Screenshot.h \ + SelectedRegion.cpp SelectedRegion.h SelectionState.cpp \ + SelectionState.h Shuttle.cpp Shuttle.h \ ShuttleGetDefinition.cpp ShuttleGetDefinition.h ShuttleGui.cpp \ ShuttleGui.h ShuttlePrefs.cpp ShuttlePrefs.h Snap.cpp Snap.h \ SoundActivatedRecord.cpp SoundActivatedRecord.h Spectrum.cpp \ @@ -2539,6 +2542,7 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audacity-BlockFile.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audacity-CellularPanel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audacity-Clipboard.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audacity-CommonCommandFlags.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audacity-CrashReport.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audacity-Dependencies.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audacity-DeviceChange.Po@am__quote@ @@ -3506,6 +3510,20 @@ audacity-Clipboard.obj: Clipboard.cpp @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(audacity_CPPFLAGS) $(CPPFLAGS) $(audacity_CXXFLAGS) $(CXXFLAGS) -c -o audacity-Clipboard.obj `if test -f 'Clipboard.cpp'; then $(CYGPATH_W) 'Clipboard.cpp'; else $(CYGPATH_W) '$(srcdir)/Clipboard.cpp'; fi` +audacity-CommonCommandFlags.o: CommonCommandFlags.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(audacity_CPPFLAGS) $(CPPFLAGS) $(audacity_CXXFLAGS) $(CXXFLAGS) -MT audacity-CommonCommandFlags.o -MD -MP -MF $(DEPDIR)/audacity-CommonCommandFlags.Tpo -c -o audacity-CommonCommandFlags.o `test -f 'CommonCommandFlags.cpp' || echo '$(srcdir)/'`CommonCommandFlags.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/audacity-CommonCommandFlags.Tpo $(DEPDIR)/audacity-CommonCommandFlags.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CommonCommandFlags.cpp' object='audacity-CommonCommandFlags.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(audacity_CPPFLAGS) $(CPPFLAGS) $(audacity_CXXFLAGS) $(CXXFLAGS) -c -o audacity-CommonCommandFlags.o `test -f 'CommonCommandFlags.cpp' || echo '$(srcdir)/'`CommonCommandFlags.cpp + +audacity-CommonCommandFlags.obj: CommonCommandFlags.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(audacity_CPPFLAGS) $(CPPFLAGS) $(audacity_CXXFLAGS) $(CXXFLAGS) -MT audacity-CommonCommandFlags.obj -MD -MP -MF $(DEPDIR)/audacity-CommonCommandFlags.Tpo -c -o audacity-CommonCommandFlags.obj `if test -f 'CommonCommandFlags.cpp'; then $(CYGPATH_W) 'CommonCommandFlags.cpp'; else $(CYGPATH_W) '$(srcdir)/CommonCommandFlags.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/audacity-CommonCommandFlags.Tpo $(DEPDIR)/audacity-CommonCommandFlags.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CommonCommandFlags.cpp' object='audacity-CommonCommandFlags.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(audacity_CPPFLAGS) $(CPPFLAGS) $(audacity_CXXFLAGS) $(CXXFLAGS) -c -o audacity-CommonCommandFlags.obj `if test -f 'CommonCommandFlags.cpp'; then $(CYGPATH_W) 'CommonCommandFlags.cpp'; else $(CYGPATH_W) '$(srcdir)/CommonCommandFlags.cpp'; fi` + audacity-CrashReport.o: CrashReport.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(audacity_CPPFLAGS) $(CPPFLAGS) $(audacity_CXXFLAGS) $(CXXFLAGS) -MT audacity-CrashReport.o -MD -MP -MF $(DEPDIR)/audacity-CrashReport.Tpo -c -o audacity-CrashReport.o `test -f 'CrashReport.cpp' || echo '$(srcdir)/'`CrashReport.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/audacity-CrashReport.Tpo $(DEPDIR)/audacity-CrashReport.Po diff --git a/win/Projects/Audacity/Audacity.vcxproj b/win/Projects/Audacity/Audacity.vcxproj index f9dafa385..7e0005e08 100755 --- a/win/Projects/Audacity/Audacity.vcxproj +++ b/win/Projects/Audacity/Audacity.vcxproj @@ -140,6 +140,7 @@ + @@ -522,6 +523,7 @@ + diff --git a/win/Projects/Audacity/Audacity.vcxproj.filters b/win/Projects/Audacity/Audacity.vcxproj.filters index c59a49683..70d2245b0 100755 --- a/win/Projects/Audacity/Audacity.vcxproj.filters +++ b/win/Projects/Audacity/Audacity.vcxproj.filters @@ -1148,6 +1148,9 @@ src + + src + src @@ -2314,6 +2317,9 @@ src + + src + src