]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxBlackBoxEditionDialog.cxx
b6e28501bc2324bb8432fd7367c8b370f2e71f63
[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                 for(int i = 0;i<(int)lstInputs.size();i++)
82                 {
83                         GPortModel* port        = lstInputs[i];
84                         std::string type        = port->getBBTKType();
85                         wxStaticText *lblName   = new wxStaticText(scrollWin, -1, std2wx(port->getBBTKName()),wxDefaultPosition,wxSize(100,25));
86                         wxStaticText *lblType   = new wxStaticText(scrollWin, -1, std2wx(type),wxDefaultPosition,wxSize(250,25));
87                         wxTextCtrl *txtValue    = new wxTextCtrl(scrollWin, -1, _T(""),wxDefaultPosition,wxSize(90,25));
88
89                         if(port->getValue()!="")
90                         {
91                                 txtValue->SetValue(crea::std2wx(port->getValue()));
92                         }
93
94                         if(port->isConnected())
95                         {
96                                 std::string connected("--Port Connected--");
97                                 txtValue->SetValue(crea::std2wx(connected));
98                                 txtValue->SetEditable(false);
99                         }
100
101                         char et = '*';
102                         if(type.find(et)!=-1)
103                         {
104                                 std::string noEditable("--No editable--");
105                                 txtValue->SetValue(crea::std2wx(noEditable));
106                                 txtValue->SetEditable(false);
107                         }
108
109                         _lstNames.push_back(lblName);
110                         _lstValues.push_back(txtValue);
111                         _lstTypes.push_back(lblType);
112
113                         sizer->Add(lblName,1,wxEXPAND,5);
114                         sizer->Add(txtValue,1,wxEXPAND,5);
115                         sizer->Add(lblType,1,wxCENTRE|wxEXPAND,5);
116                 }
117
118
119                 wxBoxSizer *buts        = new wxBoxSizer(wxHORIZONTAL);
120                 wxButton *okButton      = new wxButton(scrollWin, -1, _T("Ok"),wxDefaultPosition, wxSize(70, 30));
121                 wxButton *closeButton   = new wxButton(scrollWin, -1, _T("Close"), wxDefaultPosition, wxSize(70, 30));
122
123                 // connect command event handlers
124                 Connect(okButton->GetId(),wxEVT_COMMAND_BUTTON_CLICKED,wxCommandEventHandler(wxBlackBoxEditionDialog::onClickOk));
125                 Connect(closeButton->GetId(),wxEVT_COMMAND_BUTTON_CLICKED,wxCommandEventHandler(wxBlackBoxEditionDialog::onClickClose));
126
127                 buts->Add(okButton,0,wxCENTRE|wxEXPAND,5);
128                 buts->Add(closeButton,0,wxCENTRE|wxEXPAND,5);
129
130                 sizerDialog->AddSpacer(10);
131                 sizerDialog->Add(text,0,wxALIGN_TOP|wxALIGN_CENTER);
132                 sizerDialog->AddSpacer(15);
133                 sizerDialog->Add(sizer,0,wxALIGN_CENTER);
134                 sizerDialog->AddSpacer(15);
135                 sizerDialog->Add(buts,0,wxALIGN_CENTER | wxTOP | wxBOTTOM);
136
137                 scrollWin->SetSizer(sizerDialog);
138                 scrollWin->Centre();
139
140
141         scrollWin->SetVirtualSize(400,400);
142         scrollWin->SetSize(300,300);
143         scrollWin->SetScrollbars(10, 10, 50, 50);
144 //        scrollWin->SetSizer(sizer);
145
146
147                 ShowModal();
148                 Destroy();
149         }
150
151         //=========================================================================
152
153         void wxBlackBoxEditionDialog::onClickOk(wxCommandEvent& event)
154         {
155                 for(int i=0;i<(int)_lstValues.size();i++)
156                 {
157                         std::string text = wx2std(_lstValues[i]->GetValue());
158                         //TOFIX Search a better alternative
159                         if(text!="--No editable--" && text!="--Port Connected--")
160                         {
161                                 _model->setValueToInputPort(i,text);
162                         }
163                 }
164
165                 Close(true);
166         }
167
168         //=========================================================================
169
170         void wxBlackBoxEditionDialog::onClickClose(wxCommandEvent& event)
171         {
172 printf("EED wxBlackBoxEditionDialog::onClickClose\n");
173                 Close(true);
174         }
175
176         //=========================================================================
177
178 }  // EO namespace bbtk
179
180 // EOF