home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 5 / Komponety.exe / ibevnts.h < prev    next >
C/C++ Source or Header  |  1998-02-09  |  2KB  |  53 lines

  1. //---------------------------------------------------------------------------
  2. // Borland C++Builder
  3. // Copyright (c) 1987, 1998 Borland International Inc.  All Rights Reserved.
  4. //---------------------------------------------------------------------------
  5. #ifndef IbevntsH
  6. #define IbevntsH
  7. //---------------------------------------------------------------------------
  8. #include <Grids.hpp>
  9. #include <StdCtrls.hpp>
  10. #include <ExtCtrls.hpp>
  11. #include <Dialogs.hpp>
  12. #include <Forms.hpp>
  13. #include <Controls.hpp>
  14. #include <Graphics.hpp>
  15. #include <Classes.hpp>
  16. #include <Messages.hpp>
  17. #include <Windows.hpp>
  18. #include <SysUtils.hpp>
  19. #include <System.hpp>
  20.  
  21. namespace Ibevnts
  22. {
  23. //-- type declarations -------------------------------------------------------
  24. class PACKAGE TIBEAEventsEditor : public TForm
  25. {
  26. __published:
  27.     TPanel *Panel1;
  28.     TPanel *Panel2;
  29.     TStringGrid *cEvents;
  30.     TLabel *RequestedEvents;
  31.     TButton *bOK;
  32.     TButton *bCancel;
  33.     void __fastcall FormCreate(TObject *Sender);
  34. public:
  35.     __fastcall virtual TIBEAEventsEditor(Classes::TComponent *AOwner) : Forms::TForm(
  36.         AOwner) { }
  37.     __fastcall TIBEAEventsEditor(Classes::TComponent *AOwner, int
  38.         Dummy) : Forms::TForm(AOwner, Dummy) { }
  39.     __fastcall virtual ~TIBEAEventsEditor(void) { }
  40.  
  41. };
  42.  
  43. //-- var, const, procedure ---------------------------------------------------
  44. extern TIBEAEventsEditor *IBEAEventsEditor;
  45. bool __fastcall EditAlerterEvents(Classes::TStrings *Events);
  46. }       /* namespace Ibevnts */
  47.  
  48. #if !defined(NO_IMPLICIT_NAMESPACE_USE)
  49. using namespace Ibevnts;
  50. #endif
  51. //-- end unit ----------------------------------------------------------------
  52. #endif  // Ibevnts
  53.