]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxCommandButton.cxx
spaces
[bbtk.git] / packages / wx / src / bbwxCommandButton.cxx
1 /*
2  # ---------------------------------------------------------------------
3  #
4  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5  #                        pour la SantÈ)
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
9  #
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.
16  #
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
21  #  liability.
22  #
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  # ------------------------------------------------------------------------ */
26
27
28 /*=========================================================================
29   Program:   bbtk
30   Module:    $RCSfile: bbwxCommandButton.cxx,v $
31   Language:  C++
32   Date:      $Date: 2012/11/16 08:52:14 $
33   Version:   $Revision: 1.16 $
34 =========================================================================*/
35
36 /**
37  *  \file 
38  *  \brief 
39  */
40
41
42 #ifdef _USE_WXWIDGETS_
43
44
45 #include "bbwxCommandButton.h"
46 #include "bbwxPackage.h"
47 #include "bbtkInterpreter.h"
48 #include "bbtkExecuter.h"
49
50
51
52 namespace bbwx
53 {
54
55
56    //--------------------------------------------------------------------------
57   class CommandButtonWidget : public wxPanel
58   {
59   public:
60     CommandButtonWidget(CommandButton* box, wxWindow *parent, 
61                         wxString title);
62     ~CommandButtonWidget();
63     void OnCommandButton( wxEvent& );
64     void SetLabel(wxString title);
65     void SetColour(wxColour color);
66         
67   private:
68     CommandButton* mBox;
69     wxButton    *mwxCommandButton;
70   }; 
71    
72   //--------------------------------------------------------------------------
73   //--------------------------------------------------------------------------
74
75   CommandButtonWidget::CommandButtonWidget(CommandButton* box,
76                                            wxWindow *parent, 
77                                            wxString title )
78     : wxPanel( parent, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL),
79       mBox(box)
80   { 
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);
92     panel       -> Layout();
93   }
94   
95   CommandButtonWidget::~CommandButtonWidget()
96   {
97   }
98   
99   void CommandButtonWidget::OnCommandButton( wxEvent& )
100   {
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) 
105         {
106           bbtk::Factory::Pointer f = boost::dynamic_pointer_cast<bbtk::ComplexBlackBoxDescriptor>(mBox->bbGetParent()->bbGetDescriptor())->GetFactory();
107           if ((f != 0)&&
108               (f->GetExecuter()))
109             {
110               E = f->GetExecuter();
111               I = E->GetInterpreter();
112             }
113         }
114       if (I==0) 
115         {
116           //      bbtkError("CommandButton::DoProcess() : could not find interpreter");
117           if (E==0) 
118             {
119               // If no executer : create a totally independant interpreter
120               I = bbtk::Interpreter::New();
121             }
122           else 
123             {
124               // If executer : create an interpreter using E
125               I = bbtk::Interpreter::New(E);
126             }
127         }
128       
129       std::string commandstr(mBox->bbGetInputIn());
130     
131     //  bbtk::Interpreter::mGlobalInterpreter->InterpretLine( commandstr );
132     unsigned int i;
133     bool ok=true;
134     int pos1=0,pos2;
135     pos2 = commandstr.find(";",pos1);
136     std::string ccommand;
137     while (ok==true)
138       {
139         if (pos2==-1) 
140           {
141             ok=false;
142             ccommand=commandstr.substr(pos1,commandstr.length()-pos1 );
143           } 
144         else 
145           {
146             ccommand=commandstr.substr(pos1,pos2-pos1);
147           }
148         for ( i=0 ; i < ccommand.length() ; i++)
149           {
150             if (ccommand[i]==39) // '
151               {
152                 ccommand[i]=34;  // "
153               }
154           }             
155         I->InterpretLine( ccommand );
156         pos1=pos2+1;
157         pos2 = commandstr.find(";",pos2+1);     
158       }
159     mBox->UpdateLabel();
160     mBox->UpdateColour();
161     mBox->bbSignalOutputModification();
162   }
163
164   //--------------------------------------------------------------------------  
165   void CommandButtonWidget::SetLabel(wxString title)
166   {
167     mwxCommandButton->SetLabel(title);
168   }
169
170   //--------------------------------------------------------------------------
171   void CommandButtonWidget::SetColour(wxColour color)
172   {
173     mwxCommandButton->SetBackgroundColour(color);
174         mwxCommandButton->Refresh();
175         mwxCommandButton->ClearBackground();
176   }
177
178
179
180   //--------------------------------------------------------------------------
181   //-------------------------------------------------------------------------
182   //--------------------------------------------------------------------------
183   //-------------------------------------------------------------------------- 
184
185   BBTK_ADD_BLACK_BOX_TO_PACKAGE(wx,CommandButton);
186   BBTK_BLACK_BOX_IMPLEMENTATION(CommandButton,bbtk::WxBlackBox);
187
188 //-----------------------------------------------------------------     
189         void CommandButton::bbUserSetDefaultValues()
190         {
191                 bbSetInputIn("");
192                 bbSetInputLabel("");
193                 std::vector<double> lstColour;
194                 lstColour.push_back(0.75);
195                 lstColour.push_back(0.75);
196                 lstColour.push_back(0.75);
197                 bbSetInputColour(lstColour);
198                 bbSetOutputWidget(0);
199         }
200         
201         //-----------------------------------------------------------------     
202         void CommandButton::bbUserInitializeProcessing()
203         {
204         }
205         
206         //-----------------------------------------------------------------     
207         void CommandButton::bbUserFinalizeProcessing()
208         {
209         }
210         
211   
212   void CommandButton::Process() 
213   { 
214     CommandButtonWidget* w = (CommandButtonWidget*)bbGetOutputWidget();
215     if (w) 
216       {
217         UpdateColour();
218         UpdateLabel();
219       }
220   }
221   
222   void CommandButton::UpdateColour()
223   {
224     CommandButtonWidget* wxwidget = (CommandButtonWidget*)bbGetOutputWidget();
225     if  ( (bbGetInputColour()[0]==-1) && 
226           (bbGetInputColour()[1]==-1) &&
227           (bbGetInputColour()[2]==-1) )
228       {
229         wxwidget->SetColour( wxwidget->GetParent()->GetBackgroundColour() );
230       }  else  {
231       int r=(int) (255*bbGetInputColour()[0]);
232       int g=(int) (255*bbGetInputColour()[1]);
233       int b=(int) (255*bbGetInputColour()[2]);
234       wxwidget->SetColour( wxColour(r,g,b) );
235     }
236   } 
237         
238   void CommandButton::UpdateLabel()
239   {
240     CommandButtonWidget* wxwidget = (CommandButtonWidget*)bbGetOutputWidget();
241     wxwidget->SetLabel( bbtk::std2wx( bbGetInputLabel() ) );
242   }   
243  
244   /** 
245    * \brief  Create wxWidget .  
246    * 
247    * 
248    */  
249   void CommandButton::CreateWidget(wxWindow* parent) 
250   { 
251     bbSetOutputWidget
252       ( new CommandButtonWidget ( this, //bbGetWxParent(), 
253                                                                  parent,
254                                                                  bbtk::std2wx(bbGetInputLabel()) ) );
255     UpdateColour();
256   } 
257  
258  
259 }  //namespace bbwx 
260  
261 #endif  // _USE_WXWIDGETS_ 
262