//===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== #include "bbwxHtmlWindow.h" #include "bbwxPackage.h" #include namespace bbwx { BBTK_ADD_BLACK_BOX_TO_PACKAGE(wx,HtmlWindow) BBTK_BLACK_BOX_IMPLEMENTATION(HtmlWindow,bbtk::WxBlackBox); //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== void HtmlWindow::Process() { /* std::string msg; if (bbGetInputTitle()!="") { msg = bbGetInputTitle()+": " + bbGetInputIn(); } else { msg = bbGetInputIn(); } ((wxStaticText*)bbGetOutputWidget())->SetLabel( bbtk::std2wx( msg ) ); */ wxHtmlWindow* html = (wxHtmlWindow*)bbGetOutputWidget(); html->LoadPage( bbtk::std2wx( bbGetInputFileName() )); } //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== void HtmlWindow::CreateWidget(wxWindow* parent) { // bbSetOutputWidget( new wxStaticText ( parent , -1 , _T("") ) ); bbSetOutputWidget( new wxHtmlWindow(parent, -1, wxDefaultPosition, wxSize(380, 160), wxHW_SCROLLBAR_NEVER) ); } //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== void HtmlWindow::bbUserSetDefaultValues() { } //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== void HtmlWindow::bbUserInitializeProcessing() { } //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== void HtmlWindow::bbUserFinalizeProcessing() { } } // EO namespace bbwx