00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkQtChartKeyboardHistory.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00015 /*------------------------------------------------------------------------- 00016 Copyright 2008 Sandia Corporation. 00017 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, 00018 the U.S. Government retains certain rights in this software. 00019 -------------------------------------------------------------------------*/ 00020 00023 00024 #ifndef _vtkQtChartKeyboardHistory_h 00025 #define _vtkQtChartKeyboardHistory_h 00026 00027 00028 #include "vtkQtChartExport.h" 00029 #include "vtkQtChartKeyboardFunction.h" 00030 00031 00036 class VTKQTCHART_EXPORT vtkQtChartKeyboardHistory : 00037 public vtkQtChartKeyboardFunction 00038 { 00039 public: 00043 vtkQtChartKeyboardHistory(QObject *parent=0); 00044 virtual ~vtkQtChartKeyboardHistory() {} 00045 00047 virtual void activate(); 00048 00049 private: 00050 vtkQtChartKeyboardHistory(const vtkQtChartKeyboardHistory &); 00051 vtkQtChartKeyboardHistory &operator=(const vtkQtChartKeyboardHistory &); 00052 }; 00053 00054 00059 class VTKQTCHART_EXPORT vtkQtChartKeyboardHistoryNext : 00060 public vtkQtChartKeyboardFunction 00061 { 00062 public: 00066 vtkQtChartKeyboardHistoryNext(QObject *parent=0); 00067 virtual ~vtkQtChartKeyboardHistoryNext() {} 00068 00070 virtual void activate(); 00071 00072 private: 00073 vtkQtChartKeyboardHistoryNext(const vtkQtChartKeyboardHistoryNext &); 00074 vtkQtChartKeyboardHistoryNext &operator=( 00075 const vtkQtChartKeyboardHistoryNext &); 00076 }; 00077 00078 #endif