+ toolBar -> AddTool(wxID_HTML_UPNODE, wxBITMAP(wupnode), wxNullBitmap,
+ FALSE, -1, -1, (wxObject *) NULL,
+ _("Go one level up in document hierarchy"));
+ toolBar -> AddTool(wxID_HTML_UP, wxBITMAP(wup), wxNullBitmap,
+ FALSE, -1, -1, (wxObject *) NULL,
+ _("Previous page"));
+ toolBar -> AddTool(wxID_HTML_DOWN, wxBITMAP(wdown), wxNullBitmap,
+ FALSE, -1, -1, (wxObject *) NULL,
+ _("Next page"));
+
+ if ((style & wxHF_PRINT) || (style & wxHF_OPENFILES))
+ toolBar -> AddSeparator();
+
+ if (style & wxHF_OPENFILES)
+ toolBar -> AddTool(wxID_HTML_OPENFILE, wxBITMAP(wopen), wxNullBitmap,
+ FALSE, -1, -1, (wxObject *) NULL,
+ _("Open HTML document"));
+
+#if wxUSE_PRINTING_ARCHITECTURE
+ if (style & wxHF_PRINT)
+ toolBar -> AddTool(wxID_HTML_PRINT, wxBITMAP(wprint), wxNullBitmap,
+ FALSE, -1, -1, (wxObject *) NULL,
+ _("Print this page"));
+#endif
+