]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxBlackBoxEditionDialog.cxx
no message
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / wxBlackBoxEditionDialog.cxx
1 /*=========================================================================
2 Program:   bbtk
3 Module:    $RCSfile$
4 Language:  C++
5 Date:      $Date$
6 Version:   $Revision$
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and
15 *  abiding by the rules of distribution of free software. You can  use,
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B
17 *  license as circulated by CEA, CNRS and INRIA at the following URL
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability.
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */
30
31 /**
32 *  \file
33 *  \brief Class bbtk::wxBlackBoxEditionDialog .
34 */
35
36 #include "wxBlackBoxEditionDialog.h"
37 #include "creaWx.h"
38
39 namespace bbtk
40 {
41         //=========================================================================
42
43         wxBlackBoxEditionDialog::wxBlackBoxEditionDialog(wxGUIEditorGraphicBBS *parent,GBlackBoxModel *model):wxDialog(parent,wxID_ANY,_T(""), wxDefaultPosition, wxSize(480, 640),wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
44         {
45                 _model=model;
46                 std::string title("BlackBox Editing - ");
47                 title+=_model->getBBTKPackage();
48                 title+=":";
49                 title+=_model->getBBTKType();
50                 title+=":";
51                 title+=_model->getBBTKName();
52                 SetTitle(std2wx(title));
53
54                 constructBlackBoxEditionDialog();
55         }
56
57         //=========================================================================
58
59
60         wxBlackBoxEditionDialog::~wxBlackBoxEditionDialog()
61         {
62
63         }
64
65         //=========================================================================
66
67         void wxBlackBoxEditionDialog::constructBlackBoxEditionDialog()
68         {
69                 wxBoxSizer *sizerDialog = new wxBoxSizer(wxVERTICAL);
70
71         wxScrolledWindow *scrollWin = new wxScrolledWindow( this, -1, wxDefaultPosition,  wxSize(200,200), wxVSCROLL);
72
73                 wxStaticText *text = new wxStaticText(scrollWin, -1, wxT("Input Ports"));
74                 wxFont font(11, wxDEFAULT, wxNORMAL, wxBOLD);
75                 text->SetFont(font);
76
77
78
79                 std::vector<GPortModel*> lstInputs = _model->getInputPorts();
80                 wxFlexGridSizer *sizer = new wxFlexGridSizer(lstInputs.size(),3,5,5);
81                 sizer->AddGrowableCol(0);
82                 sizer->AddGrowableCol(1);
83                 sizer->AddGrowableCol(2);
84                 
85                 for(int i = 0;i<(int)lstInputs.size();i++)
86                 {
87                         sizer->AddGrowableRow(i);
88                         GPortModel* port        = lstInputs[i];
89                         std::string type        = port->getBBTKType();
90                         wxStaticText *lblName   = new wxStaticText(scrollWin, -1, std2wx(port->getBBTKName()),wxDefaultPosition,wxSize(100,25));
91                         wxStaticText *lblType   = new wxStaticText(scrollWin, -1, std2wx(type),wxDefaultPosition,wxSize(250,25));
92                         wxTextCtrl *txtValue    = new wxTextCtrl(scrollWin, -1, _T(""),wxDefaultPosition,wxSize(90,25));
93
94                         if(port->getValue()!="")
95                         {
96                                 txtValue->SetValue(crea::std2wx(port->getValue()));
97                         }
98
99                         if(port->isConnected())
100                         {
101                                 std::string connected("--Port Connected--");
102                                 txtValue->SetValue(crea::std2wx(connected));
103                                 txtValue->SetEditable(false);
104                         }
105
106                         char et = '*';
107                         if(type.find(et)!=-1)
108                         {
109                                 std::string noEditable("--No editable--");
110                                 txtValue->SetValue(crea::std2wx(noEditable));
111                                 txtValue->SetEditable(false);
112                         }
113
114                         _lstNames.push_back(lblName);
115                         _lstValues.push_back(txtValue);
116                         _lstTypes.push_back(lblType);
117
118                         sizer->Add(lblName,1,wxEXPAND,5);
119                         sizer->Add(txtValue,1,wxEXPAND,5);
120                         sizer->Add(lblType,1,wxCENTRE|wxEXPAND,5);
121                 }
122
123
124                 wxBoxSizer *buts        = new wxBoxSizer(wxHORIZONTAL);
125                 wxButton *okButton      = new wxButton(scrollWin, -1, _T("Ok"),wxDefaultPosition, wxSize(70, 30));
126                 wxButton *closeButton   = new wxButton(scrollWin, -1, _T("Close"), wxDefaultPosition, wxSize(70, 30));
127
128                 // connect command event handlers
129                 Connect(okButton->GetId(),wxEVT_COMMAND_BUTTON_CLICKED,wxCommandEventHandler(wxBlackBoxEditionDialog::onClickOk));
130                 Connect(closeButton->GetId(),wxEVT_COMMAND_BUTTON_CLICKED,wxCommandEventHandler(wxBlackBoxEditionDialog::onClickClose));
131
132                 buts->Add(okButton,0,wxCENTRE|wxEXPAND,5);
133                 buts->Add(closeButton,0,wxCENTRE|wxEXPAND,5);
134
135                 sizerDialog->AddSpacer(10);
136                 sizerDialog->Add(text,0,wxALIGN_TOP|wxALIGN_CENTER);
137                 sizerDialog->AddSpacer(15);
138                 sizerDialog->Add(sizer,0,wxALIGN_CENTER| wxEXPAND);
139                 sizerDialog->AddSpacer(15);
140                 sizerDialog->Add(buts,0,wxALIGN_CENTER | wxTOP | wxBOTTOM);
141
142                 scrollWin->SetSizer(sizerDialog);
143                 scrollWin->Centre();
144
145
146         scrollWin->SetVirtualSize(400,400);
147         scrollWin->SetSize(300,300);
148         scrollWin->SetScrollbars(10, 10, 50, 50);
149 //        scrollWin->SetSizer(sizer);
150
151
152                 ShowModal();
153                 Destroy();
154         }
155
156         //=========================================================================
157
158         void wxBlackBoxEditionDialog::onClickOk(wxCommandEvent& event)
159         {
160                 for(int i=0;i<(int)_lstValues.size();i++)
161                 {
162                         std::string text = wx2std(_lstValues[i]->GetValue());
163                         //TOFIX Search a better alternative
164                         if(text!="--No editable--" && text!="--Port Connected--")
165                         {
166                                 _model->setValueToInputPort(i,text);
167                         }
168                 }
169
170                 Close(true);
171         }
172
173         //=========================================================================
174
175         void wxBlackBoxEditionDialog::onClickClose(wxCommandEvent& event)
176         {
177 printf("EED wxBlackBoxEditionDialog::onClickClose\n");
178                 Close(true);
179         }
180
181         //=========================================================================
182
183 }  // EO namespace bbtk
184
185 // EOF