Initial commit

This commit is contained in:
2026-06-13 00:05:19 +08:00
commit 754cd7ccdb
402 changed files with 123771 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
//---------------------------------------------------------------------------
#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