]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/PlaneDirectionViewer.cxx
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / PlaneDirectionViewer.cxx
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26
27 #include "PlaneDirectionViewer.h"
28
29 /********************************************************************************************
30 ** Start of data viewmanagerData
31 *********************************************************************************************/
32
33
34 PlaneDirectionViewer* PlaneDirectionViewer::instance=NULL;
35
36 PlaneDirectionViewer::PlaneDirectionViewer(wxWindow* parent,int radio, double colour[3], int opacity)
37 :wxPanel(parent)
38 {
39         manager = new PlaneDirectionManager(radio, colour, opacity);    
40         wxBoxSizer* sizer = new wxBoxSizer(wxVERTICAL);
41         this->SetSizer(sizer);
42         this->SetAutoLayout(true);
43 }
44
45 PlaneDirectionViewer* PlaneDirectionViewer::getInstance(wxWindow* parent,int radio, double colour[3], int opacity){
46         if(instance==NULL){
47                 instance = new PlaneDirectionViewer(parent,radio,colour,opacity);
48         }
49         return instance;
50 }
51
52 PlaneDirectionViewer* PlaneDirectionViewer::getInstance(){
53         return instance;
54 }
55
56 PlaneDirectionViewer::~PlaneDirectionViewer(){
57         delete manager;
58 }
59
60 void PlaneDirectionViewer::SetRenderer(vtkRenderer* render){
61         manager->SetRenderer(render);
62 }
63
64 void PlaneDirectionViewer::SetVectors( std::vector<double> lstPointsx, std::vector<double> lstPointsy, std::vector<double> lstPointsz){
65         manager->SetVectors(lstPointsx,lstPointsy,lstPointsz);
66 }
67
68 void PlaneDirectionViewer::UpdateDirections() throw (std::exception){
69         manager->UpdateDirections();
70         std::vector<PlaneDirectionManagerData*> vectdata = manager->GetPlanesData();
71         int i;
72         for(i = 0; i < (int)viewdata.size();i++){
73                 this->GetSizer()->Remove(i);
74                 viewdata[i]->Destroy();
75         }
76         viewdata.clear();       
77         for(i = 0; i < (int)vectdata.size(); i++){
78                 PlaneDirectionViewerPanel* planedirview = new PlaneDirectionViewerPanel(this, vectdata[i],i);
79                 viewdata.push_back(planedirview);
80                 this->GetSizer()->Add(planedirview,1);
81         }
82         this->Layout(); 
83 }
84
85 void PlaneDirectionViewer::addRemoveActor(int index, bool addremove){
86         manager->addRemoveActor(index, addremove);
87 }
88
89 void PlaneDirectionViewer::changeColor(int index,double r,double g,double b){
90         manager->changeColor(index, r,g,b);
91 }
92
93 void PlaneDirectionViewer::WriteInformation(std::string  filename, double* spc){
94     manager->WriteInformation(filename,spc);
95 }
96
97 void PlaneDirectionViewer::SetArrowSize(int arrowsize){
98         manager->SetArrowSize(arrowsize);
99 }
100