Mercurial > mercurial > hgweb_searcher2.cgi
annotate include/htmlhelp.h @ 24:cbdfda601609 default tip
myframe layout finished.
author | pyon@macmini |
---|---|
date | Thu, 28 Jul 2011 23:04:36 +0900 |
parents | c174ac668e9f |
children |
rev | line source |
---|---|
0 | 1 // Filename : htmlhelp.h |
2 // Last Change: 18-Dec-2010. | |
3 // | |
4 #ifndef HTMLHELPFRAME | |
5 #define HTMLHELPFRAME | |
6 #include "wx/wxprec.h" | |
7 | |
8 #ifndef WX_PRECOMP | |
9 #include "wx/wx.h" | |
10 #include "wx/html/htmlwin.h" | |
11 #endif | |
12 | |
13 class HtmlHelpFrame : public wxFrame | |
14 { | |
15 public: | |
16 HtmlHelpFrame( const wxString& title, wxWindowID id ); | |
17 ~HtmlHelpFrame(); | |
18 | |
19 wxHtmlWindow *m_htmlWin; | |
20 }; | |
21 | |
22 #endif | |
23 |