4 Website: http://www.vultaire.net/software/wxkanjipad/files/
5 License: GNU General Public License (GPL) version 2
6 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt)
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License along
21 with this program; if not, write to the Free Software Foundation, Inc.,
22 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #ifndef panel_kanjipad_h
26 #define panel_kanjipad_h
28 /* Stock wxWidgets includes */
29 #include "wx/wxprec.h"
37 #include "wx/process.h"
41 #define KANJIPAD_MAX_KANJI 5
43 class PanelKanjiPad
: public wxPanel
{
45 PanelKanjiPad(wxWindow
*owner
, wxWindowID id
=wxID_ANY
,
46 const wxPoint
& pos
=wxDefaultPosition
,
47 const wxSize
& size
=wxDefaultSize
,
48 long style
=wxBORDER_SIMPLE
,
49 const wxString
& name
= _T("panelkanjipad"));
52 list
< list
<wxPoint
> > const* GetStrokes();
55 void OnMouseDown(wxMouseEvent
& ev
);
56 void OnMouseUp(wxMouseEvent
& ev
);
57 void OnLeaveWindow(wxMouseEvent
& ev
);
58 void OnMouseMove(wxMouseEvent
& ev
);
59 void OnMouseRightDown(wxMouseEvent
& ev
);
60 void OnPaint(wxPaintEvent
& ev
);
61 void AfterEngineCall(wxProcessEvent
& ev
);
63 wxChar results
[KANJIPAD_MAX_KANJI
];
66 list
<wxPoint
> currentStroke
;
67 list
< list
<wxPoint
> > strokes
;
69 /* Related to running kpengine process */
71 wxInputStream
*kpStdout
, *kpStderr
;
72 wxOutputStream
*kpStdin
;
74 /* wxWidgets standard stuff */