Initial commit

This commit is contained in:
2026-06-13 00:10:11 +08:00
commit 2191c1aed4
535 changed files with 184587 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
//---------------------------------------------------------------------------
#ifndef UpdateListBoxUnitH
#define UpdateListBoxUnitH
//---------------------------------------------------------------------------
#include "SkinListBoxUnit.h"
//---------------------------------------------------------------------------
namespace UpdateListBoxUnit
{
//---------------------------------------------------------------------------
class TListBox : public TSkinListBox
{
private:
TBitmap *m_imgBackground;
TFont * m_pFntText;
protected:
virtual void __fastcall DrawItem(int Index, const System::Types::TRect &Rect, Winapi::Windows::TOwnerDrawState State);
MESSAGE void __fastcall WMPaint(Winapi::Messages::TWMPaint &Message);
BEGIN_MESSAGE_MAP
MESSAGE_HANDLER(WM_PAINT, TWMPaint, WMPaint)
END_MESSAGE_MAP(TSkinListBox)
public:
__fastcall virtual TListBox(System::Classes::TComponent* AOwner);
__fastcall ~TListBox();
};
}
using namespace UpdateListBoxUnit;
#endif