//--------------------------------------------------------------------------- #ifndef ManageSongFormUnitH #define ManageSongFormUnitH //--------------------------------------------------------------------------- #include #include #include #include #include #include #include #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