VTK
vtkQtChartKeyboardPan.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkQtChartKeyboardPan.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 /*-------------------------------------------------------------------------
16  Copyright 2008 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19 -------------------------------------------------------------------------*/
20 
23 
24 #ifndef _vtkQtChartKeyboardPan_h
25 #define _vtkQtChartKeyboardPan_h
26 
27 
28 #include "vtkQtChartExport.h"
30 
31 
35 class VTKQTCHART_EXPORT vtkQtChartKeyboardPan :
37 {
38 public:
42  vtkQtChartKeyboardPan(QObject *parent=0);
44 
46  virtual void activate();
47 
48 private:
50  vtkQtChartKeyboardPan &operator=(const vtkQtChartKeyboardPan &);
51 };
52 
53 
57 class VTKQTCHART_EXPORT vtkQtChartKeyboardPanLeft :
59 {
60 public:
64  vtkQtChartKeyboardPanLeft(QObject *parent=0);
66 
68  virtual void activate();
69 
70 private:
73 };
74 
75 
79 class VTKQTCHART_EXPORT vtkQtChartKeyboardPanDown :
81 {
82 public:
86  vtkQtChartKeyboardPanDown(QObject *parent=0);
88 
90  virtual void activate();
91 
92 private:
95 };
96 
97 
101 class VTKQTCHART_EXPORT vtkQtChartKeyboardPanUp :
103 {
104 public:
108  vtkQtChartKeyboardPanUp(QObject *parent=0);
110 
112  virtual void activate();
113 
114 private:
117 };
118 
119 #endif