Audacity 3.2.0
|
MeterPanel is a panel that paints the meter used for monitoring or playback. More...
#include <MeterPanel.h>
Classes | |
struct | State |
Public Types | |
enum | Style { AutomaticStereo , HorizontalStereo , VerticalStereo , MixerTrackCluster , HorizontalStereoCompact , VerticalStereoCompact } |
Public Member Functions | |
MeterPanel (AudacityProject *, wxWindow *parent, wxWindowID id, bool isInput, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, Style style=HorizontalStereo, float fDecayRate=60.0f) | |
void | SetFocusFromKbd () override |
void | Clear () override |
Style | GetStyle () const |
Style | GetDesiredStyle () const |
void | SetStyle (Style newStyle) |
void | Reset (double sampleRate, bool resetClipping) override |
This method is thread-safe! Feel free to call from a different thread (like from an audio I/O callback). More... | |
void | UpdateDisplay (unsigned numChannels, int numFrames, const float *sampleData) override |
Update the meters with a block of audio data. More... | |
bool | IsMeterDisabled () const override |
Find out if the level meter is disabled or not. More... | |
float | GetMaxPeak () const override |
float | GetPeakHold () const |
bool | IsMonitoring () const |
bool | IsActive () const |
bool | IsClipping () const override |
void | StartMonitoring () |
void | StopMonitoring () |
State | SaveState () |
void | RestoreState (const State &state) |
void | SetMixer (wxCommandEvent &event) |
int | GetDBRange () const override |
bool | ShowDialog () |
void | Increase (float steps) |
void | Decrease (float steps) |
void | UpdateSliderControl () |
void | ShowMenu (const wxPoint &pos) |
void | SetName (const TranslatableString &name) |
Public Member Functions inherited from MeterPanelBase | |
~MeterPanelBase () override | |
template<typename ... Args> | |
MeterPanelBase (Args &&...args) | |
std::shared_ptr< Meter > | GetMeter () const |
virtual void | Clear ()=0 |
virtual void | Reset (double sampleRate, bool resetClipping)=0 |
virtual void | UpdateDisplay (unsigned numChannels, int numFrames, const float *sampleData)=0 |
virtual bool | IsMeterDisabled () const =0 |
virtual float | GetMaxPeak () const =0 |
virtual bool | IsClipping () const =0 |
virtual int | GetDBRange () const =0 |
wxPanelWrapper () | |
wxPanelWrapper (wxWindow *parent, wxWindowID winid=wxID_ANY, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER, const TranslatableString &name=XO("Panel")) | |
Public Member Functions inherited from wxPanelWrapper | |
wxPanelWrapper () | |
wxPanelWrapper (wxWindow *parent, wxWindowID winid=wxID_ANY, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER, const TranslatableString &name=XO("Panel")) | |
bool | Create (wxWindow *parent, wxWindowID winid=wxID_ANY, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER, const TranslatableString &name=XO("Panel")) |
void | SetLabel (const TranslatableString &label) |
void | SetName (const TranslatableString &name) |
void | SetToolTip (const TranslatableString &toolTip) |
void | SetName () |
Public Member Functions inherited from wxTabTraversalWrapper< wxPanel > | |
wxTabTraversalWrapper (Args &&... args) | |
wxTabTraversalWrapper (const wxTabTraversalWrapper &)=delete | |
wxTabTraversalWrapper (wxTabTraversalWrapper &&)=delete | |
wxTabTraversalWrapper & | operator= (const wxTabTraversalWrapper &)=delete |
wxTabTraversalWrapper & | operator= (wxTabTraversalWrapper &&)=delete |
Private Member Functions | |
void | UpdatePrefs () override |
void | UpdateSelectedPrefs (int) override |
void | OnErase (wxEraseEvent &evt) |
void | OnPaint (wxPaintEvent &evt) |
void | OnSize (wxSizeEvent &evt) |
void | OnMouse (wxMouseEvent &evt) |
void | OnKeyDown (wxKeyEvent &evt) |
void | OnCharHook (wxKeyEvent &evt) |
void | OnContext (wxContextMenuEvent &evt) |
void | OnSetFocus (wxFocusEvent &evt) |
void | OnKillFocus (wxFocusEvent &evt) |
void | OnAudioIOStatus (AudioIOEvent) |
void | OnAudioCapture (AudioIOEvent) |
void | OnMeterUpdate (wxTimerEvent &evt) |
void | OnTipTimeout (wxTimerEvent &evt) |
void | HandleLayout (wxDC &dc) |
void | SetActiveStyle (Style style) |
void | SetBarAndClip (int iBar, bool vert) |
void | DrawMeterBar (wxDC &dc, MeterBar *meterBar) |
void | ResetBar (MeterBar *bar, bool resetClipping) |
void | RepaintBarsNow () |
wxFont | GetFont () const |
void | OnMonitor (wxCommandEvent &evt) |
void | OnPreferences (wxCommandEvent &evt) |
wxString | Key (const wxString &key) const |
Private Member Functions inherited from PrefsListener | |
PrefsListener () | |
virtual | ~PrefsListener () |
virtual void | UpdatePrefs ()=0 |
virtual void | UpdateSelectedPrefs (int id) |
Friends | |
class | MeterAx |
Additional Inherited Members | |
Static Public Member Functions inherited from MeterPanelBase | |
static TempAllowFocus | TemporarilyAllowFocus () |
Static Private Member Functions inherited from PrefsListener | |
static void | Broadcast (int id=0) |
Call this static function to notify all PrefsListener objects. More... | |
MeterPanel is a panel that paints the meter used for monitoring or playback.
VU Meter, for displaying recording/playback level.
This is a bunch of common code that can display many different forms of VU meters and other displays.
But note that a lot of later code here assumes these are MeterToolBar meters, e.g., MeterPanel::StartMonitoring, so these are not as generic/common as originally intended.
Definition at line 88 of file MeterPanel.h.
enum MeterPanel::Style |
Enumerator | |
---|---|
AutomaticStereo | |
HorizontalStereo | |
VerticalStereo | |
MixerTrackCluster | |
HorizontalStereoCompact | |
VerticalStereoCompact |
Definition at line 97 of file MeterPanel.h.
MeterPanel::MeterPanel | ( | AudacityProject * | project, |
wxWindow * | parent, | ||
wxWindowID | id, | ||
bool | isInput, | ||
const wxPoint & | pos = wxDefaultPosition , |
||
const wxSize & | size = wxDefaultSize , |
||
Style | style = HorizontalStereo , |
||
float | fDecayRate = 60.0f |
||
) |
Definition at line 229 of file MeterPanel.cpp.
|
overridevirtual |
void MeterPanel::Decrease | ( | float | steps | ) |
Definition at line 826 of file MeterPanel.cpp.
References mSlider, and SetMixer().
Referenced by MeterToolBar::AdjustInputGain(), and MeterToolBar::AdjustOutputGain().
|
private |
Definition at line 1535 of file MeterPanel.cpp.
References MeterBar::clipping, ThemeBase::Colour(), AColor::Line(), mBitmap, mBkgndBrush, mBrush, mClip, mClipBrush, mGradient, mMeterBkgndBrush, mPeakPeakPen, mPen, mRMSBrush, MeterBar::peak, MeterBar::peakHold, MeterBar::peakPeakHold, MeterBar::r, MeterBar::rClip, MeterBar::rms, theTheme, and MeterBar::vert.
Referenced by OnPaint().
|
inlineoverridevirtual |
Implements MeterPanelBase.
Definition at line 186 of file MeterPanel.h.
|
inline |
Definition at line 120 of file MeterPanel.h.
|
private |
Definition at line 1101 of file MeterPanel.cpp.
Referenced by HandleLayout(), and OnPaint().
|
overridevirtual |
Implements MeterPanelBase.
Definition at line 1083 of file MeterPanel.cpp.
float MeterPanel::GetPeakHold | ( | ) | const |
|
inline |
Definition at line 119 of file MeterPanel.h.
|
private |
Definition at line 1231 of file MeterPanel.cpp.
References _, AutomaticStereo, MeterBar::b, gap, GetFont(), HorizontalStereo, HorizontalStereoCompact, intmax(), mBar, mDesiredStyle, mHeight, MixerTrackCluster, mLayoutValid, mLeftSize, mLeftText, mLeftTextPos, mNumBars, mRightSize, mRightText, mRightTextPos, mRuler, mRulerHeight, mRulerWidth, mSliderPos, mSliderSize, mStyle, mWidth, Ruler::OfflimitsPixels(), MeterBar::r, SetActiveStyle(), SetBarAndClip(), Ruler::SetBounds(), VerticalStereo, VerticalStereoCompact, and wxT().
Referenced by OnPaint().
void MeterPanel::Increase | ( | float | steps | ) |
Definition at line 815 of file MeterPanel.cpp.
References mSlider, and SetMixer().
Referenced by MeterToolBar::AdjustInputGain(), and MeterToolBar::AdjustOutputGain().
bool MeterPanel::IsActive | ( | ) | const |
Definition at line 1126 of file MeterPanel.cpp.
References mActive.
|
overridevirtual |
Implements MeterPanelBase.
Definition at line 1136 of file MeterPanel.cpp.
|
overridevirtual |
Find out if the level meter is disabled or not.
This method is thread-safe! Feel free to call from a different thread (like from an audio I/O callback).
Implements MeterPanelBase.
Definition at line 1792 of file MeterPanel.cpp.
References mMeterDisabled.
bool MeterPanel::IsMonitoring | ( | ) | const |
Definition at line 1131 of file MeterPanel.cpp.
References mMonitoring.
|
private |
Definition at line 2036 of file MeterPanel.cpp.
References key, mIsInput, mStyle, and wxT().
Referenced by OnPreferences(), and UpdatePrefs().
|
private |
Definition at line 1849 of file MeterPanel.cpp.
References AudioIOEvent::CAPTURE, mEnabled, mProject, mSlider, AudioIOEvent::on, AudioIOEvent::pProject, and AudioIOEvent::type.
|
private |
Definition at line 1825 of file MeterPanel.cpp.
References mActive, mIsInput, mMeterRefreshRate, mMonitoring, AudioIOEvent::MONITOR, mProject, mTimer, AudioIOEvent::on, AudioIOEvent::PAUSE, AudioIOEvent::PLAYBACK, AudioIOEvent::pProject, and AudioIOEvent::type.
|
private |
Definition at line 690 of file MeterPanel.cpp.
References mStyle, and ShowMenu().
|
private |
Definition at line 712 of file MeterPanel.cpp.
References mStyle, and ShowMenu().
|
private |
Definition at line 432 of file MeterPanel.cpp.
|
private |
Definition at line 724 of file MeterPanel.cpp.
References mSlider.
|
private |
Definition at line 746 of file MeterPanel.cpp.
References mIsFocused, mSlider, and mTipTimer.
|
private |
Definition at line 979 of file MeterPanel.cpp.
References MeterBar::clipping, MeterUpdateMsg::clipping, DB_TO_LINEAR, floatMax(), MeterUpdateMsg::headPeakCount, MeterBar::isclipping, mBar, mDB, mDBRange, mDecay, mDecayRate, mIsInput, mMeterDisabled, mNumBars, mNumPeakSamplesToClip, mPeakHoldDuration, mQueue, mRate, mT, MeterUpdateMsg::numFrames, MeterBar::peak, MeterUpdateMsg::peak, MeterBar::peakHold, MeterBar::peakHoldTime, MeterBar::peakPeakHold, RepaintBarsNow(), MeterBar::rms, MeterUpdateMsg::rms, MeterBar::tailPeakCount, MeterUpdateMsg::tailPeakCount, and ToDB().
|
private |
Definition at line 1916 of file MeterPanel.cpp.
References StartMonitoring().
|
private |
Definition at line 664 of file MeterPanel.cpp.
References mLayoutValid, mSlider, mStyle, mTipTimer, and ShowMenu().
|
private |
Definition at line 437 of file MeterPanel.cpp.
References MeterBar::b, ThemeBase::Colour(), ThemeBase::ColourDistance(), AColor::darkPen, Ruler::Draw(), AColor::DrawFocus(), DrawMeterBar(), gap, GetFont(), HandleLayout(), HorizontalStereoCompact, AColor::Line(), mBar, mBitmap, mBkgndBrush, mDB, mDBRange, mGradient, mHeight, mIsFocused, mLayoutValid, mLeftText, mLeftTextPos, mNumBars, mRightText, mRightTextPos, mRuler, mSlider, mSliderPos, mSliderSize, mStyle, mWidth, MeterBar::r, Ruler::SetTickColour(), theTheme, and VerticalStereoCompact.
|
private |
Definition at line 1921 of file MeterPanel.cpp.
References AutomaticStereo, PrefsListener::Broadcast(), eIsCreating, FindProjectFrame(), audacity::BasicSettings::Flush(), gPrefs, HorizontalStereo, Key(), MAX_REFRESH_RATE, mDB, mDesiredStyle, MeterPrefsID(), mGradient, MIN_REFRESH_RATE, mIsInput, mMeterRefreshRate, mProject, S, wxDialogWrapper::SetName(), anonymous_namespace{AudacityDontAskAgainMessageDialog.cpp}::style, title, VerticalStereo, audacity::BasicSettings::Write(), wxT(), XO(), and XXO().
|
private |
Definition at line 740 of file MeterPanel.cpp.
References mIsFocused.
|
private |
Definition at line 656 of file MeterPanel.cpp.
References mHeight, mLayoutValid, and mWidth.
|
private |
Definition at line 1076 of file MeterPanel.cpp.
References mSlider.
|
private |
Definition at line 1518 of file MeterPanel.cpp.
References mLayoutValid, and mNumBars.
Referenced by OnMeterUpdate().
|
overridevirtual |
This method is thread-safe! Feel free to call from a different thread (like from an audio I/O callback).
Implements MeterPanelBase.
Definition at line 837 of file MeterPanel.cpp.
References kMaxMeterBars, mBar, mLayoutValid, mMeterRefreshRate, mQueue, mRate, mT, mTimer, ResetBar(), and anonymous_namespace{ClipSegmentTest.cpp}::sampleRate.
Referenced by UpdatePrefs().
|
private |
Definition at line 1111 of file MeterPanel.cpp.
References MeterBar::clipping, MeterBar::isclipping, MeterBar::peak, MeterBar::peakHold, MeterBar::peakHoldTime, MeterBar::peakPeakHold, MeterBar::rms, and MeterBar::tailPeakCount.
Referenced by Reset().
void MeterPanel::RestoreState | ( | const State & | state | ) |
Definition at line 1870 of file MeterPanel.cpp.
References MeterPanel::State::mActive, mActive, mMeterRefreshRate, MeterPanel::State::mMonitoring, mMonitoring, MeterPanel::State::mSaved, and mTimer.
Referenced by MeterToolBar::ReCreateButtons().
auto MeterPanel::SaveState | ( | ) |
Definition at line 1865 of file MeterPanel.cpp.
Referenced by MeterToolBar::ReCreateButtons().
|
private |
Definition at line 1144 of file MeterPanel.cpp.
References Ruler::GetMaxSize(), HorizontalStereo, HorizontalStereoCompact, LinearDBFormat::Instance(), RealFormat::LinearInstance(), mDB, mDBRange, mRuler, mRulerHeight, mRulerWidth, mStyle, Ruler::SetBounds(), Ruler::SetFormat(), Ruler::SetOrientation(), and Ruler::SetRange().
Referenced by HandleLayout(), SetStyle(), and UpdatePrefs().
|
private |
Definition at line 1185 of file MeterPanel.cpp.
References MeterBar::b, gap, mBar, mClip, MeterBar::r, MeterBar::rClip, and MeterBar::vert.
Referenced by HandleLayout().
|
override |
Definition at line 2054 of file MeterPanel.cpp.
References BasicUI::SetFocus(), and MeterPanelBase::TemporarilyAllowFocus().
void MeterPanel::SetMixer | ( | wxCommandEvent & | event | ) |
Definition at line 768 of file MeterPanel.cpp.
References AudioIO::Get(), mIsInput, and mSlider.
Referenced by Decrease(), Increase(), and ShowDialog().
void MeterPanel::SetName | ( | const TranslatableString & | name | ) |
Definition at line 1908 of file MeterPanel.cpp.
References mSlider, and wxPanelWrapper::SetName().
Referenced by MeterToolBar::Populate().
void MeterPanel::SetStyle | ( | Style | newStyle | ) |
Definition at line 756 of file MeterPanel.cpp.
References AutomaticStereo, mDesiredStyle, mLayoutValid, mStyle, and SetActiveStyle().
bool MeterPanel::ShowDialog | ( | ) |
Definition at line 800 of file MeterPanel.cpp.
References mSlider, and SetMixer().
Referenced by MeterToolBar::ShowInputGainDialog(), and MeterToolBar::ShowOutputGainDialog().
void MeterPanel::ShowMenu | ( | const wxPoint & | pos | ) |
Definition at line 1887 of file MeterPanel.cpp.
References _, mActive, mIsInput, mMonitoring, OnMonitorID, OnPreferencesID, and BasicMenu::Handle::Popup().
Referenced by OnCharHook(), OnContext(), OnMouse(), and MeterToolBar::Populate().
void MeterPanel::StartMonitoring | ( | ) |
Definition at line 1797 of file MeterPanel.cpp.
References AudioIO::Get(), ProjectAudioIO::GetDefaultOptions(), mLayoutValid, mMonitoring, and mProject.
Referenced by OnMonitor().
void MeterPanel::StopMonitoring | ( | ) |
Definition at line 1817 of file MeterPanel.cpp.
References AudioIO::Get(), and mMonitoring.
|
overridevirtual |
Update the meters with a block of audio data.
Process the supplied block of audio data, extracting the peak and RMS levels to send to the meter. Also record runs of clipped samples to detect clipping that lies on block boundaries. This method is thread-safe! Feel free to call from a different thread (like from an audio I/O callback).
First overload:
numChannels | The number of channels of audio being played back or recorded. |
numFrames | The number of frames (samples) in this data block. It is assumed that there are the same number of frames in each channel. |
sampleData | The audio data itself, as interleaved samples. So indexing through the array we get the first sample of channel, first sample of channel 2 etc up to the first sample of channel (numChannels), then the second sample of channel 1, second sample of channel 2, and so to the second sample of channel (numChannels). The last sample in the array will be the (numFrames) sample for channel (numChannels). |
The second overload is for ease of use in MixerBoard.
Implements MeterPanelBase.
Definition at line 897 of file MeterPanel.cpp.
References MeterUpdateMsg::clipping, floatMax(), MeterUpdateMsg::headPeakCount, MAX_AUDIO, min(), mNumBars, mNumPeakSamplesToClip, mQueue, MeterUpdateMsg::numFrames, MeterUpdateMsg::peak, MeterUpdateMsg::rms, staffpad::audio::simd::sqrt(), and MeterUpdateMsg::tailPeakCount.
|
overrideprivatevirtual |
Implements PrefsListener.
Definition at line 342 of file MeterPanel.cpp.
References AutomaticStereo, DecibelScaleCutoff, gPrefs, HorizontalStereo, Key(), MAX_REFRESH_RATE, mDB, mDBRange, mDesiredStyle, mGradient, min(), MIN_REFRESH_RATE, mLayoutValid, mLeftSize, mMeterDisabled, mMeterRefreshRate, mRate, mRightSize, audacity::BasicSettings::Read(), Setting< T >::Read(), Reset(), SetActiveStyle(), anonymous_namespace{AudacityDontAskAgainMessageDialog.cpp}::style, VerticalStereo, and wxT().
Referenced by UpdateSelectedPrefs().
|
overrideprivatevirtual |
Reimplemented from PrefsListener.
Definition at line 394 of file MeterPanel.cpp.
References AudioIO::Get(), mEnabled, MeterPrefsID(), mIsInput, mSlider, and UpdatePrefs().
void MeterPanel::UpdateSliderControl | ( | ) |
Definition at line 410 of file MeterPanel.cpp.
References AudioIO::Get(), mEnabled, mIsInput, and mSlider.
Referenced by MeterToolBar::AdjustInputGain(), MeterToolBar::AdjustOutputGain(), MeterToolBar::ShowInputGainDialog(), MeterToolBar::ShowOutputGainDialog(), and MeterToolBar::UpdateControls().
|
friend |
Definition at line 303 of file MeterPanel.h.
|
private |
Definition at line 270 of file MeterPanel.h.
Referenced by IsActive(), OnAudioIOStatus(), RestoreState(), and ShowMenu().
|
private |
Definition at line 238 of file MeterPanel.h.
|
private |
Definition at line 237 of file MeterPanel.h.
|
private |
Definition at line 273 of file MeterPanel.h.
Referenced by GetMaxPeak(), GetPeakHold(), HandleLayout(), IsClipping(), OnMeterUpdate(), OnPaint(), Reset(), and SetBarAndClip().
|
private |
Definition at line 277 of file MeterPanel.h.
Referenced by DrawMeterBar(), and OnPaint().
|
private |
Definition at line 287 of file MeterPanel.h.
Referenced by DrawMeterBar(), and OnPaint().
|
private |
Definition at line 284 of file MeterPanel.h.
Referenced by DrawMeterBar().
|
private |
Definition at line 260 of file MeterPanel.h.
Referenced by DrawMeterBar(), and SetBarAndClip().
|
private |
Definition at line 286 of file MeterPanel.h.
Referenced by DrawMeterBar().
|
private |
Definition at line 256 of file MeterPanel.h.
Referenced by OnMeterUpdate(), OnPaint(), OnPreferences(), SetActiveStyle(), and UpdatePrefs().
|
private |
Definition at line 257 of file MeterPanel.h.
Referenced by OnMeterUpdate(), OnPaint(), SetActiveStyle(), and UpdatePrefs().
|
private |
Definition at line 258 of file MeterPanel.h.
Referenced by OnMeterUpdate().
|
private |
Definition at line 259 of file MeterPanel.h.
Referenced by OnMeterUpdate().
|
private |
Definition at line 254 of file MeterPanel.h.
Referenced by HandleLayout(), OnPreferences(), SetStyle(), and UpdatePrefs().
|
private |
Definition at line 288 of file MeterPanel.h.
|
private |
Definition at line 298 of file MeterPanel.h.
Referenced by OnAudioCapture(), UpdateSelectedPrefs(), and UpdateSliderControl().
|
private |
Definition at line 301 of file MeterPanel.h.
|
private |
Definition at line 255 of file MeterPanel.h.
Referenced by DrawMeterBar(), OnPaint(), OnPreferences(), and UpdatePrefs().
|
private |
Definition at line 246 of file MeterPanel.h.
Referenced by HandleLayout(), OnPaint(), and OnSize().
|
private |
Definition at line 300 of file MeterPanel.h.
Referenced by OnKillFocus(), OnPaint(), and OnSetFocus().
|
private |
Definition at line 251 of file MeterPanel.h.
Referenced by Key(), OnAudioIOStatus(), OnMeterUpdate(), OnPreferences(), SetMixer(), ShowMenu(), UpdateSelectedPrefs(), and UpdateSliderControl().
|
private |
Definition at line 275 of file MeterPanel.h.
Referenced by HandleLayout(), OnMouse(), OnPaint(), OnSize(), RepaintBarsNow(), Reset(), SetStyle(), StartMonitoring(), and UpdatePrefs().
|
private |
Definition at line 280 of file MeterPanel.h.
Referenced by HandleLayout(), and UpdatePrefs().
|
private |
Definition at line 291 of file MeterPanel.h.
Referenced by HandleLayout(), and OnPaint().
|
private |
Definition at line 278 of file MeterPanel.h.
Referenced by HandleLayout(), and OnPaint().
|
private |
Definition at line 289 of file MeterPanel.h.
Referenced by DrawMeterBar().
|
private |
Definition at line 266 of file MeterPanel.h.
Referenced by IsMeterDisabled(), OnMeterUpdate(), and UpdatePrefs().
|
private |
Definition at line 265 of file MeterPanel.h.
Referenced by OnAudioIOStatus(), OnPreferences(), Reset(), RestoreState(), and UpdatePrefs().
|
private |
Definition at line 268 of file MeterPanel.h.
Referenced by IsMonitoring(), OnAudioIOStatus(), RestoreState(), ShowMenu(), StartMonitoring(), and StopMonitoring().
|
private |
Definition at line 272 of file MeterPanel.h.
Referenced by GetMaxPeak(), GetPeakHold(), HandleLayout(), IsClipping(), OnMeterUpdate(), OnPaint(), RepaintBarsNow(), and UpdateDisplay().
|
private |
Definition at line 261 of file MeterPanel.h.
Referenced by OnMeterUpdate(), and UpdateDisplay().
|
private |
Definition at line 262 of file MeterPanel.h.
Referenced by OnMeterUpdate().
|
private |
Definition at line 283 of file MeterPanel.h.
Referenced by DrawMeterBar().
|
private |
Definition at line 282 of file MeterPanel.h.
Referenced by DrawMeterBar().
|
private |
Definition at line 240 of file MeterPanel.h.
Referenced by OnAudioCapture(), OnAudioIOStatus(), OnPreferences(), and StartMonitoring().
|
private |
Definition at line 241 of file MeterPanel.h.
Referenced by Clear(), OnMeterUpdate(), Reset(), and UpdateDisplay().
|
private |
Definition at line 264 of file MeterPanel.h.
Referenced by OnMeterUpdate(), Reset(), and UpdatePrefs().
|
private |
Definition at line 281 of file MeterPanel.h.
Referenced by HandleLayout(), and UpdatePrefs().
|
private |
Definition at line 292 of file MeterPanel.h.
Referenced by HandleLayout(), and OnPaint().
|
private |
Definition at line 279 of file MeterPanel.h.
Referenced by HandleLayout(), and OnPaint().
|
private |
Definition at line 285 of file MeterPanel.h.
Referenced by DrawMeterBar().
|
private |
Definition at line 290 of file MeterPanel.h.
Referenced by HandleLayout(), OnPaint(), and SetActiveStyle().
|
private |
Definition at line 249 of file MeterPanel.h.
Referenced by HandleLayout(), and SetActiveStyle().
|
private |
Definition at line 248 of file MeterPanel.h.
Referenced by HandleLayout(), and SetActiveStyle().
|
private |
Definition at line 294 of file MeterPanel.h.
Referenced by Decrease(), Increase(), OnAudioCapture(), OnKeyDown(), OnKillFocus(), OnMouse(), OnPaint(), OnTipTimeout(), SetMixer(), SetName(), ShowDialog(), UpdateSelectedPrefs(), and UpdateSliderControl().
|
private |
Definition at line 295 of file MeterPanel.h.
Referenced by HandleLayout(), and OnPaint().
|
private |
Definition at line 296 of file MeterPanel.h.
Referenced by HandleLayout(), and OnPaint().
|
private |
Definition at line 253 of file MeterPanel.h.
Referenced by HandleLayout(), Key(), OnCharHook(), OnContext(), OnMouse(), OnPaint(), SetActiveStyle(), and SetStyle().
|
private |
Definition at line 263 of file MeterPanel.h.
Referenced by OnMeterUpdate(), and Reset().
|
private |
Definition at line 242 of file MeterPanel.h.
Referenced by OnAudioIOStatus(), Reset(), and RestoreState().
|
private |
Definition at line 243 of file MeterPanel.h.
Referenced by OnKillFocus(), and OnMouse().
|
private |
Definition at line 245 of file MeterPanel.h.
Referenced by HandleLayout(), OnPaint(), and OnSize().