Files
AC_Pro/ManageSongFormUnit.h
2026-06-13 00:05:19 +08:00

41 lines
1.4 KiB
C++

//---------------------------------------------------------------------------
#ifndef ManageSongFormUnitH
#define ManageSongFormUnitH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ExtCtrls.hpp>
#include <Vcl.Graphics.hpp>
#include <Vcl.Imaging.pngimage.hpp>
#include "PNGButton.hpp"
#include "GeneralDialogPanel.h"
#include "TextButton.h"
//---------------------------------------------------------------------------
class TManageSongForm : public TForm
{
__published: // IDE-managed Components
TImage *m_ImgFlag;
TLabel *m_lbMsg;
TLabel *m_lbGoManage;
TGeneralDialogPanel *m_pGenenalBKG;
void __fastcall GoManageMouseEnter(TObject *Sender);
void __fastcall GoManageMouseLeave(TObject *Sender);
void __fastcall GoManageClick(TObject *Sender);
void __fastcall FormKeyDown(TObject *Sender, WORD &Key, TShiftState Shift);
void __fastcall FormDestroy(TObject *Sender);
private:
unsigned char * m_pQRdata;
String m_strGo;
public: // User declarations
__fastcall TManageSongForm(TComponent* Owner, bool bUpload, UINT idSong=0 );
void SetMessage(String strMsg);
};
//---------------------------------------------------------------------------
extern PACKAGE TManageSongForm *ManageSongForm;
//---------------------------------------------------------------------------
#endif