]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.cxx
12708e34400425a58447bfa5a7e9e2f95dca78a3
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / bbtkwxGUIEditorGraphicBBS.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::WxInterfaceEditorGraphicBBS . 
34 */
35
36 #include "bbtkwxGUIEditorGraphicBBS.h"
37
38 namespace bbtk
39 {
40
41
42         //=========================================================================
43         wxGUIEditorGraphicBBS::wxGUIEditorGraphicBBS(wxFrame *parent)
44                 : wxFrame(parent, -1, _T("bbtkGEditor"),wxDefaultPosition, wxSize(1200,800))
45         {
46                 _frameAUIMgr = new wxAuiManager(this);
47                 
48
49                 //std::string datadir( crea::System::GetExecutablePath() );
50                 std::string datadir (".");
51                 cout<<"RaC //------------------"<<endl;
52                 cout<<"RaC //TODO wxGUIEditorGraphicBBS constructor.Initialize datadir with  crea::System::GetExecutablePath() ."<<endl;
53                 cout<<"RaC //------------------"<<endl;
54
55             #ifdef LINUX /* assume this is OSX */
56                    datadir=datadir+"/../share/creaContours";
57             #endif // MACOSX    
58         
59                 #ifdef MACOSX /* assume this is OSX */
60                         datadir=datadir+"/../../../../share/creaContours";
61                 #endif // MACOSX        
62
63                 _dataDir = datadir;
64
65                 initMenu();
66                 initToolbar();
67                 initTabPanelsManager();
68                 initPackageBrowser();
69                 initHelpHTMLBrowser();
70                 initPropertiesPanel();
71
72                 CreateStatusBar();
73                 _frameAUIMgr->Update();
74                 _actualPkgBrowserBoxName="";
75                 _actualPkgBrowserPkgName="";
76         }
77
78
79         //=========================================================================
80         wxGUIEditorGraphicBBS::~wxGUIEditorGraphicBBS()
81         {
82                 _frameAUIMgr->UnInit();
83         }
84
85         //=========================================================================
86         void wxGUIEditorGraphicBBS::initToolbar()
87         {       
88                 //std::string filename= _dataDir + "/data/icons/wxart_new.xpm";   
89                 wxBitmap bmp_new(new_xpm);
90
91                 wxToolBar  *_toolbar = new wxToolBar(this, wxID_ANY);
92
93                 //Adds a tool btn to the toolbar
94                 _toolbar->AddTool(wxID_NEW,_T("New"),bmp_new, wxNullBitmap, wxITEM_NORMAL,_T("New tab"), _T("Create a new panel tab"));
95
96                 _toolbar->SetMargins( 2, 2 );
97                 _toolbar->Realize();
98                 SetToolBar(_toolbar);
99
100                 // connect command event handlers
101                 Connect(wxID_NEW,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnToolLeftClick));
102
103         }
104         //=========================================================================
105         void wxGUIEditorGraphicBBS::initHelpHTMLBrowser()
106         {
107                 //TO FIX THE PATH OF BBTK BIN  IN ORDER TO USE REGENERATE EXECUTABLES
108                 //RegenerateAll();
109                 _helpHtmlBrowser = new WxGUIHtmlBrowser(this,wxSize(200,0));
110                 _frameAUIMgr->AddPane(_helpHtmlBrowser,wxAuiPaneInfo().Right().MinSize(200,200));       
111         }
112
113         //=========================================================================
114         void wxGUIEditorGraphicBBS::initMenu()
115         {
116                 // create a menu bar
117                 wxMenu *fileMenu = new wxMenu;
118
119                 // the "About" item should be in the help menu
120                 wxMenu *helpMenu = new wxMenu;
121                 helpMenu->Append(wxID_ABOUT, _T("&About..."), _T("About"));
122                 fileMenu->Append(wxID_EXIT, _T("E&xit"), _T("Exit"));
123
124                 Connect(wxID_EXIT,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnExit));
125
126                 // now append the freshly created menu to the menu bar...
127                 wxMenuBar *menuBar = new wxMenuBar();
128                 menuBar->Append(fileMenu, _T("&File"));
129                 menuBar->Append(helpMenu, _T("&Help"));
130
131                 // attach this menu bar to the frame
132                 SetMenuBar(menuBar);
133         }
134
135         //=========================================================================
136         void wxGUIEditorGraphicBBS::initTabPanelsManager()
137         {
138                 _notebook = new wxAuiNotebook(this,wxID_ANY,wxDefaultPosition,wxDefaultSize,wxAUI_NB_TOP|wxAUI_NB_TAB_MOVE|wxAUI_NB_CLOSE_ON_ACTIVE_TAB|wxAUI_NB_TAB_FIXED_WIDTH|wxAUI_NB_WINDOWLIST_BUTTON);
139                 _tabsMgr = new wxTabPanelsManager(this);
140                 _frameAUIMgr->AddPane(_notebook,wxAuiPaneInfo().CenterPane());  
141
142         }
143         
144         //=========================================================================
145         void wxGUIEditorGraphicBBS::initPackageBrowser()
146         {
147                 _pkgBrowser = new WxGUIPackageBrowser2(this);
148                 _pkgBrowser->IncludeAll();
149                 _frameAUIMgr->AddPane(_pkgBrowser,wxAuiPaneInfo().Left().MinSize(200,200).CloseButton(false));          
150         }
151
152         //================================================================
153
154         void wxGUIEditorGraphicBBS::initPropertiesPanel()
155         {
156                 _propertiesPanel = new wxPropertiesPanel(this);
157                 _frameAUIMgr->AddPane(_propertiesPanel,wxAuiPaneInfo().Right().MinSize(200,200).CloseButton(false).Floatable(false));
158         }
159
160         //================================================================
161
162         void wxGUIEditorGraphicBBS::DoRegeneratePackageDoc( const std::string& pack )
163         {
164                 std::string mess("Regenerating doc for package '");
165                 if (pack!="-a"){
166                         mess += pack + "'";
167                 }
168                 else
169                 {
170                         mess = "Regenerating doc for all packages";
171                 }
172                 
173                 mess += " ... please wait";             
174
175                 SetStatusText( std2wx(mess) );
176
177                 //BBTK_BUSY_CURSOR;
178
179                 std::string command;
180                 #if defined(WIN32)
181                         command = "\"";
182                 #endif
183                         command += ConfigurationFile::GetInstance().Get_bin_path();
184                         command += ConfigurationFile::GetInstance().Get_file_separator();
185                         command += "bbRegeneratePackageDoc";
186                 #if defined(WIN32)
187                         command += "\"";
188                 #endif
189
190                 command += " " + pack + " -q";
191             bbtkMessage("debug",1,"Executing system command '"<<command<<"'"<<std::endl);
192
193                 if ( ! system ( command.c_str() ) )
194                 {
195                         SetStatusText( _T("Done !"));
196                         /*
197                         wxMessageBox(_T("Done !"),_T("Regenerate package '")
198                                          +std2wx(pack)+_T("' doc"),
199                                          wxOK | wxICON_INFORMATION);
200                         */
201                 }
202                 else 
203                 {
204                         SetStatusText( _T("Done !"));
205                         wxString err(_T("An error occured while running '"));
206                         err +=  bbtk::std2wx(command) + _T("'");
207                         wxMessageBox(err,_T("Regenerate package doc"),wxOK | wxICON_ERROR);      
208             }
209         }
210
211         //================================================================
212         void wxGUIEditorGraphicBBS::DoRegenerateBoxesLists()
213         {
214                 SetStatusText( _T("Regenerating boxes lists ... please wait") );
215                 //BBTK_BUSY_CURSOR ;
216
217                 std::string command;
218                 #if defined(WIN32)
219                         command = "\"";
220                 #endif
221                         command += ConfigurationFile::GetInstance().Get_bin_path();
222                         command += ConfigurationFile::GetInstance().Get_file_separator();
223                         command += "bbRegenerateBoxesLists";
224
225                 #if defined(WIN32)
226                         command += "\"";
227                 #endif
228                         command += " -q";
229
230                 bbtkMessage("debug",1,"Executing system command '"<<command<<"'"<<std::endl);
231
232                 if ( ! system ( command.c_str() ) )
233                 {
234                         SetStatusText( _T("Done !"));
235                         /*
236                         wxMessageBox(_T("Done !"),_T("Regenerate boxes lists"),
237                                          wxOK | wxICON_INFORMATION);
238                         */
239                 }
240                 else 
241                 {
242                         SetStatusText( _T("Done !"));
243                         wxString err(_T("An error occured while running '"));
244                         err +=  bbtk::std2wx(command) + _T("'");
245                         wxMessageBox(err,_T("Regenerate boxes lists"),wxOK | wxICON_ERROR);      
246                 }
247         }
248         
249   //================================================================
250         void wxGUIEditorGraphicBBS::RegenerateAll()
251         {
252                 DoRegeneratePackageDoc("-a");   
253                 DoRegenerateBoxesLists();
254         }
255
256         //================================================================
257
258         wxAuiNotebook* wxGUIEditorGraphicBBS::getAuiNotebook()
259         {
260                 return _notebook;
261         }
262
263         //================================================================
264
265         void wxGUIEditorGraphicBBS::displayBlackBoxInfo(std::string packageName, std::string boxName)
266         {
267                 if(_actualPkgBrowserPkgName != packageName || _actualPkgBrowserBoxName != boxName )
268                 {
269                         _actualPkgBrowserPkgName = packageName;
270                         _actualPkgBrowserBoxName = boxName;
271
272                         BlackBoxDescriptor::Pointer descriptor = GObjectsMVCFactory::getInstance()->getBlackBoxDescriptor(packageName, boxName);
273                         _pkgBrowser->WxGUIBlackBoxListUserOnSelected(descriptor.get());
274                 }
275         }
276
277         //=========================================================================
278
279         /*****************************************************
280         /* HANDLERS 
281         /*****************************************************/
282
283         void wxGUIEditorGraphicBBS::OnToolLeftClick(wxCommandEvent& event)
284         {
285                 switch (event.GetId())
286                 {
287                 case wxID_NEW :
288                         _tabsMgr->addNewTab();
289                         break;                  
290                 }
291         }
292
293         void wxGUIEditorGraphicBBS::OnExit(wxCommandEvent& event)
294         {
295                 Close(true);
296         }
297
298
299 }  // EO namespace bbtk
300
301 // EOF
302