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

  1. //---------------------------------------------------------------------------
  2.  
  3. #ifndef UnitKontrastH
  4. #define UnitKontrastH
  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 TFormKontrast : public TForm
  15. {
  16. __published:    // IDE-managed Components
  17.   TImage *rys1;
  18.   TLabel *Label1;
  19.   TTrackBar *tbKontrast;
  20.   TImage *rys2;
  21.   TLabel *Label2;
  22.   TLabel *Label3;
  23.   TBitBtn *BitBtn1;
  24.   TBitBtn *BitBtn2;
  25.   TEdit *edKontrast;
  26.   void __fastcall tbKontrastChange(TObject *Sender);
  27.   void __fastcall edKontrastChange(TObject *Sender);
  28.   void __fastcall FormShow(TObject *Sender);
  29. private:    // User declarations
  30. public:        // User declarations
  31.   __fastcall TFormKontrast(TComponent* Owner);
  32. };
  33. //---------------------------------------------------------------------------
  34. extern PACKAGE TFormKontrast *FormKontrast;
  35. //---------------------------------------------------------------------------
  36. #endif
  37.