Mercurial > mercurial > hgweb_searcher2.cgi
annotate include/htmlhelp.h @ 23:a10c2fe880f8
fix sizers.
| author | pyon@macmini |
|---|---|
| date | Wed, 27 Jul 2011 21:27:56 +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 |
