1 /*=========================================================================
7 =========================================================================*/
9 /* ---------------------------------------------------------------------
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
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.
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
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 * ------------------------------------------------------------------------ */
35 * \brief Class bbtk::vtkGObjectView : abstract black-box interface.
39 * Design and Developpement of BBTK GEditor
40 * Ricardo A Corredor J <ra.corredor67@uniandes.edu.co>
44 #ifndef __vtkGObjectView_h__
45 #define __vtkGObjectView_h__
47 //Includes same project
48 #include "GlobalConstants.h"
49 #include "GObjectModel.h"
52 //Includes creaMaracasVisu
53 #include <wxVtkBaseView.h>
54 #include <vtkInteractorStyleBaseView.h>
57 #include <vtkRenderer.h>
58 #include "vtkConeSource.h"
59 #include "vtkPolyDataMapper.h"
70 class vtkGObjectView : public Observer
81 void setModel(GObjectModel *model);
82 void setBaseView(wxVtkBaseView* baseView);
83 void initVtkObjects();
85 void setStartDragging(bool param);
87 void setState(int state);
90 // Method to force a vtk refresh to the list of controllers of the wxVtkBaseView
91 void setRefreshWaiting();
93 virtual bool isPointInside(int X,int Y);
94 virtual void moveObject(int X, int Y);
96 virtual void removeFromScene();
98 virtual void update(int idController,int command);
103 bool _isStartDragging;
105 //Makes a difference between the first point clicked and the new position, in order to move the selected objects
114 //Protected Attributes
116 wxVtkBaseView * _baseView;
117 GObjectModel * _model;
118 vtkActor * _borderObjectActor;
119 vtkActor * _fillObjectActor;
120 vtkPolyDataMapper * _fillPolyMapper;
121 vtkPolyDataMapper * _borderPolyMapper;
125 // State of the object (See GlobalConstants.h)
129 virtual void createVtkObjects();
130 virtual void addVtkActors();
131 virtual void removeVtkActors();
132 virtual void updateColors();