Audacity 3.2.0
WaveChannelVRulerControls.cpp
Go to the documentation of this file.
1/**********************************************************************
2
3Audacity: A Digital Audio Editor
4
5WaveChannelVRulerControls.cpp
6
7Paul Licameli split from TrackPanel.cpp
8
9**********************************************************************/
10
11
13
14#include "../../../../RefreshCode.h"
15#include "../../../../TrackPanelMouseEvent.h"
16#include "WaveTrack.h"
17
18#include "AColor.h"
19#include "AllThemeResources.h"
20#include "Theme.h"
21#include "../../../../TrackArtist.h"
22#include "../../../../TrackPanelDrawingContext.h"
23#include "../../../../widgets/LinearUpdater.h"
24#include "../../../../widgets/RealFormat.h"
25#include "../../../../widgets/Ruler.h"
26
29{
30 static Ruler theRuler{
32 return theRuler;
33}
34
37 const wxRect &rect_, unsigned iPass)
38{
39 Ruler &vruler = ScratchRuler();
40
41 // Draw on a later pass because the bevel overpaints one pixel
42 // out of bounds on the bottom
43
44 if ( iPass == TrackArtist::PassControls ) {
45 auto rect = rect_;
46 --rect.width;
47 --rect.height;
48
49 auto dc = &context.dc;
50
51 // All waves have a ruler in the info panel
52 // The ruler needs a bevelled surround.
53 wxRect bev = rect;
54 bev.Inflate(-1, 0);
55 bev.width += 1;
56
57 bool highlight = false;
58#ifdef EXPERIMENTAL_TRACK_PANEL_HIGHLIGHTING
59 highlight = rect.Contains(context.lastState.GetPosition());
60#endif
61
62 AColor::BevelTrackInfo(*dc, true, bev, highlight);
63
64 // Right align the ruler
65 wxRect rr = rect;
66 rr.width--;
67
68// Next code tests for a VRuler that is narrower than the rectangle
69// we are drawing into. If so, it 'right aligns' the ruler into the
70// rectangle.
71// However, it seems this occurs only because vrulerSize is not up to
72// date. That in turn caused Bug 2248, which was the labels being
73// drawn further right than they should be (in MultiView mode).
74// #ifdeffing out this code fixes bug 2248
75#if 0
76 if ( t->vrulerSize.GetWidth() < rect.GetWidth()) {
77 int adj = rr.GetWidth() - t->vrulerSize.GetWidth();
78 rr.x += adj;
79 rr.width -= adj;
80 }
81#endif
82
83 controls.UpdateRuler(rr);
84
85 vruler.SetTickColour( theTheme.Colour( clrTrackPanelText ));
86 vruler.Draw(*dc);
87 }
88}
THEME_API Theme theTheme
Definition: Theme.cpp:82
static void BevelTrackInfo(wxDC &dc, bool up, const wxRect &r, bool highlight=false)
Definition: AColor.cpp:338
virtual void UpdateRuler(const wxRect &rect)=0
static const LinearUpdater & Instance()
static const RealFormat & LinearInstance()
Definition: RealFormat.cpp:14
Used to display a Ruler.
Definition: Ruler.h:34
void SetTickColour(const wxColour &colour)
Definition: Ruler.h:135
void Draw(wxDC &dc) const
Definition: Ruler.cpp:441
wxColour & Colour(int iIndex)
AUDACITY_DLL_API Ruler & ScratchRuler()
AUDACITY_DLL_API void DoDraw(ChannelVRulerControls &controls, TrackPanelDrawingContext &context, const wxRect &rect, unsigned iPass)