---------------------------------------------------------------------------
| 12 | #include "messprocessing.h" |
| 13 | //--------------------------------------------------------------------------- |
| 14 | class TMessProcessFr : public TFrame |
| 15 | { |
| 16 | __published: // IDE-managed Components |
| 17 | TGroupBox *GroupBox1; |
| 18 | TCheckBox *IgnoreCB; |
| 19 | TCheckBox *AlarmCB; |
| 20 | TLabel *Label11; |
| 21 | TEdit *AlarmMessEdit; |
| 22 | TPopupMenu *InsertPopupMenu; |
| 23 | TMenuItem *time1; |
| 24 | TMenuItem *ip1; |
| 25 | TMenuItem *host1; |
| 26 | TMenuItem *facility1; |
| 27 | TMenuItem *priority1; |
| 28 | TMenuItem *tag1; |
| 29 | TMenuItem *message1; |
| 30 | TCheckBox *SoundCB; |
| 31 | TEdit *SoundFileEdit; |
| 32 | TLabel *Label2; |
| 33 | TEdit *PlayCountEdit; |
| 34 | TOpenDialog *OpenDialog; |
| 35 | TSpeedButton *SelWavCommonButton; |
| 36 | TSpeedButton *PlayButton; |
| 37 | TCheckBox *SendMailCB; |
| 38 | TCheckBox *RunProgCB; |
| 39 | TEdit *ProgFileEdit; |
| 40 | TSpeedButton *SpeedButton1; |
| 41 | TCheckBox *ProgHideCB; |
| 42 | TSpeedButton *InsertProgramButton; |
| 43 | TSpeedButton *InsertAlarmMessButton; |
| 44 | TCheckBox *SaveToFileCB; |
| 45 | TEdit *RecipientEdit; |
| 46 | TComboBox *SaveFileCB; |
| 47 | TSpeedButton *SpeedButton2; |
| 48 | void __fastcall InsertAlarmMessButtonClick(TObject *Sender); |
| 49 | void __fastcall pmInsertClick(TObject *Sender); |
| 50 | void __fastcall SelWavCommonButtonClick(TObject *Sender); |
| 51 | void __fastcall PlayButtonClick(TObject *Sender); |
| 52 | void __fastcall SpeedButton1Click(TObject *Sender); |
| 53 | void __fastcall InsertProgramButtonClick(TObject *Sender); |
| 54 | void __fastcall Change(TObject *Sender); |
| 55 | void __fastcall RecipientEditEnter(TObject *Sender); |
| 56 | void __fastcall RecipientEditExit(TObject *Sender); |
| 57 | void __fastcall SpeedButton2Click(TObject *Sender); |
| 58 | private: // User declarations |
| 59 | TForm * GetForm(void); |
| 60 | bool bEnableValuesChange; |
| 61 | String DefaultRecipient; |
| 62 | public: |
| 63 | TNotifyEvent OnValuesChange; |
| 64 | public: // User declarations |
| 65 | __fastcall TMessProcessFr(TComponent* Owner); |
| 66 | void ToDialog(TMessProcess * p); |
| 67 | void FromDialog(TMessProcess * p); |
| 68 | }; |
| 69 | //--------------------------------------------------------------------------- |
| 70 | extern PACKAGE TMessProcessFr *MessProcessFr; |
| 71 | //--------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected