OSDN Git Service

first commit
[dokopop/dokopop.git] / DCHookTest / MODINotifyDlg.h
1 //---------------------------------------------------------------------------
2
3 #ifndef MODINotifyDlgH
4 #define MODINotifyDlgH
5 //---------------------------------------------------------------------------
6 #include <Classes.hpp>
7 #include <Controls.hpp>
8 #include <StdCtrls.hpp>
9 #include <Forms.hpp>
10 #include <ComCtrls.hpp>
11 #include <ExtCtrls.hpp>
12 //---------------------------------------------------------------------------
13 class TMODINotifyDialog : public TForm
14 {
15 __published:    // IDE \8aÇ\97\9d\82Ì\83R\83\93\83|\81[\83l\83\93\83g
16         TRichEdit *reMsg;
17         TButton *btnClose;
18         TTimer *tmInstallCheck;
19         void __fastcall FormCreate(TObject *Sender);
20         void __fastcall tmInstallCheckTimer(TObject *Sender);
21 private:        // \83\86\81[\83U\81[\90é\8c¾
22         BEGIN_MESSAGE_MAP
23                 VCL_MESSAGE_HANDLER(WM_NOTIFY, TMessage, EvNotify);
24         END_MESSAGE_MAP( TForm )
25         void EvNotify( TMessage &msg );
26         int reMsgId;
27         bool modiInstalled;
28         bool amodiRunable;
29 public:         // \83\86\81[\83U\81[\90é\8c¾
30         __fastcall TMODINotifyDialog(TComponent* Owner);
31         void SetMessage();
32         bool LinkClicked;
33 };
34 //---------------------------------------------------------------------------
35 extern PACKAGE TMODINotifyDialog *MODINotifyDialog;
36 //---------------------------------------------------------------------------
37 #endif