mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-03 17:19:43 +02:00
94 lines
2.1 KiB
C++
94 lines
2.1 KiB
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ScoreAlignDialog.h
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_SCORE_ALIGN_DIALOG__
|
|
#define __AUDACITY_SCORE_ALIGN_DIALOG__
|
|
|
|
#include <wx/dialog.h>
|
|
#include <wx/slider.h>
|
|
#include <wx/checkbox.h>
|
|
#include "ScoreAlignParams.h"
|
|
|
|
class wxButton;
|
|
class wxSizer;
|
|
class wxString;
|
|
|
|
void CloseScoreAlignDialog();
|
|
|
|
//----------------------------------------------------------------------------
|
|
// ScoreAlignDialog
|
|
//----------------------------------------------------------------------------
|
|
|
|
// Declare window functions
|
|
|
|
class ScoreAlignDialog final : public wxDialogWrapper
|
|
{
|
|
public:
|
|
ScoreAlignParams p;
|
|
|
|
wxStaticText *mFramePeriodLabel;
|
|
wxSlider *mFramePeriodSlider;
|
|
wxStaticText *mFramePeriodText;
|
|
|
|
wxStaticText *mWindowSizeLabel;
|
|
wxSlider *mWindowSizeSlider;
|
|
wxStaticText *mWindowSizeText;
|
|
|
|
wxStaticText *mSilenceThresholdLabel;
|
|
wxSlider *mSilenceThresholdSlider;
|
|
wxStaticText *mSilenceThresholdText;
|
|
|
|
wxCheckBox *mForceFinalAlignmentCheckBox;
|
|
wxCheckBox *mIgnoreSilenceCheckBox;
|
|
|
|
wxStaticText *mPresmoothLabel;
|
|
wxSlider *mPresmoothSlider;
|
|
wxStaticText *mPresmoothText;
|
|
|
|
wxStaticText *mLineTimeLabel;
|
|
wxSlider *mLineTimeSlider;
|
|
wxStaticText *mLineTimeText;
|
|
|
|
wxStaticText *mSmoothTimeLabel;
|
|
wxSlider *mSmoothTimeSlider;
|
|
wxStaticText *mSmoothTimeText;
|
|
|
|
wxButton *mDefaultButton;
|
|
|
|
// constructors and destructors
|
|
ScoreAlignDialog(ScoreAlignParams ¶ms);
|
|
~ScoreAlignDialog();
|
|
|
|
bool TransferDataFromWindow() override;
|
|
|
|
private:
|
|
enum {
|
|
ID_BASE = 10000,
|
|
ID_PRESMOOTH,
|
|
ID_WINDOWSIZE,
|
|
ID_FRAMEPERIOD,
|
|
ID_LINETIME,
|
|
ID_SMOOTHTIME,
|
|
ID_SILENCETHRESHOLD,
|
|
ID_FORCEFINALALIGNMENT,
|
|
ID_IGNORESILENCE,
|
|
ID_DEFAULT
|
|
};
|
|
|
|
// handlers
|
|
void OnOK(wxCommandEvent & event);
|
|
void OnCancel(wxCommandEvent & event);
|
|
void OnSlider(wxCommandEvent & event);
|
|
void OnDefault(wxCommandEvent & event);
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
#endif
|