mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-08 14:13:57 +01:00
... Should have no effect on generated code, except perhaps some slight faster virtual function calls. Mostly useful as documentation of design intent. Tried to mark every one of our classes that inherits from another, or is a base for others, or has abstract virtual functions, and a few others besides.
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 wxDialog
|
|
{
|
|
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(wxWindow * parent, ScoreAlignParams ¶ms);
|
|
~ScoreAlignDialog();
|
|
|
|
bool TransferDataFromWindow();
|
|
|
|
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
|