mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-06 14:52:34 +02:00
Linux/Mac will need new files adding to project, SpectralSelectionBar.cpp, NumericTextCtrl.cpp.
130 lines
2.7 KiB
C++
130 lines
2.7 KiB
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
TimeDialog.cpp
|
|
|
|
Dominic Mazzoni
|
|
|
|
*******************************************************************//**
|
|
|
|
\class TimeDialog
|
|
\brief Dialog used to request a time value.
|
|
|
|
*//*******************************************************************/
|
|
|
|
#include "Audacity.h"
|
|
|
|
#include <wx/defs.h>
|
|
#include <wx/dynarray.h>
|
|
#include <wx/intl.h>
|
|
#include <wx/sizer.h>
|
|
#include <wx/string.h>
|
|
|
|
#include "widgets/NumericTextCtrl.h"
|
|
#include "ShuttleGui.h"
|
|
#include "TimeDialog.h"
|
|
|
|
BEGIN_EVENT_TABLE(TimeDialog, wxDialog)
|
|
EVT_COMMAND(wxID_ANY, EVT_TIMETEXTCTRL_UPDATED, TimeDialog::OnUpdate)
|
|
END_EVENT_TABLE()
|
|
|
|
TimeDialog::TimeDialog(wxWindow *parent,
|
|
const wxString &title,
|
|
const wxString &format,
|
|
double rate,
|
|
double time,
|
|
const wxString &prompt)
|
|
: wxDialog(parent, wxID_ANY, title),
|
|
mPrompt(prompt),
|
|
mFormat(format),
|
|
mRate(rate),
|
|
mTime(time),
|
|
mTimeCtrl(NULL)
|
|
{
|
|
ShuttleGui S(this, eIsCreating);
|
|
PopulateOrExchange(S);
|
|
}
|
|
|
|
void TimeDialog::PopulateOrExchange(ShuttleGui &S)
|
|
{
|
|
S.SetBorder(5);
|
|
S.StartVerticalLay(true);
|
|
{
|
|
S.StartStatic(mPrompt, true);
|
|
{
|
|
mTimeCtrl = new
|
|
NumericTextCtrl(
|
|
NumericConverter::TIME, this,
|
|
wxID_ANY,
|
|
mFormat,
|
|
mTime,
|
|
mRate,
|
|
wxDefaultPosition,
|
|
wxDefaultSize,
|
|
true);
|
|
mTimeCtrl->SetName(mPrompt);
|
|
S.AddWindow(mTimeCtrl);
|
|
mTimeCtrl->EnableMenu();
|
|
}
|
|
S.EndStatic();
|
|
}
|
|
S.EndVerticalLay();
|
|
S.AddStandardButtons();
|
|
|
|
TransferDataToWindow();
|
|
|
|
Layout();
|
|
Fit();
|
|
SetMinSize(GetSize());
|
|
Center();
|
|
}
|
|
|
|
bool TimeDialog::TransferDataToWindow()
|
|
{
|
|
mTimeCtrl->SetFormatString(mTimeCtrl->GetBuiltinFormat(mFormat));
|
|
mTimeCtrl->SetSampleRate(mRate);
|
|
mTimeCtrl->SetValue(mTime);
|
|
mTimeCtrl->SetFocus();
|
|
|
|
return true;
|
|
}
|
|
|
|
bool TimeDialog::TransferDataFromWindow()
|
|
{
|
|
mTime = mTimeCtrl->GetValue();
|
|
|
|
return true;
|
|
}
|
|
|
|
const double TimeDialog::GetTimeValue()
|
|
{
|
|
return mTime;
|
|
}
|
|
|
|
void TimeDialog::SetFormatString(wxString formatString)
|
|
{
|
|
mFormat = formatString;
|
|
TransferDataToWindow();
|
|
}
|
|
|
|
void TimeDialog::SetSampleRate(double sampleRate)
|
|
{
|
|
mRate = sampleRate;
|
|
TransferDataToWindow();
|
|
}
|
|
|
|
void TimeDialog::SetTimeValue(double newTime)
|
|
{
|
|
mTime = newTime;
|
|
TransferDataToWindow();
|
|
}
|
|
|
|
void TimeDialog::OnUpdate(wxCommandEvent &event)
|
|
{
|
|
Layout();
|
|
Refresh();
|
|
|
|
event.Skip(false);
|
|
}
|