home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2003 November / PCWK1103B.iso / PCWK-txt / Warsztat_Cpp_Builder / UnitGamma.h < prev    next >
C/C++ Source or Header  |  2003-09-21  |  1KB  |  36 lines

  1. //---------------------------------------------------------------------------
  2.  
  3. #ifndef UnitGammaH
  4. #define UnitGammaH
  5. //---------------------------------------------------------------------------
  6. #include <Classes.hpp>
  7. #include <Controls.hpp>
  8. #include <StdCtrls.hpp>
  9. #include <Forms.hpp>
  10. #include <Buttons.hpp>
  11. #include <ComCtrls.hpp>
  12. #include <ExtCtrls.hpp>
  13. //---------------------------------------------------------------------------
  14. class TFormGamma : public TForm
  15. {
  16. __published:    // IDE-managed Components
  17.   TImage *rys1;
  18.   TLabel *Label1;
  19.   TTrackBar *tbGamma;
  20.   TImage *rys2;
  21.   TLabel *Label2;
  22.   TLabel *Label3;
  23.   TBitBtn *BitBtn1;
  24.   TBitBtn *BitBtn2;
  25.   TEdit *edGamma;
  26.   void __fastcall tbGammaChange(TObject *Sender);
  27.   void __fastcall edGammaChange(TObject *Sender);
  28. private:    // User declarations
  29. public:        // User declarations
  30.   __fastcall TFormGamma(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern PACKAGE TFormGamma *FormGamma;
  34. //---------------------------------------------------------------------------
  35. #endif
  36.