22 lines
539 B
C++
22 lines
539 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef BackgroundFormH
|
|
#define BackgroundFormH
|
|
|
|
#include <Vcl.ComCtrls.hpp>
|
|
//---------------------------------------------------------------------------
|
|
|
|
class TBackgroundForm : public TForm
|
|
{
|
|
private:
|
|
int m_yLeftSide;
|
|
protected:
|
|
void FillLeftSide(int y){m_yLeftSide=y;};
|
|
MESSAGE void __fastcall WMEraseBkgnd(Winapi::Messages::TWMEraseBkgnd &Message);
|
|
|
|
public:
|
|
__fastcall TBackgroundForm(TComponent* AOwner);
|
|
__fastcall ~TBackgroundForm();
|
|
};
|
|
#endif
|