home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / TASKVCLD.PAK / VCLDLG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.9 KB  |  57 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows
  3. // Copyright (c) 1996 by Borland International, All Rights Reserved
  4. //
  5. // VCLDLG.H
  6. // This file declares a VCL form class.  The code was generated entirely
  7. // by C++Builder.  Except for these opening comments, nothing has
  8. // been altered.
  9. //
  10. // The VCLDLG example invokes the form from an OWL application.  
  11. //---------------------------------------------------------------------------
  12. #ifndef vcldlgH
  13. #define vcldlgH
  14. //---------------------------------------------------------------------------
  15. #include <vcl\Classes.hpp>
  16. #include <vcl\Controls.hpp>
  17. #include <vcl\StdCtrls.hpp>
  18. #include <vcl\Forms.hpp>
  19.  
  20. using namespace Graphics;
  21. using namespace Forms;
  22. //---------------------------------------------------------------------------
  23. class TForm1 : public TForm
  24. {
  25. __published:    // IDE-managed Components 
  26.     TGroupBox *GroupBox1;
  27.     TLabel *Label1;
  28.     TLabel *Label2;
  29.     TLabel *Label3;
  30.     TLabel *Label4;
  31.     TLabel *Label5;
  32.     TLabel *Label6;
  33.     TLabel *Label7;
  34.     TLabel *Label8;
  35.     TGroupBox *GroupBox2;
  36.     TScrollBar *ScrollBar_Red;
  37.     TLabel *Label9;
  38.     TLabel *Label10;
  39.     TLabel *Label11;
  40.     TScrollBar *ScrollBar_Green;
  41.     TScrollBar *ScrollBar_Blue;
  42.     TButton *Button2;
  43.     TButton *Button1;
  44.     TLabel *Label_Selection;
  45.     void __fastcall FormCreate(TObject *Sender);
  46.     void __fastcall ScrollBar_Change(TObject *Sender);
  47. private:        // User declarations
  48. public:         // User declarations
  49.     virtual __fastcall TForm1(TComponent* Owner);
  50.     COLORREF GetSelectedColor(void);
  51.     void SetSelectedColor(COLORREF color);
  52. };
  53. //---------------------------------------------------------------------------
  54. extern TForm1 *Form1;
  55. //---------------------------------------------------------------------------
  56. #endif
  57.