]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.cxx
Connection with BBTK and capturing black bbox descriptor
[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                 
70
71                 CreateStatusBar();
72                 _frameAUIMgr->Update();
73         }
74
75
76         //=========================================================================
77         wxGUIEditorGraphicBBS::~wxGUIEditorGraphicBBS()
78         {
79                 _frameAUIMgr->UnInit();
80         }
81
82         //=========================================================================
83         void wxGUIEditorGraphicBBS::initToolbar()
84         {       
85                 //std::string filename= _dataDir + "/data/icons/wxart_new.xpm";   
86                 wxBitmap bmp_new(new_xpm);
87
88                 wxToolBar  *_toolbar = new wxToolBar(this, wxID_ANY);
89
90                 //Adds a tool btn to the toolbar
91                 _toolbar->AddTool(wxID_NEW,_T("New"),bmp_new, wxNullBitmap, wxITEM_NORMAL,_T("New tab"), _T("Create a new panel tab"));
92
93
94                 ////////////////////
95                 // TEMP to avoid drag and drop
96                         
97                 _toolbar->AddTool(15,_T("New Box"),bmp_new, wxNullBitmap, wxITEM_NORMAL,_T("New Box"), _T("Create a new Box"));
98
99
100                 //
101                 ////////////////////
102
103                 _toolbar->SetMargins( 2, 2 );
104                 _toolbar->Realize();
105                 SetToolBar(_toolbar);
106
107                 // connect command event handlers
108                 Connect(wxID_NEW,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnToolLeftClick));
109                 Connect(15,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnToolLeftClick));
110
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                 // now append the freshly created menu to the menu bar...
125                 wxMenuBar *menuBar = new wxMenuBar();
126                 menuBar->Append(fileMenu, _T("&File"));
127                 menuBar->Append(helpMenu, _T("&Help"));
128
129                 // attach this menu bar to the frame
130                 SetMenuBar(menuBar);
131         }
132
133         //=========================================================================
134         void wxGUIEditorGraphicBBS::initTabPanelsManager()
135         {
136                 wxAuiNotebook *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);
137                 _tabsMgr = new wxTabPanelsManager(notebook);
138                 _frameAUIMgr->AddPane(notebook,wxAuiPaneInfo().CenterPane());   
139
140         }
141         
142         //=========================================================================
143         void wxGUIEditorGraphicBBS::initPackageBrowser()
144         {
145                 _pkgBrowser = new WxGUIPackageBrowser2(this);
146                 _pkgBrowser->IncludeAll();
147                 _frameAUIMgr->AddPane(_pkgBrowser,wxAuiPaneInfo().Left().MinSize(200,200).CloseButton(false));  
148                 
149         }
150
151         /*****************************************************
152         /* HANDLERS 
153         /*****************************************************/
154
155         void wxGUIEditorGraphicBBS::OnToolLeftClick(wxCommandEvent& event)
156         {
157                 switch (event.GetId())
158                 {
159                 case wxID_NEW :
160                         std::cout<<"RaC New"<<std::endl;
161                         _tabsMgr->addNewTab();
162                         break;
163                 case 15 :
164                         BlackBoxDescriptor* desc = _pkgBrowser->GetActualSelected();
165                         
166                 }
167         }
168
169
170 }  // EO namespace bbtk
171
172 // EOF
173