OSDN Git Service

amodiからの文字位置情報が二桁以上あると正しく取得できていなかった
[dokopop/dokopop.git] / DCHookTest / OCRTextFrm.h
1 //---------------------------------------------------------------------------
2
3 #ifndef OCRTextFrmH
4 #define OCRTextFrmH
5 //---------------------------------------------------------------------------
6 #include <Classes.hpp>
7 #include <Controls.hpp>
8 #include <StdCtrls.hpp>
9 #include <Forms.hpp>
10 //---------------------------------------------------------------------------
11 class TOCRTextForm : public TForm
12 {
13 __published:    // IDE \8aÇ\97\9d\82Ì\83R\83\93\83|\81[\83l\83\93\83g
14         TMemo *memo;
15         void __fastcall FormShow(TObject *Sender);
16         void __fastcall FormCloseQuery(TObject *Sender, bool &CanClose);
17 private:        // \83\86\81[\83U\81[\90é\8c¾
18 public:         // \83\86\81[\83U\81[\90é\8c¾
19         __fastcall TOCRTextForm(TComponent* Owner);
20         void SetText(const wchar_t *text);
21 };
22 //---------------------------------------------------------------------------
23 extern PACKAGE TOCRTextForm *OCRTextForm;
24 //---------------------------------------------------------------------------
25 #endif
26