home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #ifndef UOwnerDrawH
- #define UOwnerDrawH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ShellAPI.hpp>
- #include <CommCtrl.hpp>
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TListBox *ListBox1;
- TImageList *ImageList1;
- void __fastcall FormCreate(TObject *Sender);
- void __fastcall ListBox1DrawItem(TWinControl *Control, int Index,
- TRect &Rect, TOwnerDrawState State);
- private: // User declarations
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
-