76 lines
2.1 KiB
C++
76 lines
2.1 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef AudioEffectFormUnitH
|
|
#define AudioEffectFormUnitH
|
|
//---------------------------------------------------------------------------
|
|
#include <System.Classes.hpp>
|
|
#include <Vcl.Controls.hpp>
|
|
#include <Vcl.StdCtrls.hpp>
|
|
#include <Vcl.Forms.hpp>
|
|
#include <Vcl.ComCtrls.hpp>
|
|
#include <Vcl.ExtCtrls.hpp>
|
|
#include <Vcl.Imaging.jpeg.hpp>
|
|
#include "PNGButton.hpp"
|
|
#include <Vcl.Imaging.pngimage.hpp>
|
|
#include <vector>
|
|
using namespace std;
|
|
|
|
//---------------------------------------------------------------------------
|
|
class TAudioEffectForm : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TLabel *m_lblCaption;
|
|
TPNGButton *m_btnCancel;
|
|
TPNGButton *m_btnOk;
|
|
TComboBox *m_cbBox0;
|
|
TLabel *Label1;
|
|
TComboBox *m_cbBox10;
|
|
TLabel *Label4;
|
|
TComboBox *m_cbBox3;
|
|
TLabel *Label5;
|
|
TComboBox *m_cbBox4;
|
|
TLabel *Label6;
|
|
TComboBox *m_cbBox5;
|
|
TLabel *Label7;
|
|
TComboBox *m_cbBox8;
|
|
TLabel *Label8;
|
|
TComboBox *m_cbBox6;
|
|
TLabel *Label9;
|
|
TComboBox *m_cbBox7;
|
|
TLabel *Label10;
|
|
TLabel *Label11;
|
|
TComboBox *m_cbBox9;
|
|
TImage *m_imgBk;
|
|
TPNGButton *m_btnClose;
|
|
TGroupBox *GroupBox1;
|
|
TPNGButton *m_btnPreview1;
|
|
TPNGButton *m_btnPreview0;
|
|
TImage *m_imgIcon;
|
|
TButton *m_btnClear;
|
|
void __fastcall FormCreate(TObject *Sender);
|
|
void __fastcall FormActivate(TObject *Sender);
|
|
void __fastcall ComboChange(TObject *Sender);
|
|
void __fastcall PreviewClick(TObject *Sender);
|
|
void __fastcall OkClick(TObject *Sender);
|
|
void __fastcall CancelClick(TObject *Sender);
|
|
void __fastcall ClearAllClick(TObject *Sender);
|
|
|
|
|
|
private: // User declarations
|
|
TComboBox *m_aCombos[11];
|
|
bool m_bSong;
|
|
|
|
void __fastcall WMNCHitTest(TWMNCHitTest &Msg);
|
|
|
|
BEGIN_MESSAGE_MAP
|
|
MESSAGE_HANDLER(WM_NCHITTEST, TWMNCHitTest, WMNCHitTest)
|
|
END_MESSAGE_MAP(TForm)
|
|
|
|
public: // User declarations
|
|
__fastcall TAudioEffectForm(TComponent* Owner, bool bSong);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TAudioEffectForm *AudioEffectForm;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|