]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxDiagramPropertiesEditionDialog.cxx
2427 bbGEditor Support New Normal Correction of showing messages of support in the...
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / wxDiagramPropertiesEditionDialog.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 #
8 #  This software is governed by the CeCILL-B license under French law and 
9 #  abiding by the rules of distribution of free software. You can  use, 
10 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
11 #  license as circulated by CEA, CNRS and INRIA at the following URL 
12 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
13 #  or in the file LICENSE.txt.
14 #
15 #  As a counterpart to the access to the source code and  rights to copy,
16 #  modify and redistribute granted by the license, users are provided only
17 #  with a limited warranty  and the software's author,  the holder of the
18 #  economic rights,  and the successive licensors  have only  limited
19 #  liability. 
20 #
21 #  The fact that you are presently reading this means that you have had
22 #  knowledge of the CeCILL-B license and that you accept its terms.
23 # ------------------------------------------------------------------------  
24 */
25
26 /*=========================================================================
27 Program:   bbtkGEditor
28 Module:    $RCSfile$
29 Language:  C++
30 Date:      $Date$
31 Version:   $Revision$
32 =========================================================================*/
33
34 /* ---------------------------------------------------------------------
35
36 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
37 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux, Ricardo A Corredor
38 *
39 *  This software is governed by the CeCILL-B license under French law and
40 *  abiding by the rules of distribution of free software. You can  use,
41 *  modify and/ or redistribute the software under the terms of the CeCILL-B
42 *  license as circulated by CEA, CNRS and INRIA at the following URL
43 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
44 *  or in the file LICENSE.txt.
45 *
46 *  As a counterpart to the access to the source code and  rights to copy,
47 *  modify and redistribute granted by the license, users are provided only
48 *  with a limited warranty  and the software's author,  the holder of the
49 *  economic rights,  and the successive licensors  have only  limited
50 *  liability.
51 *
52 *  The fact that you are presently reading this means that you have had
53 *  knowledge of the CeCILL-B license and that you accept its terms.
54 * ------------------------------------------------------------------------ */
55
56 /**
57 *  \file
58 *  \brief Class bbtk::wxDiagramPropertiesEditionDialog .
59 */
60
61 #include "wxDiagramPropertiesEditionDialog.h"
62 #include "creaWx.h"
63
64
65 namespace bbtk
66 {
67         //=========================================================================
68
69         wxDiagramPropertiesEditionDialog::wxDiagramPropertiesEditionDialog(wxGUIEditorGraphicBBS *parent, NodeTreeC tree):wxDialog(parent,wxID_ANY,_T("Diagram Properties"), wxDefaultPosition, wxSize(500, 650),wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
70         {
71                 _parent = parent;
72                 _tree = tree;
73                 constructDiagramPropertiesEditionDialog();
74         }
75
76         //=========================================================================
77
78
79         wxDiagramPropertiesEditionDialog::~wxDiagramPropertiesEditionDialog()
80         {
81
82         }
83
84         //=========================================================================
85         
86         void wxDiagramPropertiesEditionDialog::constructBoxTree(NodeTreeC nodeTree, wxTreeItemId itemId)
87         {
88                 
89                 for(int i = 0 ; i < nodeTree.childs.size() ; i++)
90                 {
91                         string spc = nodeTree.childs[i].data;
92                         const char* ccc = spc.c_str();
93                         wxString pc = wxString::FromUTF8 (ccc);
94                         wxTreeItemId iId = _treeBox->AppendItem(itemId, pc, -1, -1, NULL);
95                         constructBoxTree(nodeTree.childs[i], iId );
96                 }
97         }
98
99   //==================================================================================
100
101         void wxDiagramPropertiesEditionDialog::constructDiagramPropertiesEditionDialog()
102         {
103                 const int ID_COMBO = 1;
104                 wxPanel *panel = new wxPanel(this, -1);
105                 wxBoxSizer *hbox = new wxBoxSizer(wxHORIZONTAL);
106                 wxFlexGridSizer *fgsizer = new wxFlexGridSizer(5, 2, 9, 25);
107
108
109                 //CFT           
110
111                 wxStaticText *tree = new wxStaticText(panel, -1, wxT("Tree of Box"));
112                 
113                 string sp = _tree.data;
114                 const char* cc = sp.c_str();
115                 wxString p = wxString::FromUTF8 (cc);
116
117                 _treeBox = new wxTreeCtrl (this, wxID_ANY, wxPoint(0,0), wxSize(320,300), wxTR_HAS_BUTTONS | wxTR_SINGLE );
118                 wxTreeItemId itemId = _treeBox->AddRoot(p, -1,-1,NULL);
119                 
120                 constructBoxTree(_tree, itemId);
121                 _treeBox->ExpandAll();  
122                 //_tree.treeTour(0);
123                 //CFT END
124
125 //CFT
126 //COMBOBOX OF MESSAGE
127 /*
128 Kind         Level  Nature
129 Interpreter  0  Messages of the interpreter
130 all          0  Minimum level for all kind of messages
131 change       0  Box i/o changes related messages
132 code         0  If positive then codes of the messages are displayed
133 config       0  Configuration related messages
134 connection   0  Connections related messages
135 data         0  Data related messages
136 debug        0  Debug messages
137 echo         1  Level>0 : Prints the output of the 'print' commands of the user.
138         Level>1 : Prints the command being interpreted
139 error        0  Error messages
140 gui          0  Graphical user interface related messages
141 help         1  Help messages
142 kernel       0  Messages generated by the core classes of the lib
143 max          9  Maximum level for all kind of messages
144 object       0  object memory related messages
145 output       1  Output messages
146 package      0  Packages related messages
147 process      0  Messages related to box processing
148 qt           0  Qt related messages
149 warning      1  Warning messages
150 widget       0  Widgets related messages
151 wx   
152 */
153                 _diagramMessageKind = new wxComboBox(panel, -1, wxEmptyString, wxDefaultPosition, wxSize(100,-1) );
154                 _diagramMessageKind->Append (wxT(" "));
155                 _diagramMessageKind->Append (wxT("Interpreter"));
156                 _diagramMessageKind->Append (wxT("all"));
157                 _diagramMessageKind->Append (wxT("change"));
158                 _diagramMessageKind->Append (wxT("code"));
159                 _diagramMessageKind->Append (wxT("config"));
160                 _diagramMessageKind->Append (wxT("connection"));
161                 _diagramMessageKind->Append (wxT("data"));
162                 _diagramMessageKind->Append (wxT("debug"));
163                 _diagramMessageKind->Append (wxT("echo"));
164                 _diagramMessageKind->Append (wxT("error"));
165                 _diagramMessageKind->Append (wxT("gui"));
166                 _diagramMessageKind->Append (wxT("help"));
167                 _diagramMessageKind->Append (wxT("kernel"));
168                 _diagramMessageKind->Append (wxT("max"));
169                 _diagramMessageKind->Append (wxT("object"));
170                 _diagramMessageKind->Append (wxT("output"));
171                 _diagramMessageKind->Append (wxT("package"));
172                 _diagramMessageKind->Append (wxT("process"));
173                 _diagramMessageKind->Append (wxT("qt"));
174                 _diagramMessageKind->Append (wxT("warning"));
175                 _diagramMessageKind->Append (wxT("widget"));
176                 _diagramMessageKind->Append (wxT("wx"));
177                 _diagramMessageKind->SetEditable(false);
178
179                 _diagramMessageLevel = new wxComboBox(panel, -1, wxEmptyString, wxDefaultPosition, wxSize(100,-1) );
180                 _diagramMessageLevel->Append (wxT(" "));                
181                 _diagramMessageLevel->Append (wxT("0"));
182                 _diagramMessageLevel->Append (wxT("1"));
183                 _diagramMessageLevel->Append (wxT("2"));
184                 _diagramMessageLevel->Append (wxT("3"));
185                 _diagramMessageLevel->Append (wxT("4"));
186                 _diagramMessageLevel->Append (wxT("5"));
187                 _diagramMessageLevel->Append (wxT("6"));
188                 _diagramMessageLevel->Append (wxT("7"));
189                 _diagramMessageLevel->Append (wxT("8"));
190                 _diagramMessageLevel->Append (wxT("9"));
191                 _diagramMessageLevel->SetEditable(false);
192
193 //CFT END
194
195                 // SELECTION CONSTANTS
196                 // 0 - Application
197                 // 1 - Complex box
198                 _diagramType = new wxComboBox(panel, -1, wxEmptyString, wxDefaultPosition, wxSize(100,-1) );
199                 _diagramType->Append (wxT("Application"));
200                 _diagramType->Append (wxT("Complex box"));
201                 _diagramType->SetEditable(false);
202                 //_diagramType->Enable(false);
203
204                 Connect(ID_COMBO, wxEVT_COMMAND_COMBOBOX_SELECTED,
205                                         wxCommandEventHandler(wxDiagramPropertiesEditionDialog::OnComboBoxSelected));
206
207                 int currentType = (_parent->isCurrentDiagramComplexBox()==false)? 0 : 1;
208                 _diagramType->Select(currentType);
209                 std::string currentKindStr = _parent->getCurrentDiagramMessageKind();
210                 int currentKind;
211                         if (currentKindStr =="Interpreter") { currentKind = 1;}
212                         if (currentKindStr == "all") { currentKind = 2; }
213                         if (currentKindStr == "change") { currentKind = 3;  }
214                         if (currentKindStr == "code") { currentKind = 4;  }
215                         if (currentKindStr == "config"){ currentKind = 5;  }
216                         if (currentKindStr == "connection") { currentKind = 6;  }
217                         if (currentKindStr == "data") { currentKind = 7;  }
218                         if (currentKindStr == "debug") { currentKind = 8;  }
219                         if (currentKindStr == "echo") { currentKind = 9;  }
220                         if (currentKindStr == "error") { currentKind = 10;  }
221                         if (currentKindStr == "gui") { currentKind = 11;  }
222                         if (currentKindStr == "help") { currentKind = 12;  }
223                         if (currentKindStr == "kernel") { currentKind = 13;  }
224                         if (currentKindStr == "max"){ currentKind = 14;  }
225                         if (currentKindStr == "object") { currentKind = 15;  }
226                         if (currentKindStr == "output") { currentKind = 16;  }
227                         if (currentKindStr == "package") { currentKind = 17;  }
228                         if (currentKindStr == "process") { currentKind = 18;  }
229                         if (currentKindStr == "qt" ){ currentKind = 19;  }
230                         if (currentKindStr == "warning") { currentKind = 20;  }
231                         if (currentKindStr == "widget") { currentKind = 21;  }
232                         if (currentKindStr == "wx" ){ currentKind = 22;  }
233                 _diagramMessageKind->Select(currentKind);
234                 int currentLevel = atoi(_parent->getCurrentDiagramMessageLevel().c_str());
235                 _diagramMessageLevel->Select(currentLevel+1);
236
237                 wxStaticText *type = new wxStaticText(panel, -1, wxT("Type"));
238                 wxStaticText *author = new wxStaticText(panel, -1, wxT("Author"));
239                 wxStaticText *category = new wxStaticText(panel, -1, wxT("Categories"));
240                 wxStaticText *description = new wxStaticText(panel, -1, wxT("Description"));
241                 wxStaticText *messageKind = new wxStaticText(panel, -1, wxT("Message kind"));
242                 wxStaticText *messageLevel = new wxStaticText(panel, -1, wxT("Message level"));
243
244                 _txtAuthor = new wxTextCtrl(panel, -1);
245                 _txtCategory = new wxTextCtrl(panel, -1);
246                 _txtDescription = new wxTextCtrl(panel, -1, wxT(""), wxPoint(-1, -1), wxSize(-1, -1), wxTE_MULTILINE);
247                 wxButton *okButton      = new wxButton(panel, -1, _T("Ok"),wxDefaultPosition, wxSize(-1, -1));
248                 wxButton *closeButton   = new wxButton(panel, -1, _T("Close"), wxDefaultPosition, wxSize(-1, -1));
249
250                 // connect command event handlers
251                 Connect(okButton->GetId(),wxEVT_COMMAND_BUTTON_CLICKED,wxCommandEventHandler(wxDiagramPropertiesEditionDialog::onClickOk));
252                 Connect(closeButton->GetId(),wxEVT_COMMAND_BUTTON_CLICKED,wxCommandEventHandler(wxDiagramPropertiesEditionDialog::onClickClose));
253
254                 // Assign loaded values
255                 _txtAuthor->SetValue(crea::std2wx(_parent->getCurrentDiagramAuthor()));
256                 _txtCategory->SetValue(crea::std2wx(_parent->getCurrentDiagramCategory()));
257                 _txtDescription->SetValue(crea::std2wx(_parent->getCurrentDiagramDescription()));
258
259
260                 fgsizer->Add(type);
261                 fgsizer->Add(_diagramType, 1, wxEXPAND);
262                 fgsizer->Add(author);
263                 fgsizer->Add(_txtAuthor, 1, wxEXPAND);
264                 fgsizer->Add(category);
265                 fgsizer->Add(_txtCategory, 1, wxEXPAND);
266                 fgsizer->Add(description, 1, wxEXPAND);
267                 fgsizer->Add(_txtDescription, 1, wxEXPAND);
268 //cft
269                 fgsizer->Add(messageKind);
270                 fgsizer->Add(_diagramMessageKind, 1, wxEXPAND);
271                 fgsizer->Add(messageLevel);
272                 fgsizer->Add(_diagramMessageLevel, 1, wxEXPAND);
273                 fgsizer->Add(tree);
274                 fgsizer->Add(_treeBox, 1, wxEXPAND);
275 //cft end               
276                 fgsizer->Add(okButton, 1, wxEXPAND);
277                 fgsizer->Add(closeButton, 1, wxEXPAND);
278
279                 fgsizer->AddGrowableRow(3, 1);
280                 fgsizer->AddGrowableCol(1, 1);
281
282                 hbox->Add(fgsizer, 1, wxALL | wxEXPAND, 15);
283                 panel->SetSizerAndFit(hbox);
284                 Centre();
285
286                 ShowModal();
287                 Destroy();
288
289                 // Assign loaded values
290                 _txtAuthor->SetValue(crea::std2wx(_parent->getCurrentDiagramAuthor()));
291                 _txtCategory->SetValue(crea::std2wx(_parent->getCurrentDiagramCategory()));
292                 _txtDescription->SetValue(crea::std2wx(_parent->getCurrentDiagramDescription()));
293         }
294
295         //=========================================================================
296
297         void wxDiagramPropertiesEditionDialog::onClickOk(wxCommandEvent& event)
298         {
299                 printf("RaC wxDiagramPropertiesEditionDialog::onClickOk\n");
300                 std::string txtAuthor = wx2std(_txtAuthor->GetValue());
301                 std::string txtCategory = wx2std(_txtCategory->GetValue());
302                 std::string txtDescription = wx2std(_txtDescription->GetValue());
303                 _parent->setCurrentDiagramAuthor(txtAuthor);
304                 _parent->setCurrentDiagramCategory(txtCategory);
305                 _parent->setCurrentDiagramDescription(txtDescription);
306
307                 // SELECTION CONSTANTS
308                 // 0 - Application
309                 // 1 - Complex box
310                 int selection = _diagramType->GetSelection();
311                 if(selection == 0)
312                         _parent->disableComplexBox();
313                 else if (selection == 1)
314                         _parent->enableComplexBox();
315
316
317                 //Message
318                 std::string kindSelected = wx2std(_diagramMessageKind->GetStringSelection());
319                 std::string levelSelected = wx2std(_diagramMessageLevel->GetStringSelection());
320                 _parent->setCurrentDiagramMessageKind(kindSelected);
321                 _parent->setCurrentDiagramMessageLevel(levelSelected);
322                 Close(true);
323         }
324
325         //=========================================================================
326
327         void wxDiagramPropertiesEditionDialog::onClickClose(wxCommandEvent& event)
328         {
329                 printf("RaC wxDiagramPropertiesEditionDialog::onClickClose\n");
330                 Close(true);
331         }
332
333         //=========================================================================
334
335         void wxDiagramPropertiesEditionDialog::OnComboBoxSelected(wxCommandEvent& event)
336         {
337                 // TODO Show info to edit complex boxes
338         }
339
340         //=========================================================================
341         
342
343         
344         
345 }  // EO namespace bbtk
346
347