home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / FONTLIST.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  1KB  |  34 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef FontListH
  7. #define FontListH
  8. //---------------------------------------------------------------------------
  9. #include <Forms.hpp>
  10. #include <StdCtrls.hpp>
  11. #include <Controls.hpp>
  12. #include <Classes.hpp>
  13. //---------------------------------------------------------------------------
  14. class TForm1 : public TForm
  15. {
  16. __published:
  17.     TListBox *ListBox1;
  18.     TLabel *Label1;
  19.     TLabel *FontLabel;
  20.     void __fastcall ListBox1Click(TObject *Sender);
  21.     void __fastcall DrawItem(TWinControl *Control, int Index,
  22.       TRect &Rect, TOwnerDrawState State);
  23.     void __fastcall ListBox1MeasureItem(TWinControl *Control,
  24.       int Index, int &Height);
  25.     void __fastcall FormCreate(TObject *Sender);
  26. private:        // private user declarations
  27. public:         // public user declarations
  28.     virtual __fastcall TForm1(TComponent* Owner);
  29. };
  30. //---------------------------------------------------------------------------
  31. extern TForm1 *Form1;
  32. //---------------------------------------------------------------------------
  33. #endif
  34.