1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //---------------------------------------------------------------------------
- #ifndef FrmIncidentAlarmFH
- #define FrmIncidentAlarmFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ADODB.hpp>
- #include <DB.hpp>
- #include <ExtCtrls.hpp>
- #include <Menus.hpp>
- //---------------------------------------------------------------------------
- #include "CDSCodeF.h"
- #include "CDSFacilityF.h"
- #include "CDSIncidentF.h"
- #include <Graphics.hpp>
- #include "FRAME_IncidentAutoListF.h"
- #include "cxContainer.hpp"
- #include "cxControls.hpp"
- #include "cxEdit.hpp"
- #include "cxGraphics.hpp"
- #include "cxLabel.hpp"
- #include "cxLookAndFeelPainters.hpp"
- #include "cxLookAndFeels.hpp"
- #include "dxSkinBlack.hpp"
- #include "dxSkinBlue.hpp"
- #include "dxSkinsCore.hpp"
- #include "dxSkinMcSkin.hpp"
- //---------------------------------------------------------------------------
- class TFrmIncidentAlarm : public TForm
- {
- __published: // IDE-managed Components
- TTimer *TmrTimeOut;
- TFRAMEIncidentAutoList *FRAMEIncidentAutoList1;
- TcxLabel *lblCaption;
- void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
- void __fastcall TmrTimeOutTimer(TObject *Sender);
- private: // User declarations
- TItsCode *FCodeRDR; // µµ·Îµî±Þ
- public:
- String m_sLinkId;
- int m_nLinkLevel;
- void __fastcall ShowIncidentAlarm();
- public: // User declarations
- __fastcall TFrmIncidentAlarm(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TFrmIncidentAlarm *FrmIncidentAlarm;
- //---------------------------------------------------------------------------
- #endif
|