casa  $Rev:20696$
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
MWCEvents.h
Go to the documentation of this file.
00001 //# MWCEvents.h: various small MWCTool Event classes.
00002 //# Copyright (C) 1993,1994,1995,1996,1998,1999,2000,2002
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_MWCEVENTS_H
00029 #define TRIALDISPLAY_MWCEVENTS_H
00030 
00031 #include <casa/aips.h>
00032 #include <display/DisplayEvents/DisplayEvent.h>
00033 
00034 namespace casa { //# NAMESPACE CASA - BEGIN
00035 
00036 // <summary>
00037 // Event sent to tell MWCCrosshairTool to reset.
00038 // </summary>
00039 
00040 // <synopsis>
00041 // ResetCrosshairEvent is created and sent to MWCCrosshairTool
00042 // (via WorldCanvas::handleEvent()) to tell the crosshair to reset itself.
00043 // </synopsis>
00044 
00045 // <motivation>
00046 // This allows display library objects (e.g. MSAsRaster) to remove the
00047 // crosshair from the screen when appropriate (e.g. when it has received
00048 // a selection event from it).
00049 // </motivation>
00050 
00051 class ResetCrosshairEvent : public DisplayEvent {
00052 
00053  public:
00054   // caller sets skipRefresh=True iff it is handling refresh itself.
00055   ResetCrosshairEvent(Bool skipRefresh=False):
00056     DisplayEvent(), skipRefresh_(skipRefresh) {  }
00057   virtual const Bool skipRefresh() const { return skipRefresh_; }
00058 
00059  private:
00060   Bool skipRefresh_;  };
00061 
00062 
00063 // <summary>
00064 // Event sent to tell MWCRTRegionTool to reset.
00065 // </summary>
00066 
00067 // <synopsis>
00068 // ResetRTRegionEvent is created and sent to MWCRTRegionTool
00069 // (via WorldCanvas::handleEvent()) to tell the RTRegion to reset itself.
00070 // </synopsis>
00071 
00072 // <motivation>
00073 // This allows display library objects (e.g. MSAsRaster) to remove the
00074 // rectangle from the screen when appropriate (e.g. when it has received
00075 // a selection event from it).
00076 // </motivation>
00077 
00078 class ResetRTRegionEvent : public DisplayEvent {
00079 
00080  public:
00081   // caller sets skipRefresh=True iff it is handling refresh itself.
00082   ResetRTRegionEvent(Bool skipRefresh=False):
00083     DisplayEvent(), skipRefresh_(skipRefresh) {  }
00084   virtual const Bool skipRefresh() const { return skipRefresh_; }
00085 
00086  private:
00087   Bool skipRefresh_;  };
00088 
00089 
00090 } //# NAMESPACE CASA - END
00091 
00092 #endif
00093 
00094