1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-07 12:12:23 +01:00

Implementation of Timer Toolbar

PRL:  Rebased onto recent master, fixed compilation and indentation, added new
files to the XCode project, added an EXPERIMENTAL flag
This commit is contained in:
Loss
2019-10-14 14:00:26 -03:00
committed by Paul Licameli
parent f1e5e96480
commit e787694f07
16 changed files with 344 additions and 25 deletions

View File

@@ -1415,6 +1415,14 @@ void NumericTextCtrl::SetValue(double newValue)
ControlsToValue();
}
void NumericTextCtrl::SetDigitSize(int width, int height)
{
mDigitBoxW = width;
mDigitBoxH = height;
Layout();
Fit();
}
void NumericTextCtrl::SetReadOnly(bool readOnly)
{
mReadOnly = readOnly;