bbtkDebugMessageInc("Core",9,"ViewerNV::CreateWidget()"<<std::endl);
_mwxwidget = new bbwxMaracas_N_ViewersWidget( this, parent );
bbtkDebugDecTab("Core",9);
-
// _mwxwidget->SetAutoLayout(true);
// _mwxwidget->Layout();
-
bbSetOutputWidget( _mwxwidget );
//this->bbSignalOutputModification();
//Process();
}
+// This callback is necessary to get actual processing of the view
+// when window is shown
+void ViewerNV::OnShowWidget()
+{
+ if (bbGetOutputWidget()!=NULL)
+ {
+ bbGetOutputWidget()->Layout();
+ } // if bbGetOutputWidget
+}
+
//-------------------------------------------------------------
void ViewerNV::bbUserSetDefaultValues()
{
BBTK_PROCESS(Process);
void Process();
BBTK_CREATE_WIDGET(CreateWidget);
- void CreateWidget(wxWindow* parent);
+ BBTK_ON_SHOW_WIDGET(OnShowWidget);
+ void CreateWidget(wxWindow* parent);
+ void OnShowWidget();
+
std::vector<int> _point;
private: