VTK
vtkBlockItem.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkBlockItem.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 
27 #ifndef vtkBlockItem_h
28 #define vtkBlockItem_h
29 
30 #include "vtkRenderingContext2DModule.h" // For export macro
31 #include "vtkContextItem.h"
32 #include "vtkStdString.h" // For vtkStdString ivars
33 
34 class vtkContext2D;
35 
37 {
38 public:
39  vtkTypeMacro(vtkBlockItem, vtkContextItem);
40  virtual void PrintSelf(ostream &os, vtkIndent indent);
41 
42  static vtkBlockItem *New();
43 
45  virtual bool Paint(vtkContext2D *painter);
46 
47 //BTX
49  virtual bool Hit(const vtkContextMouseEvent &mouse);
50 
52  virtual bool MouseEnterEvent(const vtkContextMouseEvent &mouse);
53 
55  virtual bool MouseMoveEvent(const vtkContextMouseEvent &mouse);
56 
58  virtual bool MouseLeaveEvent(const vtkContextMouseEvent &mouse);
59 
61  virtual bool MouseButtonPressEvent(const vtkContextMouseEvent &mouse);
62 
64 
65  virtual bool MouseButtonReleaseEvent(const vtkContextMouseEvent &mouse);
66 //ETX
68 
70  virtual void SetLabel(const vtkStdString &label);
71 
73  virtual vtkStdString GetLabel();
74 
76 
79  vtkSetVector4Macro(Dimensions, float);
81 
83 
86  vtkGetVector4Macro(Dimensions, float);
88 
89 //BTX
90  void SetScalarFunctor(double (*scalarFunction)(double, double));
91 //ETX
92 
93 //BTX
94 protected:
95  vtkBlockItem();
96  ~vtkBlockItem();
97 
98  float Dimensions[4];
99 
101 
102  bool MouseOver;
103 
104  // Some function pointers to optionally do funky things...
105  double (*scalarFunction)(double, double);
106 
107 private:
108  vtkBlockItem(const vtkBlockItem &); // Not implemented.
109  void operator=(const vtkBlockItem &); // Not implemented.
110 //ETX
111 };
112 
113 #endif //vtkBlockItem_h
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:46
base class for items that are part of a vtkContextScene.
virtual bool MouseButtonPressEvent(const vtkContextMouseEvent &mouse)
virtual bool Paint(vtkContext2D *painter)
a vtkContextItem that draws a block (optional label).
Definition: vtkBlockItem.h:36
Class for drawing 2D primitives to a graphical context.
Definition: vtkContext2D.h:56
vtkStdString Label
Definition: vtkBlockItem.h:100
#define VTKRENDERINGCONTEXT2D_EXPORT
data structure to represent mouse events.
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual bool MouseButtonReleaseEvent(const vtkContextMouseEvent &mouse)
virtual bool MouseEnterEvent(const vtkContextMouseEvent &mouse)
virtual bool MouseMoveEvent(const vtkContextMouseEvent &mouse)
virtual bool Hit(const vtkContextMouseEvent &mouse)
virtual void PrintSelf(ostream &os, vtkIndent indent)
static vtkObject * New()
virtual bool MouseLeaveEvent(const vtkContextMouseEvent &mouse)