mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-08 06:03:49 +01:00
First stab at taming the meter toolbars
This should correct at least a couple of the reported issues. And it also has some fixes in for multiple project support.
This commit is contained in:
@@ -381,6 +381,11 @@ class AUDACITY_DLL_API AudacityProject: public wxFrame,
|
||||
ToolsToolBar *GetToolsToolBar();
|
||||
TranscriptionToolBar *GetTranscriptionToolBar();
|
||||
|
||||
Meter *GetPlaybackMeter();
|
||||
void SetPlaybackMeter(Meter *playback);
|
||||
Meter *GetCaptureMeter();
|
||||
void SetCaptureMeter(Meter *capture);
|
||||
|
||||
LyricsWindow* GetLyricsWindow() { return mLyricsWindow; };
|
||||
MixerBoard* GetMixerBoard() { return mMixerBoard; };
|
||||
|
||||
@@ -532,6 +537,10 @@ class AUDACITY_DLL_API AudacityProject: public wxFrame,
|
||||
// dialog for missing alias warnings
|
||||
wxDialog *mAliasMissingWarningDialog;
|
||||
|
||||
// Project owned meters
|
||||
Meter *mPlaybackMeter;
|
||||
Meter *mCaptureMeter;
|
||||
|
||||
public:
|
||||
ToolManager *mToolManager;
|
||||
bool mShowSplashScreen;
|
||||
|
||||
Reference in New Issue
Block a user