Alphabetical Class Index  Class Hierarchy   File Members   Compound Members   File List  

HOpSelectAperture.h
00001 // Copyright (c) 1998-2014 by Tech Soft 3D, Inc.
00002 //
00003 // The information contained herein is confidential and proprietary to Tech Soft 3D, Inc.,
00004 // and considered a trade secret as defined under civil and criminal statutes.
00005 // Tech Soft 3D, Inc. shall pursue its civil and criminal remedies in the event of
00006 // unauthorized use or misappropriation of its trade secrets.  Use of this information
00007 // by anyone other than authorized employees of Tech Soft 3D, Inc. is granted only under
00008 // a written non-disclosure agreement, expressly prescribing the scope and manner of such use.
00009 
00010 // HOpSelectAperture.h : interface of the HOpSelectAperture class, derived from HOpSelect
00011 // Handles aperture selection
00012 
00013 #ifndef _HOPSELECTAPERTURE_H
00014 #define _HOPSELECTAPERTURE_H
00015 
00016 #ifdef H_PACK_8
00017 #pragma pack(push)
00018 #pragma pack(8)
00019 #endif
00020 
00021 #include "HTools.h"
00022 #include "HBaseOperator.h"
00023 
00024 
00026 
00042 class MVO_API HOpSelectAperture : public HBaseOperator
00043 {
00044 public:
00052     HOpSelectAperture(HBaseView* view, int DoRepeat = 0, int DoCapture = 1);
00053     virtual ~HOpSelectAperture();
00054 
00058     virtual const char * GetName();  
00059 
00060 
00067     virtual int OnLButtonDown(HEventInfo &hevent);
00068 
00069     virtual HBaseOperator * Clone(); 
00070 protected:
00071 
00077     virtual void HandleSelection(HEventInfo &hevent);
00078 
00079 };
00080 
00081 
00082 #ifdef H_PACK_8
00083 #pragma pack(pop)
00084 #endif
00085 
00086 #endif
00087 
00088 
00089