OSDN Git Service

first commit
[dokopop/dokopop.git] / DCHookTest / Notify.h
1 //---------------------------------------------------------------------------
2
3 #ifndef NotifyH
4 #define NotifyH
5 //---------------------------------------------------------------------------
6 #include <Classes.hpp>
7 #include <Controls.hpp>
8 #include <StdCtrls.hpp>
9 #include <Forms.hpp>
10 #include <ExtCtrls.hpp>
11 #include <Graphics.hpp>
12 //---------------------------------------------------------------------------
13 class TNotifyForm : public TForm
14 {
15 __published:    // IDE \8aÇ\97\9d\82Ì\83R\83\93\83|\81[\83l\83\93\83g
16         TImage *EnableBmp;
17         TImage *DisableBmp;
18         void __fastcall FormShow(TObject *Sender);
19         void __fastcall FormMouseMove(TObject *Sender, TShiftState Shift, int X,
20           int Y);
21         void __fastcall FormDestroy(TObject *Sender);
22 private:        // \83\86\81[\83U\81[\90é\8c¾
23         HRGN hRgn;
24 public:         // \83\86\81[\83U\81[\90é\8c¾
25         bool enable;
26         __fastcall TNotifyForm(TComponent* Owner);
27         void Setup();
28 };
29 //---------------------------------------------------------------------------
30 extern PACKAGE TNotifyForm *NotifyForm;
31 //---------------------------------------------------------------------------
32 #endif
33