/usr/include/vtk-6.1/vtkBalloonWidget.h is in libvtk6-dev 6.1.0+dfsg2-6.
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 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkBalloonWidget.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkBalloonWidget - popup text balloons above instance of vtkProp when hovering occurs
// .SECTION Description
// The vtkBalloonWidget is used to popup text and/or an image when the mouse
// hovers over an instance of vtkProp. The widget keeps track of
// (vtkProp,vtkBalloon) pairs (where the internal vtkBalloon class is defined
// by a pair of vtkStdString and vtkImageData), and when the mouse stops
// moving for a user-specified period of time over the vtkProp, then the
// vtkBalloon is drawn nearby the vtkProp. Note that an instance of
// vtkBalloonRepresentation is used to draw the balloon.
//
// To use this widget, specify an instance of vtkBalloonWidget and a
// representation (e.g., vtkBalloonRepresentation). Then list all instances
// of vtkProp, a text string, and/or an instance of vtkImageData to be
// associated with each vtkProp. (Note that you can specify both text and an
// image, or just one or the other.) You may also wish to specify the hover
// delay (i.e., set in the superclass vtkHoverWidget).
//
// .SECTION Event Bindings
// By default, the widget observes the following VTK events (i.e., it
// watches the vtkRenderWindowInteractor for these events):
// <pre>
// MouseMoveEvent - occurs when mouse is moved in render window.
// TimerEvent - occurs when the time between events (e.g., mouse move)
// is greater than TimerDuration.
// KeyPressEvent - when the "Enter" key is pressed after the balloon appears,
// a callback is activated (e.g., WidgetActivateEvent).
// </pre>
//
// Note that the event bindings described above can be changed using this
// class's vtkWidgetEventTranslator. This class translates VTK events
// into the vtkBalloonWidget's widget events:
// <pre>
// vtkWidgetEvent::Move -- start the timer
// vtkWidgetEvent::TimedOut -- when hovering occurs,
// vtkWidgetEvent::SelectAction -- activate any callbacks associated
// with the balloon.
// </pre>
//
// This widget invokes the following VTK events on itself (which observers
// can listen for):
// <pre>
// vtkCommand::TimerEvent (when hovering is determined to occur)
// vtkCommand::EndInteractionEvent (after a hover has occurred and the
// mouse begins moving again).
// vtkCommand::WidgetActivateEvent (when the balloon is selected with a
// keypress).
// </pre>
// .SECTION See Also
// vtkAbstractWidget
#ifndef __vtkBalloonWidget_h
#define __vtkBalloonWidget_h
#include "vtkInteractionWidgetsModule.h" // For export macro
#include "vtkHoverWidget.h"
class vtkBalloonRepresentation;
class vtkProp;
class vtkAbstractPropPicker;
class vtkStdString;
class vtkPropMap;
class vtkImageData;
class VTKINTERACTIONWIDGETS_EXPORT vtkBalloonWidget : public vtkHoverWidget
{
public:
// Description:
// Instantiate this class.
static vtkBalloonWidget *New();
// Description:
// Standard methods for a VTK class.
vtkTypeMacro(vtkBalloonWidget,vtkHoverWidget);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// The method for activating and deactivating this widget. This method
// must be overridden because it performs special timer-related operations.
virtual void SetEnabled(int);
// Description:
// Specify an instance of vtkWidgetRepresentation used to represent this
// widget in the scene. Note that the representation is a subclass of vtkProp
// so it can be added to the renderer independent of the widget.
void SetRepresentation(vtkBalloonRepresentation *r)
{this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));}
// Description:
// Return the representation as a vtkBalloonRepresentation.
vtkBalloonRepresentation *GetBalloonRepresentation()
{return reinterpret_cast<vtkBalloonRepresentation*>(this->WidgetRep);}
// Description:
// Create the default widget representation if one is not set.
void CreateDefaultRepresentation();
// Description:
// Add and remove text and/or an image to be associated with a vtkProp. You
// may add one or both of them.
void AddBalloon(vtkProp *prop, vtkStdString *str, vtkImageData *img);
void AddBalloon(vtkProp *prop, const char *str, vtkImageData *img);
void AddBalloon(vtkProp *prop, const char *str) //for wrapping
{this->AddBalloon(prop,str,NULL);}
void RemoveBalloon(vtkProp *prop);
// Description:
// Methods to retrieve the information associated with each vtkProp (i.e.,
// the information that makes up each balloon). A NULL will be returned if
// the vtkProp does not exist, or if a string or image have not been
// associated with the specified vtkProp.
const char *GetBalloonString(vtkProp *prop);
vtkImageData *GetBalloonImage(vtkProp *prop);
// Description:
// Update the balloon string or image. If the specified prop does not exist,
// then nothing is added not changed.
void UpdateBalloonString(vtkProp *prop, const char *str);
void UpdateBalloonImage(vtkProp *prop, vtkImageData *image);
// Description:
// Return the current vtkProp that is being hovered over. Note that the
// value may be NULL (if hovering over nothing or the mouse is moving).
virtual vtkProp *GetCurrentProp()
{return this->CurrentProp;}
// Description:
// Set/Get the object used to perform pick operations. Since the
// vtkBalloonWidget operates on vtkProps, the picker must be a subclass of
// vtkAbstractPropPicker. (Note: if not specified, an instance of
// vtkPropPicker is used.)
void SetPicker(vtkAbstractPropPicker*);
vtkGetObjectMacro(Picker,vtkAbstractPropPicker);
protected:
vtkBalloonWidget();
~vtkBalloonWidget();
// This class implements the method called from its superclass.
virtual int SubclassEndHoverAction();
virtual int SubclassHoverAction();
// Classes for managing balloons
vtkPropMap *PropMap; //PIMPL'd map of (vtkProp,vtkStdString)
// Support for picking
vtkAbstractPropPicker *Picker;
// Register internal Pickers within PickingManager
virtual void RegisterPickers();
// The vtkProp that is being hovered over (which may be NULL)
vtkProp *CurrentProp;
private:
vtkBalloonWidget(const vtkBalloonWidget&); //Not implemented
void operator=(const vtkBalloonWidget&); //Not implemented
};
#endif
|