Various changes to preferences object, file loading, and error logging.
[jben.git] / frame_kanjipad.h
blob790d24a5efa36470b3535117cf00c7c611756211
1 /*
2 Project: wxKanjiPad
3 Author: Paul Goins
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)
8 File: frame_kanjipad.h
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 frame_kanjipad_h
26 #define frame_kanjipad_h
28 /* Stock wxWidgets includes */
29 #include "wx/wxprec.h"
30 #ifdef __BORLANDC__
31 #pragma hdrstop
32 #endif
33 #ifndef WX_PRECOMP
34 #include "wx/wx.h"
35 #endif
37 #include "wx/listctrl.h"
38 #include "panel_kanjipad.h"
40 class FrameKanjiPad: public wxFrame {
41 public:
42 FrameKanjiPad(wxWindow *owner=(wxWindow *)NULL,
43 wxWindowID id = -1,
44 const wxString& title = _T("wxKanjiPad"),
45 const wxPoint& pos = wxDefaultPosition,
46 const wxSize& size = wxSize(300,350));
47 void OnClose(wxCloseEvent& ev);
48 void OnButtonSearch(wxCommandEvent& ev);
49 void OnButtonClear(wxCommandEvent& ev);
50 void OnKanjiSelected(wxListEvent& ev);
51 private:
52 PanelKanjiPad *pnlKanjiPad;
53 wxListCtrl *lcKanjiSelector;
54 wxButton *btnClear, *btnSearch;
55 DECLARE_EVENT_TABLE()
58 #endif