/usr/include/gofigure2/vtkViewImage2DCollection.h is in libgofigure-dev 0.9.0-3+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 | /*========================================================================
Copyright (c) INRIA - ASCLEPIOS Project (http://www-sop.inria.fr/asclepios).
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of INRIA or ASCLEPIOS, nor the names of any contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
* Modified source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS ``AS IS''
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=========================================================================*/
/*=========================================================================
Modifications were made by the GoFigure Dev. Team.
while at Megason Lab, Systems biology, Harvard Medical school, 2009-11
Copyright (c) 2009-11, President and Fellows of Harvard College.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
Neither the name of the President and Fellows of Harvard College
nor the names of its contributors may be used to endorse or promote
products derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=========================================================================*/
#ifndef _vtkViewImage2DCollection_h_
#define _vtkViewImage2DCollection_h_
#include "vtkCollection.h"
#include "vtkCommand.h"
#include "vtkViewImage2D.h"
#include "MegaVTK2Configure.h"
#include <vector>
/**
This macro can be useful as we frequently set
an instance this way, meaning unregistering previously set instance,
registering given instance, and call a modified event.
However this might be not the best place to define it...
*/
//BTX
#define vtkSyncSetMacro(name, type, base) \
virtual void SyncSet ## name (type _arg) \
{ \
this->InitTraversal(); \
base *item = this->GetNextItem(); \
while ( item ) \
{ \
item->Set ## name (_arg); \
item = this->GetNextItem(); \
} \
}
///ETX
///BTX
#define vtkSyncSetObjectMacro(name, type, base) \
virtual void SyncSet ## name (type * _arg) \
{ \
this->InitTraversal(); \
base *item = this->GetNextItem(); \
while ( item ) \
{ \
item->Set ## name (_arg); \
item = this->GetNextItem(); \
} \
}
///ETX
class vtkScalarBarActor;
class vtkLookupTable;
class vtkTextProperty;
class vtkCornerAnnotation;
class vtkOrientationAnnotation;
class vtkPlane;
class vtkActor;
class vtkDataSet;
class vtkPolyData;
class vtkProperty;
class vtkDataSetCollection;
class vtkMatrixToLinearTransform;
class vtkViewImage2DCollectionCommand;
/**
* \class vtkViewImage2DCollection
* \ingroup MegaVTK
* \brief Manage a collection of 2D views
*/
class VTK_RENDERINGADDON2_EXPORT vtkViewImage2DCollection:public vtkCollection
{
public:
/**
* \brief Convenient method to access the constructor.
*/
static vtkViewImage2DCollection * New();
vtkTypeRevisionMacro(vtkViewImage2DCollection, vtkCollection);
/*
* \bief Get the next vtkViewImage2D in the list. Return NULL when at the end of
* the list
* \return vtkViewImage2D pointer to the next vtkViewImage2D in the collection
*/
vtkViewImage2D * GetNextItem()
{
return static_cast< vtkViewImage2D * >( this->GetNextItemAsObject() );
}
/*
* \bief Get the next vtkViewImage2D2D in the list. Return NULL when at the end of
* the list
* \param[in] i index of the element we are looking for in the collection
* \return vtkViewImage2D pointer to the selected element
*/
vtkViewImage2D * GetItem(int i)
{
return static_cast< vtkViewImage2D * >( this->GetItemAsObject(i) );
}
/*
* \bief Add an object to the list. Does not prevent duplicate entries.
* \param[in] vtkViewImage2D pointer to the element to be added in the collection
*/
void AddItem(vtkViewImage2D *);
/*
* \bief Replace the i'th item in the collection with another 2D image
* \param[in] i index of the element we want to remplace
* \param[in] vtkViewImage2D pointer to the element to be added in the collection
*/
void ReplaceItem(int i, vtkViewImage2D *);
/*
* \brief Remove the i'th item in the list.
* \param[in] i index of the element we want to removed
*
* Be careful if using this function during traversal of the list using
* GetNextItemAsObject (or GetNextItem in derived class). The list WILL
* be shortened if a valid index is given! If this->Current is equal to the
* element being removed, have it point to then next element in the list.
*/
void RemoveItem(int i);
/*
* \brief Remove an object from the list.
* \param[in] vtkViewImage2D pointer to the element to be removed
* Removes the first object found, not
* all occurrences. If no object found, list is unaffected. See warning
* in description of RemoveItem(int).
*/
void RemoveItem(vtkViewImage2D *);
/*
* \brief Remove all objects from the collection.
*/
void RemoveAllItems();
/*
* \brief Initialize the planes actors in all the views
*/
void Initialize();
/*
* \brief Initialize the the observers.
*/
void InitializeAllObservers();
/*
* \brief Get the callbacks associated to the collection
* \return vtkViewImage2DCollectionCommand pointer
*/
vtkGetObjectMacro (Command, vtkViewImage2DCollectionCommand);
/*
* \brief Get the ExtraRenderWindow associated to the collection (3D)
* \return vtkRenderWindow pointer to the ExtraRenderWindow
*/
vtkGetObjectMacro (ExtraRenderWindow, vtkRenderWindow);
/*
* \brief Add an extra window of a different type to the collection
* \param[in] wim Render Window associated to the extra window
*/
void SetExtraRenderWindow(vtkRenderWindow *win)
{ this->ExtraRenderWindow = win; }
vtkSyncSetMacro (Slice, int, vtkViewImage2D);
vtkSyncSetMacro (SliceOrientation, int, vtkViewImage2D);
vtkSyncSetMacro (ShowAnnotations, bool, vtkViewImage2D);
vtkSyncSetMacro (ShowScalarBar, bool, vtkViewImage2D);
vtkSyncSetMacro (ColorWindow, double, vtkViewImage2D);
vtkSyncSetMacro (ColorLevel, double, vtkViewImage2D);
vtkSyncSetObjectMacro (OrientationMatrix, vtkMatrix4x4, vtkViewImage2D);
vtkSyncSetObjectMacro (LookupTable, vtkLookupTable, vtkViewImage2D);
vtkSyncSetObjectMacro (TextProperty, vtkTextProperty, vtkViewImage2D);
vtkSyncSetObjectMacro (Input, vtkImageData, vtkViewImage2D);
vtkSyncSetObjectMacro (InputConnection, vtkAlgorithmOutput, vtkViewImage2D);
vtkSyncSetObjectMacro (Size, int, vtkViewImage2D);
vtkSyncSetObjectMacro (Position, int, vtkViewImage2D);
vtkSyncSetObjectMacro (WorldCoordinates, double, vtkViewImage2D);
/// Description: Synchronize interpolate between views
vtkSyncSetMacro (Interpolate, int, vtkViewImage2D);
/// Description: Synchronize reset window level between views
virtual void SyncResetWindowLevel(void);
void SyncUpdateWindowLevel(void);
/// Description: Synchronize reset camera between views
virtual void SyncResetCamera(void);
/// Description: Synchronize render between views
virtual void SyncRender();
/// Description: Synchronize render between views except iV
///(which is already up to date)
virtual void SyncRender( vtkViewImage2D* iV );
/// Description: Synchronize reset between views
virtual void SyncReset(void);
/// Description: Synchronize interactor start between views
virtual void SyncStart(void);
// Decide weither or not the collection will link interactions
/// Description: link slice flag
vtkGetMacro (LinkSliceMove, unsigned int);
/// Description: link slice flag
virtual void SetLinkSliceMove(unsigned int v);
/// Description: link slice flag
vtkBooleanMacro (LinkSliceMove, unsigned int);
/// Description: link color window flag
vtkGetMacro (LinkColorWindowLevel, unsigned int);
/// Description: link color window flag
virtual void SetLinkColorWindowLevel(unsigned int v);
/// Description: link color window flag
vtkBooleanMacro (LinkColorWindowLevel, unsigned int);
/// Description: link reset color window flag
vtkGetMacro (LinkResetWindowLevel, unsigned int);
/// Description: link reset color window flag
virtual void SetLinkResetWindowLevel(unsigned int v);
/// Description: link reset color window flag
vtkBooleanMacro (LinkResetWindowLevel, unsigned int);
/// Description: link reset viewer flag
vtkGetMacro (LinkResetViewer, unsigned int);
/// Description: link reset viewer flag
virtual void SetLinkResetViewer(unsigned int v);
/// Description: link reset viewer flag
vtkBooleanMacro (LinkResetViewer, unsigned int);
/// Description: link requested position (double click) flag
vtkGetMacro (LinkRequestedPosition, unsigned int);
/// Description: link requested position (double click) flag
virtual void SetLinkRequestedPosition(unsigned int v);
/// Description: link requested position (double click) flag
vtkBooleanMacro (LinkRequestedPosition, unsigned int);
/// Description: link camera flag
vtkGetMacro (LinkCamera, unsigned int);
/// Description: link camera flag
virtual void SetLinkCamera(unsigned int v);
/// Description: link camera flag
vtkBooleanMacro (LinkCamera, unsigned int);
/// Description: link position flag
vtkGetMacro (LinkPosition, unsigned int);
/// Description: link position flag
virtual void SetLinkPosition(unsigned int v);
/// Description: link position flag
vtkBooleanMacro (LinkPosition, unsigned int);
/// Description: show axes (view intersections) flag
virtual void SetShowAxes(unsigned int v);
/// Description: show axes (view intersections) flag
vtkBooleanMacro (ShowAxes, unsigned int);
/// Description: show axes (view intersections) flag
vtkGetMacro (ShowAxes, unsigned int);
void SyncSetBackground(double *rgb);
void SyncPan();
void SyncSetZoomAndParallelScale(double Zoom, double ParallelScale);
/**
* \brief Set the visibility of the plane actor.
* \param[in] iVisibility
*/
void SetSplinePlaneActorsVisibility(bool iVisibility);
/**
* \brief Change Interaction mode of the collection to DefaultMode()
*/
void EnableDefaultInteractionMode();
/**
* \brief Change Interaction mode of the collection to ZoomMode()
*/
void EnableZoomInteractionMode();
/**
* \brief Change Interaction mode of the collection to ZoomMode()
*/
void EnablePanInteractionMode();
/**
* \brief Change Interaction mode of the collection to ContourPickingMode()
*/
void EnableContourPickingMode();
/**
* \brief Synchronize the 2d views
* \param[in] iSynchronize enable/disable synchronization
*/
void SynchronizeViews( bool iSynchronize);
/**
* \brief Get the plane actors
*/
std::vector< vtkProp3D * > GetPlanesActors();
protected:
vtkViewImage2DCollection();
~vtkViewImage2DCollection();
vtkViewImage2DCollectionCommand *Command;
vtkRenderWindow * ExtraRenderWindow;
std::vector< vtkProp3D * > PlanesActors;
unsigned int LinkSliceMove;
unsigned int LinkColorWindowLevel;
unsigned int LinkResetWindowLevel;
unsigned int LinkResetViewer;
unsigned int LinkRequestedPosition;
unsigned int LinkCamera;
unsigned int LinkPosition;
unsigned int ShowAxes;
};
#endif /* _vtkViewImage2DCollection_h_ */
|