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
+36
View File
@@ -0,0 +1,36 @@
//---------------------------------------------------------------------------
#ifndef PlayTimePanelH
#define PlayTimePanelH
//#include <vcl.h>
//---------------------------------------------------------------------------
class TPlayTimePanel : public TPanel
{
private:
int m_iTime[3],
m_iLeft[3],
m_iRight[3];
MESSAGE void __fastcall WMEraseBkgnd(TWMEraseBkgnd &Message);
BEGIN_MESSAGE_MAP
MESSAGE_HANDLER(WM_ERASEBKGND, TWMEraseBkgnd, WMEraseBkgnd)
END_MESSAGE_MAP(TPanel)
protected:
virtual void __fastcall CreateWnd();
virtual void __fastcall Paint();
public:
__fastcall TPlayTimePanel(TComponent *Owner);
__fastcall ~TPlayTimePanel();
void __fastcall SetTime( int iTime[3] );
__published:
};
#endif