FrmIncidentAlarmF.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //---------------------------------------------------------------------------
  2. #ifndef FrmIncidentAlarmFH
  3. #define FrmIncidentAlarmFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ADODB.hpp>
  10. #include <DB.hpp>
  11. #include <ExtCtrls.hpp>
  12. #include <Menus.hpp>
  13. //---------------------------------------------------------------------------
  14. #include "CDSCodeF.h"
  15. #include "CDSFacilityF.h"
  16. #include "CDSIncidentF.h"
  17. #include <Graphics.hpp>
  18. #include "FRAME_IncidentAutoListF.h"
  19. #include "cxContainer.hpp"
  20. #include "cxControls.hpp"
  21. #include "cxEdit.hpp"
  22. #include "cxGraphics.hpp"
  23. #include "cxLabel.hpp"
  24. #include "cxLookAndFeelPainters.hpp"
  25. #include "cxLookAndFeels.hpp"
  26. #include "dxSkinBlack.hpp"
  27. #include "dxSkinBlue.hpp"
  28. #include "dxSkinsCore.hpp"
  29. #include "dxSkinMcSkin.hpp"
  30. //---------------------------------------------------------------------------
  31. class TFrmIncidentAlarm : public TForm
  32. {
  33. __published: // IDE-managed Components
  34. TTimer *TmrTimeOut;
  35. TFRAMEIncidentAutoList *FRAMEIncidentAutoList1;
  36. TcxLabel *lblCaption;
  37. void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  38. void __fastcall TmrTimeOutTimer(TObject *Sender);
  39. private: // User declarations
  40. TItsCode *FCodeRDR; // µµ·Îµî±Þ
  41. public:
  42. String m_sLinkId;
  43. int m_nLinkLevel;
  44. void __fastcall ShowIncidentAlarm();
  45. public: // User declarations
  46. __fastcall TFrmIncidentAlarm(TComponent* Owner);
  47. };
  48. //---------------------------------------------------------------------------
  49. extern PACKAGE TFrmIncidentAlarm *FrmIncidentAlarm;
  50. //---------------------------------------------------------------------------
  51. #endif