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

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