#endif
// For compilers that support precompilation, includes "wx/wx.h".
-#include <wx/wxprec.h>
+#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
// for all others, include the necessary headers (this file is usually all you
// need because it includes almost all "standard" wxWindows headers
#ifndef WX_PRECOMP
- #include <wx/wx.h>
+ #include "wx/wx.h"
#endif
-#include <wx/html/htmlwin.h>
+#include "wx/html/htmlwin.h"
// new handler class:
-#include <wx/wfstream.h>
-#include <wx/mstream.h>
+#include "wx/wfstream.h"
+#include "wx/mstream.h"
{
wxFSFile *f;
wxInputStream *str;
- char *buf = (char*)malloc(1024);
+ static char buf[1024];
sprintf(buf, "<html><body><h2><i>You're in Node <u>%s</u></i></h2><p>"
"Where do you want to go?<br><blockquote>"
"<a href=\"%s-3\">sub-3</a><br>"
"</blockquote></body></html>",
location.GetData(), location.GetData(), location.GetData(), location.GetData());
+
+ // NB: There's a terrible hack involved: we fill 'buf' with new data every
+ // time this method is called and return new wxMemoryInputStream pointing to it.
+ // This won't work as soon as there are 2+ myVFS files opened. Fortunately,
+ // this won't happen because wxHTML keeps only one "page" file opened at the
+ // time.
str = new wxMemoryInputStream(buf, strlen(buf));
- f = new wxFSFile(str, location, "text/html", wxEmptyString);
+ f = new wxFSFile(str, location, "text/html", wxEmptyString, wxDateTime::Today());
+
return f;
}
// ... and attach this menu bar to the frame
SetMenuBar(menuBar);
- CreateStatusBar(1);
+ CreateStatusBar(2);
html = new wxHtmlWindow(this);
html -> SetRelatedFrame(this, "VFS Demo: '%s'");