mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-14 17:14:07 +01:00
...no actions reimplemented to them yet. Later commits will move special cases one at a time from TrackPanel, preserving all click and drag capabilities at each step. With a few exceptions, but those lost abilities are restored in yet later commits. (Ctrl+Click on the Label track being one.)
29 lines
624 B
C++
29 lines
624 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
TimeTrackVRulerControls.cpp
|
|
|
|
Paul Licameli split from TrackPanel.cpp
|
|
|
|
**********************************************************************/
|
|
|
|
#include "../../../Audacity.h"
|
|
#include "TimeTrackVRulerControls.h"
|
|
#include "../../../HitTestResult.h"
|
|
|
|
TimeTrackVRulerControls::TimeTrackVRulerControls()
|
|
: TrackVRulerControls()
|
|
{
|
|
}
|
|
|
|
TimeTrackVRulerControls &TimeTrackVRulerControls::Instance()
|
|
{
|
|
static TimeTrackVRulerControls instance;
|
|
return instance;
|
|
}
|
|
|
|
TimeTrackVRulerControls::~TimeTrackVRulerControls()
|
|
{
|
|
}
|