//------------------------------------------------------------------------
//------------------------------------------------------------------------
WidgetShowNPointsBox::WidgetShowNPointsBox(wxWindow *parent, bbcreaMaracasVisu::ShowNPoints *box, int type)
- : WidgetShowNPoints( parent, type)
+: WidgetShowNPoints( parent, type)
{
- mbbShowNPoints=box;
+ mbbShowNPoints=box;
}
//------------------------------------------------------------------------
//------------------------------------------------------------------------
void WidgetShowNPointsBox::UpdatePoints(wxCommandEvent &event)
{
- WidgetShowNPoints::UpdatePoints(event);
- //Difference in Radio for text placement
-// double radio=GetModelShowNPoints()->GetRadio();
-// this->mopacity = sdrOpacity->GetValue()/100.0;
-// GetModelShowNPoints()->SetRadio( sdrRadio->GetValue() ) ;
-// radio = sdrRadio->GetValue();
- //NTU refresh the inputs
- mbbShowNPoints->bbSetInputOpacity( GetOpacity() );
- mbbShowNPoints->bbSetInputRadio( GetRadio() );
- // EED
-// RefreshPoints();
+ WidgetShowNPoints::UpdatePoints(event);
+ //Difference in Radio for text placement
+ // double radio=GetModelShowNPoints()->GetRadio();
+ // this->mopacity = sdrOpacity->GetValue()/100.0;
+ // GetModelShowNPoints()->SetRadio( sdrRadio->GetValue() ) ;
+ // radio = sdrRadio->GetValue();
+ //NTU refresh the inputs
+ mbbShowNPoints->bbSetInputOpacity( GetOpacity() );
+ mbbShowNPoints->bbSetInputRadio( GetRadio() );
+ // EED
+ // RefreshPoints();
}
//------------------------------------------------------------------------
void WidgetShowNPointsBox::SetOutputBox()
{
- WidgetShowNPoints::SetOutputBox();
-
-// wxString strTmp;
-// strTmp.Printf(_T("Nbr of points: %d"), GetModelShowNPoints()->GetLstPointsSize() );
-// txtNrPoints->SetLabel( strTmp );
-
- //--BBTK
+ WidgetShowNPoints::SetOutputBox();
+
+ // wxString strTmp;
+ // strTmp.Printf(_T("Nbr of points: %d"), GetModelShowNPoints()->GetLstPointsSize() );
+ // txtNrPoints->SetLabel( strTmp );
+
+ //--BBTK
mbbShowNPoints->bbSetOutputlstPointsX( GetLstPointsX() );
mbbShowNPoints->bbSetOutputlstPointsY( GetLstPointsY() );
mbbShowNPoints->bbSetOutputlstPointsZ( GetLstPointsZ() );
// mbbShowNPoints->bbSetOutputlstPointsY( GetModelShowNPoints()->GetLstPointsY() );
// mbbShowNPoints->bbSetOutputlstPointsZ( GetModelShowNPoints()->GetLstPointsZ() );
// mbbShowNPoints->bbSetOutputlstLabels( GetModelShowNPoints()->GetLstLabels() );
- mbbShowNPoints->bbSignalOutputModification();
+ mbbShowNPoints->bbSignalOutputModification();
}
void ShowNPoints::Process()
{
printf("EED ShowNPoints::Process start \n");
- if (mwxwidget!=NULL)
- {
+ if (mwxwidget!=NULL)
+ {
mwxwidget->SetImage( bbGetInputImage() );
- mwxwidget->SetRenderer( bbGetInputRenderer() );
- mwxwidget->SetReferencePoint( bbGetInputIn() );
- mwxwidget->SetColour( bbGetInputColour() );
-// mwxwidget->SetOpacity( bbGetInputOpacity() );
- mwxwidget->SetRadio( bbGetInputRadio() );
+ mwxwidget->SetRenderer( bbGetInputRenderer() );
+ mwxwidget->SetReferencePoint( bbGetInputIn() );
+ mwxwidget->SetColour( bbGetInputColour() );
+ // mwxwidget->SetOpacity( bbGetInputOpacity() );
+ mwxwidget->SetRadio( bbGetInputRadio() );
if ( backOpacity!=bbGetInputOpacity() )
{
backOpacity = bbGetInputOpacity();
mwxwidget->SetOpacity( bbGetInputOpacity() );
} // if backOpacity
-// if (firsttime==true)
-// {
-// firsttime=false;
- if ( mwxwidget->GetModelShowNPoints()->GetFirstTime()==false )
- {
- mwxwidget->DetectCollectionActive();
- }
- if ( mwxwidget->GetModelShowNPoints()->GetFirstTime()==true )
- {
- mwxwidget->GetModelShowNPoints()->SetFirstTime(false);
- mwxwidget->SetInitLstPoints( bbGetInputInitLstPointsX() , bbGetInputInitLstPointsY() , bbGetInputInitLstPointsZ() , bbGetInputInitLstLabels() , bbGetInputInitLstIndexs() );
- }
-// } // firsttime OJO machete Eduardo pour ANDREAS a verificar
+ // if (firsttime==true)
+ // {
+ // firsttime=false;
+ if ( mwxwidget->GetModelShowNPoints()->GetFirstTime()==false )
+ {
+ mwxwidget->DetectCollectionActive();
+ }
+ if ( mwxwidget->GetModelShowNPoints()->GetFirstTime()==true )
+ {
+ mwxwidget->GetModelShowNPoints()->SetFirstTime(false);
+ mwxwidget->SetInitLstPoints( bbGetInputInitLstPointsX() , bbGetInputInitLstPointsY() , bbGetInputInitLstPointsZ() , bbGetInputInitLstLabels() , bbGetInputInitLstIndexs() );
+ }
+ // } // firsttime OJO machete Eduardo pour ANDREAS a verificar
mwxwidget->AutoAddPoints();
mwxwidget->TrackingPoint();
bbSetOutputlstPointsX( mwxwidget->GetLstPointsX() );
bbSetOutputlstIndexs( mwxwidget->GetLstIndexs() );
bbSetOutputlstSelectedIndexs( mwxwidget->GetLstSelectedIndexs() );
bbSetOutputWidgetShowNPoints( (WidgetShowNPoints*)mwxwidget );
- } // mwxwidget
+ } // mwxwidget
printf("EED ShowNPoints::Process end \n");
}
//-----------------------------------------------------------------
void ShowNPoints::CreateWidget(wxWindow* parent)
{
- mwxwidget = new WidgetShowNPointsBox( parent, this, bbGetInputType() );
+ printf("EED ShowNPoints::CreateWidget\n");
+ mwxwidget = new WidgetShowNPointsBox( parent, this, bbGetInputType() );
bbSetOutputWidget( mwxwidget );
}
+//-----------------------------------------------------------------
+void ShowNPoints::OnShowWidget()
+{
+// mwxwidget->SetRenderer( bbGetInputRenderer() );
+}
+
//-----------------------------------------------------------------
void ShowNPoints::bbUserSetDefaultValues()
{
firsttime = true;
backOpacity = -1;
- mwxwidget = NULL;
- bbSetInputRadio(10);
- bbSetInputOpacity(1);
- std::vector<double> colour;
- colour.push_back(1.0);
- colour.push_back(1.0);
- colour.push_back(0.0);
- bbSetInputColour(colour);
- bbSetInputImage(NULL);
- bbSetInputType(0);
- bbSetInputRenderer(NULL);
- bbSetOutputWidgetShowNPoints(NULL);
+ mwxwidget = NULL;
+ bbSetInputRadio(10);
+ bbSetInputOpacity(1);
+ std::vector<double> colour;
+ colour.push_back(1.0);
+ colour.push_back(1.0);
+ colour.push_back(0.0);
+ bbSetInputColour(colour);
+ bbSetInputImage(NULL);
+ bbSetInputType(0);
+ bbSetInputRenderer(NULL);
+ bbSetOutputWidgetShowNPoints(NULL);
}
//-----------------------------------------------------------------
{
}
-//-----------------------------------------------------------------
-
} // EO namespace bbcreaMaracasVisu