home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 July / DPPCPRO0799.ISO / RWC / Code / VisProg.exe / UGray.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-04-10  |  1.1 KB  |  31 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef UGrayH
  3. #define UGrayH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <Dialogs.hpp>
  10. #include <ExtCtrls.hpp>
  11. #include <ExtDlgs.hpp>
  12. //---------------------------------------------------------------------------
  13. class TForm1 : public TForm
  14. {
  15. __published:    // IDE-managed Components
  16.         TScrollBox *ScrollBox1;
  17.         TButton *Open;
  18.         TButton *GrayScale;
  19.         TOpenPictureDialog *OpenDialog;
  20.         TImage *Image1;
  21.         void __fastcall OpenClick(TObject *Sender);
  22.         void __fastcall GrayScaleClick(TObject *Sender);
  23. private:    // User declarations
  24. public:        // User declarations
  25.         __fastcall TForm1(TComponent* Owner);
  26. };
  27. //---------------------------------------------------------------------------
  28. extern PACKAGE TForm1 *Form1;
  29. //---------------------------------------------------------------------------
  30. #endif
  31.