GOFIGURE2  0.9.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
QGoSynchronizedView3DCallbacks.h
Go to the documentation of this file.
1 /*=========================================================================
2  Authors: The GoFigure Dev. Team.
3  at Megason Lab, Systems biology, Harvard Medical school, 2009-11
4 
5  Copyright (c) 2009-11, President and Fellows of Harvard College.
6  All rights reserved.
7 
8  Redistribution and use in source and binary forms, with or without
9  modification, are permitted provided that the following conditions are met:
10 
11  Redistributions of source code must retain the above copyright notice,
12  this list of conditions and the following disclaimer.
13  Redistributions in binary form must reproduce the above copyright notice,
14  this list of conditions and the following disclaimer in the documentation
15  and/or other materials provided with the distribution.
16  Neither the name of the President and Fellows of Harvard College
17  nor the names of its contributors may be used to endorse or promote
18  products derived from this software without specific prior written
19  permission.
20 
21  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
23  THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24  PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
25  BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
26  OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
27  OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
28  OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
30  OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
31  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 
33 =========================================================================*/
34 #ifndef __GoSynchronizedView3DCallbacks_h
35 #define __GoSynchronizedView3DCallbacks_h
36 
37 #include "vtkCommand.h"
38 #include "QGoSynchronizedView3D.h"
39 
40 class vtkCallbackCommand;
41 class vtkObject;
42 
53 {
58  Q_OBJECT
59 public:
64  std::vector< QGoSynchronizedView3D * > ioOpenSynchronizedViews,
65  QObject *iParent = 0);
66 
68 
71  static void synchronizeCameras0(vtkObject *caller, long unsigned int eventId,
72  void *clientData, void *callData);
73 
76  static void synchronizeCameras1(vtkObject *caller, long unsigned int eventId,
77  void *clientData, void *callData);
78 
81  static void synchronizeCameras2(vtkObject *caller, long unsigned int eventId,
82  void *clientData, void *callData);
83 
86  static void synchronizeCameras3(vtkObject *caller, long unsigned int eventId,
87  void *clientData, void *callData);
88 
89  static void synchronizeCamera(int iCamera,
90  vtkObject *caller,
91  long unsigned int eventId,
92  void *clientData,
93  void *callData);
94 
98  void removeSynchronizedView(QGoSynchronizedView3D *ioSynchronizedView);
99 
103  void addSynchronizedView(QGoSynchronizedView3D *ioSynchronizedView);
104 
105 signals:
109  void SliceViewXYChanged(int oSlice);
110 
114  void SliceViewXZChanged(int oSlice);
115 
119  void SliceViewYZChanged(int oSlice);
120 
121 private:
125  void SetupCallBack();
126 
130  std::vector< vtkCallbackCommand * > m_vtkCallBackCamSync;
131 
135  std::vector< QGoSynchronizedView3D * > m_openSynchronizedView;
136 };
137 
138 #endif // QGoSynchronizedView3D3DSYNC_H
void SetupCallBack()
setup the callback command object (client data, called function...etc)
static void synchronizeCamera(int iCamera, vtkObject *caller, long unsigned int eventId, void *clientData, void *callData)
void removeSynchronizedView(QGoSynchronizedView3D *ioSynchronizedView)
remove a QGoSynchronizedView3D from the vector of synchronized Managers (this method takes care of re...
static void synchronizeCameras3(vtkObject *caller, long unsigned int eventId, void *clientData, void *callData)
callback function to synchornize cameras (has to be public)
QGoSynchronizedView3DCallbacks(std::vector< QGoSynchronizedView3D * > ioOpenSynchronizedViews, QObject *iParent=0)
the constructor do most of the work : add observers &amp; callbacks to QGoSynchronizedViews of the vector...
std::vector< QGoSynchronizedView3D * > m_openSynchronizedView
class used to display a QWidget containing a two dimensional vtkimagedata* or itkimage*. QGoSynchronizedView3D provide the interface to synchronize cameras among several GoSynchronizedView3D.
static void synchronizeCameras0(vtkObject *caller, long unsigned int eventId, void *clientData, void *callData)
callback function to synchornize cameras (has to be public)
static void synchronizeCameras1(vtkObject *caller, long unsigned int eventId, void *clientData, void *callData)
callback function to synchornize cameras (has to be public)
This object takes a list of QGoSynchronizedView and synchronize their cameras by setting up callbacks...
void SliceViewXZChanged(int oSlice)
signals for synchronizing sliders (gives current XZ slice of any changing QGoSynchronizedView) ...
std::vector< vtkCallbackCommand * > m_vtkCallBackCamSync
void addSynchronizedView(QGoSynchronizedView3D *ioSynchronizedView)
add a QGoSynchronizedView3D to the vector of synchronized Managers (this method takes care of adding ...
void SliceViewYZChanged(int oSlice)
signals for synchronizing sliders (gives current YZ slice of any changing QGoSynchronizedView) ...
void SliceViewXYChanged(int oSlice)
signals for synchronizing sliders (gives current XYslice of any changing QGoSynchronizedView) ...
static void synchronizeCameras2(vtkObject *caller, long unsigned int eventId, void *clientData, void *callData)
callback function to synchornize cameras (has to be public)