home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / Examples / Apps / ColorDlg / MAINFORM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1999-01-26  |  1.2 KB  |  31 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef mainformH
  7. #define mainformH
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. #include <Dialogs.hpp>
  14. #include <ExtCtrls.hpp>
  15. //---------------------------------------------------------------------------
  16. class TForm1 : public TForm
  17. {
  18. __published:    // IDE-managed Components 
  19.     TColorDialog *ColorDialog;
  20.     TButton *Button;
  21.     TPanel *Panel1;
  22.     void __fastcall ButtonClick(TObject *Sender);
  23. private:    // User declarations
  24. public:        // User declarations
  25.     virtual __fastcall TForm1(TComponent* Owner);
  26. };
  27. //---------------------------------------------------------------------------
  28. extern TForm1 *Form1;
  29. //---------------------------------------------------------------------------
  30. #endif
  31.