Audacity 3.2.0
CustomUpdaterValue.h
Go to the documentation of this file.
1/**********************************************************************
2
3 Audacity: A Digital Audio Editor
4
5 CustomUpdaterValue.h
6
7 Dominic Mazzoni
8 Michael Papadopoulos split from Ruler.h
9
10**********************************************************************/
11
12#ifndef __AUDACITY_CUSTOM_UPDATER_VALUE__
13#define __AUDACITY_CUSTOM_UPDATER_VALUE__
14
15#include "CustomUpdater.h"
16
17class CustomUpdaterValue final : public CustomUpdater {
18public:
19 static const CustomUpdaterValue &Instance();
20 CustomUpdaterValue() = default;
22
23protected:
24 bool TickCustom(wxDC& dc, int labelIdx, wxFont font,
25 TickOutputs outputs,
26 const RulerStruct& context
27 ) const override;
28};
29
30#endif
CustomUpdaterValue()=default
static const CustomUpdaterValue & Instance()
~CustomUpdaterValue() override
bool TickCustom(wxDC &dc, int labelIdx, wxFont font, TickOutputs outputs, const RulerStruct &context) const override