+ toolBar -> AddTool(wxID_HTML_UPNODE, wupnodeBitmap, wxNullBitmap,
+ FALSE, -1, -1, (wxObject *) NULL,
+ _("Go one level up in document hierarchy"));
+ toolBar -> AddTool(wxID_HTML_UP, wupBitmap, wxNullBitmap,
+ FALSE, -1, -1, (wxObject *) NULL,
+ _("Previous page"));
+ toolBar -> AddTool(wxID_HTML_DOWN, wdownBitmap, 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, wopenBitmap, wxNullBitmap,
+ FALSE, -1, -1, (wxObject *) NULL,
+ _("Open HTML document"));
+
+#if wxUSE_PRINTING_ARCHITECTURE
+ if (style & wxHF_PRINT)
+ toolBar -> AddTool(wxID_HTML_PRINT, wprintBitmap, wxNullBitmap,
+ FALSE, -1, -1, (wxObject *) NULL,
+ _("Print this page"));
+#endif
+