1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 08:09:32 +02:00

Remove unused fns; fix missing & misspelled headers in make & project files

This commit is contained in:
Paul Licameli 2015-08-30 13:19:08 -04:00
parent ca761893c8
commit 05de64e251
8 changed files with 7 additions and 45 deletions

View File

@ -104,7 +104,7 @@ audacity_SOURCES = \
AudacityLogger.h \ AudacityLogger.h \
AudioIO.cpp \ AudioIO.cpp \
AudioIO.h \ AudioIO.h \
AudioIOListenerer.h \ AudioIOListener.h \
AutoRecovery.cpp \ AutoRecovery.cpp \
AutoRecovery.h \ AutoRecovery.h \
BatchCommandDialog.cpp \ BatchCommandDialog.cpp \
@ -231,6 +231,7 @@ audacity_SOURCES = \
TrackPanel.h \ TrackPanel.h \
TrackPanelAx.cpp \ TrackPanelAx.cpp \
TrackPanelAx.h \ TrackPanelAx.h \
TrackPanelListener.h \
TranslatableStringArray.h \ TranslatableStringArray.h \
UndoManager.cpp \ UndoManager.cpp \
UndoManager.h \ UndoManager.h \

View File

@ -4175,16 +4175,6 @@ ControlToolBar *AudacityProject::GetControlToolBar()
NULL); NULL);
} }
//JKC: same as above *except* this a virtual function that
//can be called from the track panel callback.
//It seems a little crazy doing this but TrackArtist
//needs to get information about the tool bar state and
//I don't currently see a cleaner way.
ControlToolBar * AudacityProject::TP_GetControlToolBar()
{
return GetControlToolBar();
}
ToolsToolBar * AudacityProject::TP_GetToolsToolBar() ToolsToolBar * AudacityProject::TP_GetToolsToolBar()
{ {
return GetToolsToolBar(); return GetToolsToolBar();
@ -4602,22 +4592,6 @@ void AudacityProject::RefreshTPTrack(Track* pTrk, bool refreshbacking /*= true*/
} }
// TrackPanel callback methods
int AudacityProject::TP_GetCurrentTool()
{
//ControlToolBar might be NULL--especially on shutdown.
//Make sure it isn't and if it is, return a reasonable value
ToolsToolBar *ctb = GetToolsToolBar();
if (ctb)
return GetToolsToolBar()->GetCurrentTool();
else
return 0;
}
// TrackPanel callback method // TrackPanel callback method
void AudacityProject::TP_PushState(wxString desc, wxString shortDesc, void AudacityProject::TP_PushState(wxString desc, wxString shortDesc,
int flags) int flags)
@ -4649,11 +4623,6 @@ void AudacityProject::TP_RedrawScrollbars()
FixScrollbars(); FixScrollbars();
} }
void AudacityProject::TP_HandleResize()
{
HandleResize();
}
void AudacityProject::GetPlayRegion(double* playRegionStart, void AudacityProject::GetPlayRegion(double* playRegionStart,
double *playRegionEnd) double *playRegionEnd)
{ {
@ -4949,7 +4918,7 @@ void AudacityProject::RemoveTrack(Track * toRemove)
_("Track Remove")); _("Track Remove"));
TP_RedrawScrollbars(); TP_RedrawScrollbars();
TP_HandleResize(); HandleResize();
GetTrackPanel()->Refresh(false); GetTrackPanel()->Refresh(false);
} }

View File

@ -395,9 +395,7 @@ class AUDACITY_DLL_API AudacityProject: public wxFrame,
virtual void TP_DisplaySelection(); virtual void TP_DisplaySelection();
virtual void TP_DisplayStatusMessage(wxString msg); virtual void TP_DisplayStatusMessage(wxString msg);
virtual int TP_GetCurrentTool();
virtual ToolsToolBar * TP_GetToolsToolBar(); virtual ToolsToolBar * TP_GetToolsToolBar();
virtual ControlToolBar * TP_GetControlToolBar();
virtual void TP_PushState(wxString longDesc, wxString shortDesc, virtual void TP_PushState(wxString longDesc, wxString shortDesc,
int flags); int flags);
@ -408,7 +406,6 @@ class AUDACITY_DLL_API AudacityProject: public wxFrame,
virtual void TP_ScrollRight(); virtual void TP_ScrollRight();
virtual void TP_ScrollWindow(double scrollto); virtual void TP_ScrollWindow(double scrollto);
virtual void TP_ScrollUpDown(int delta); virtual void TP_ScrollUpDown(int delta);
virtual void TP_HandleResize();
// ToolBar // ToolBar

View File

@ -1536,11 +1536,6 @@ void TrackPanel::MakeParentRedrawScrollbars()
mListener->TP_RedrawScrollbars(); mListener->TP_RedrawScrollbars();
} }
void TrackPanel::MakeParentResize()
{
mListener->TP_HandleResize();
}
void TrackPanel::HandleEscapeKey(bool down) void TrackPanel::HandleEscapeKey(bool down)
{ {
if (!down) if (!down)

View File

@ -459,7 +459,6 @@ protected:
int flags = PUSH_AUTOSAVE); int flags = PUSH_AUTOSAVE);
virtual void MakeParentModifyState(bool bWantsAutoSave); // if true, writes auto-save file. Should set only if you really want the state change restored after virtual void MakeParentModifyState(bool bWantsAutoSave); // if true, writes auto-save file. Should set only if you really want the state change restored after
// a crash, as it can take many seconds for large (eg. 10 track-hours) projects // a crash, as it can take many seconds for large (eg. 10 track-hours) projects
virtual void MakeParentResize();
virtual void OnSetName(wxCommandEvent &event); virtual void OnSetName(wxCommandEvent &event);

View File

@ -23,9 +23,7 @@ class AUDACITY_DLL_API TrackPanelListener {
virtual void TP_DisplaySelection() = 0; virtual void TP_DisplaySelection() = 0;
virtual void TP_DisplayStatusMessage(wxString msg) = 0; virtual void TP_DisplayStatusMessage(wxString msg) = 0;
virtual int TP_GetCurrentTool() = 0;
virtual ToolsToolBar * TP_GetToolsToolBar() = 0; virtual ToolsToolBar * TP_GetToolsToolBar() = 0;
virtual ControlToolBar * TP_GetControlToolBar() = 0;
virtual void TP_PushState(wxString shortDesc, wxString longDesc, virtual void TP_PushState(wxString shortDesc, wxString longDesc,
int flags = PUSH_AUTOSAVE) = 0; int flags = PUSH_AUTOSAVE) = 0;
@ -36,7 +34,6 @@ class AUDACITY_DLL_API TrackPanelListener {
virtual void TP_ScrollRight() = 0; virtual void TP_ScrollRight() = 0;
virtual void TP_ScrollWindow(double scrollto) = 0; virtual void TP_ScrollWindow(double scrollto) = 0;
virtual void TP_ScrollUpDown(int delta) = 0; virtual void TP_ScrollUpDown(int delta) = 0;
virtual void TP_HandleResize() = 0;
}; };
#endif #endif

View File

@ -434,6 +434,7 @@
<ClInclude Include="..\..\..\src\SseMathFuncs.h" /> <ClInclude Include="..\..\..\src\SseMathFuncs.h" />
<ClInclude Include="..\..\..\src\toolbars\SpectralSelectionBar.h" /> <ClInclude Include="..\..\..\src\toolbars\SpectralSelectionBar.h" />
<ClInclude Include="..\..\..\src\toolbars\SpectralSelectionBarListener.h" /> <ClInclude Include="..\..\..\src\toolbars\SpectralSelectionBarListener.h" />
<ClInclude Include="..\..\..\src\TrackPanelListener.h" />
<ClInclude Include="..\..\..\src\TranslatableStringArray.h" /> <ClInclude Include="..\..\..\src\TranslatableStringArray.h" />
<ClInclude Include="..\..\..\src\WaveTrackLocation.h" /> <ClInclude Include="..\..\..\src\WaveTrackLocation.h" />
<ClInclude Include="..\..\..\src\widgets\HelpSystem.h" /> <ClInclude Include="..\..\..\src\widgets\HelpSystem.h" />

View File

@ -1711,6 +1711,9 @@
<ClInclude Include="..\..\..\src\TranslatableStringArray.h"> <ClInclude Include="..\..\..\src\TranslatableStringArray.h">
<Filter>src</Filter> <Filter>src</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="..\..\..\src\TrackPanelListener.h">
<Filter>src</Filter>
</ClInclude>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Image Include="..\..\audacity.ico"> <Image Include="..\..\audacity.ico">