casa
$Rev:20696$
|
00001 //# WCPositionEH.h: WorldCanvas position event handler 00002 //# Copyright (C) 1993,1994,1995,1996,1998,1999,2000 00003 //# Associated Universities, Inc. Washington DC, USA. 00004 //# 00005 //# This library is free software; you can redistribute it and/or modify it 00006 //# under the terms of the GNU Library General Public License as published by 00007 //# the Free Software Foundation; either version 2 of the License, or (at your 00008 //# option) any later version. 00009 //# 00010 //# This library is distributed in the hope that it will be useful, but WITHOUT 00011 //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00012 //# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00013 //# License for more details. 00014 //# 00015 //# You should have received a copy of the GNU Library General Public License 00016 //# along with this library; if not, write to the Free Software Foundation, 00017 //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA. 00018 //# 00019 //# Correspondence concerning AIPS++ should be addressed as follows: 00020 //# Internet email: aips2-request@nrao.edu. 00021 //# Postal address: AIPS++ Project Office 00022 //# National Radio Astronomy Observatory 00023 //# 520 Edgemont Road 00024 //# Charlottesville, VA 22903-2475 USA 00025 //# 00026 //# $Id$ 00027 00028 #ifndef TRIALDISPLAY_WCPOSITIONEH_H 00029 #define TRIALDISPLAY_WCPOSITIONEH_H 00030 00031 #include <casa/aips.h> 00032 #include <display/DisplayEvents/WCPositionEvent.h> 00033 00034 namespace casa { //# NAMESPACE CASA - BEGIN 00035 00036 // 00037 // <summary> 00038 // Base class for handling WorldCanvas position events. 00039 // </summary> 00040 // 00041 // 00042 // <prerequisite> 00043 // <li> <linkto class="WCPositionEvent">WCPositionEvent</linkto> 00044 // <li> Understanding of Display library event-handling methodology 00045 // </prerequisite> 00046 // 00047 // <etymology> 00048 // WCPositionEH : WorldCanvas Position Event-Handler 00049 // </etymology> 00050 // 00051 // <synopsis> 00052 // WCPositionEH is a base class. Its operator() function is called by mechanisms within 00053 // the Display Library when a keyboard key or mouse button is pressed while within the 00054 // area of the world canvas. 00055 // 00056 // Users must derive from this class and override the op () function to catch key 00057 // and button presses. Positions in world, linear, and pixel coordinates are 00058 // returned. 00059 // 00060 // This base class does have a concrete implementation, namely to report 00061 // to stdout events it receives. To effect this behaviour, create an instance 00062 // this class and register it as an event-handler on a WorldCanvas. 00063 // </synopsis> 00064 // 00065 // <motivation> 00066 // Provide the user with an object-oriented approach to event handling and 00067 // include world-coordinate position information. 00068 // </motivation> 00069 // 00070 // <example> 00071 // see the test programs in Display/test. 00072 // </example> 00073 // 00074 00075 class WCPositionEH { 00076 00077 public: 00078 00079 // Default Constructor Required 00080 WCPositionEH(); 00081 00082 // Default just prints the event to cout 00083 virtual void operator()(const WCPositionEvent & ev) = 0; 00084 00085 // Destructor 00086 virtual ~WCPositionEH(); 00087 00088 }; 00089 00090 00091 } //# NAMESPACE CASA - END 00092 00093 #endif 00094 00095