2 # ---------------------------------------------------------------------
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
10 # This software is governed by the CeCILL-B license under French law and
11 # abiding by the rules of distribution of free software. You can use,
12 # modify and/ or redistribute the software under the terms of the CeCILL-B
13 # license as circulated by CEA, CNRS and INRIA at the following URL
14 # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15 # or in the file LICENSE.txt.
17 # As a counterpart to the access to the source code and rights to copy,
18 # modify and redistribute granted by the license, users are provided only
19 # with a limited warranty and the software's author, the holder of the
20 # economic rights, and the successive licensors have only limited
23 # The fact that you are presently reading this means that you have had
24 # knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------ */
28 /*=========================================================================
30 Module: $RCSfile: bbwxCommandButton.cxx,v $
32 Date: $Date: 2012/11/16 08:52:14 $
33 Version: $Revision: 1.16 $
34 =========================================================================*/
42 #ifdef _USE_WXWIDGETS_
45 #include "bbwxCommandButton.h"
46 #include "bbwxPackage.h"
47 #include "bbtkInterpreter.h"
48 #include "bbtkExecuter.h"
56 //--------------------------------------------------------------------------
57 class CommandButtonWidget : public wxPanel
60 CommandButtonWidget(CommandButton* box, wxWindow *parent,
62 ~CommandButtonWidget();
63 void OnCommandButton( wxEvent& );
64 void SetLabel(wxString title);
65 void SetColour(wxColour color);
69 wxButton *mwxCommandButton;
72 //--------------------------------------------------------------------------
73 //--------------------------------------------------------------------------
75 CommandButtonWidget::CommandButtonWidget(CommandButton* box,
78 : wxPanel( parent, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL),
81 wxPanel *panel = this;
82 mwxCommandButton = new wxButton( panel, -1, title);
83 Connect( mwxCommandButton->GetId(), wxEVT_COMMAND_BUTTON_CLICKED ,
84 (wxObjectEventFunction)
85 (void (wxPanel::*)(wxEvent&))
86 &CommandButtonWidget::OnCommandButton );
87 wxFlexGridSizer *sizer = new wxFlexGridSizer(1);
88 sizer -> Add( mwxCommandButton,1,wxGROW | wxALL,10 );
89 sizer -> AddGrowableCol(0);
90 panel -> SetSizer(sizer);
91 panel -> SetAutoLayout(true);
95 CommandButtonWidget::~CommandButtonWidget()
99 void CommandButtonWidget::OnCommandButton( wxEvent& )
101 // Look for the interpreter or the executer if no interpreter
102 bbtk::Interpreter::Pointer I;
103 bbtk::VirtualExec::Pointer E;
104 if (mBox->bbGetParent() != 0)
106 bbtk::Factory::Pointer f = boost::dynamic_pointer_cast<bbtk::ComplexBlackBoxDescriptor>(mBox->bbGetParent()->bbGetDescriptor())->GetFactory();
110 E = f->GetExecuter();
111 I = E->GetInterpreter();
116 // bbtkError("CommandButton::DoProcess() : could not find interpreter");
119 // If no executer : create a totally independant interpreter
120 I = bbtk::Interpreter::New();
122 // If executer : create an interpreter using E
123 I = bbtk::Interpreter::New(E);
127 std::string commandstr(mBox->bbGetInputIn());
129 // bbtk::Interpreter::mGlobalInterpreter->InterpretLine( commandstr );
133 pos2 = commandstr.find(";",pos1);
134 std::string ccommand;
140 ccommand=commandstr.substr(pos1,commandstr.length()-pos1 );
142 ccommand=commandstr.substr(pos1,pos2-pos1);
144 for ( i=0 ; i < ccommand.length() ; i++)
146 if (ccommand[i]==39) // '
151 I->InterpretLine( ccommand );
153 pos2 = commandstr.find(";",pos2+1);
156 mBox->UpdateColour();
157 mBox->bbSignalOutputModification();
160 //--------------------------------------------------------------------------
161 void CommandButtonWidget::SetLabel(wxString title)
163 mwxCommandButton->SetLabel(title);
166 //--------------------------------------------------------------------------
167 void CommandButtonWidget::SetColour(wxColour color)
169 mwxCommandButton->SetBackgroundColour(color);
170 mwxCommandButton->Refresh();
171 mwxCommandButton->ClearBackground();
176 //--------------------------------------------------------------------------
177 //-------------------------------------------------------------------------
178 //--------------------------------------------------------------------------
179 //--------------------------------------------------------------------------
181 BBTK_ADD_BLACK_BOX_TO_PACKAGE(wx,CommandButton);
182 BBTK_BLACK_BOX_IMPLEMENTATION(CommandButton,bbtk::WxBlackBox);
184 //-----------------------------------------------------------------
185 void CommandButton::bbUserSetDefaultValues()
189 std::vector<double> lstColour;
190 lstColour.push_back(0.75);
191 lstColour.push_back(0.75);
192 lstColour.push_back(0.75);
193 bbSetInputColour(lstColour);
194 bbSetOutputWidget(0);
197 //-----------------------------------------------------------------
198 void CommandButton::bbUserInitializeProcessing()
202 //-----------------------------------------------------------------
203 void CommandButton::bbUserFinalizeProcessing()
208 void CommandButton::Process()
210 CommandButtonWidget* w = (CommandButtonWidget*)bbGetOutputWidget();
218 void CommandButton::UpdateColour()
220 CommandButtonWidget* wxwidget = (CommandButtonWidget*)bbGetOutputWidget();
221 if ( (bbGetInputColour()[0]==-1) &&
222 (bbGetInputColour()[1]==-1) &&
223 (bbGetInputColour()[2]==-1) )
225 wxwidget->SetColour( wxwidget->GetParent()->GetBackgroundColour() );
227 int r=(int) (255*bbGetInputColour()[0]);
228 int g=(int) (255*bbGetInputColour()[1]);
229 int b=(int) (255*bbGetInputColour()[2]);
230 wxwidget->SetColour( wxColour(r,g,b) );
234 void CommandButton::UpdateLabel()
236 CommandButtonWidget* wxwidget = (CommandButtonWidget*)bbGetOutputWidget();
237 wxwidget->SetLabel( bbtk::std2wx( bbGetInputLabel() ) );
241 * \brief Create wxWidget .
245 void CommandButton::CreateWidget(wxWindow* parent)
248 ( new CommandButtonWidget ( this, //bbGetWxParent(),
250 bbtk::std2wx(bbGetInputLabel()) ) );
257 #endif // _USE_WXWIDGETS_