00001 // 00002 // Copyright (c) 2000 by Tech Soft 3D, LLC. 00003 // The information contained herein is confidential and proprietary to 00004 // Tech Soft 3D, LLC., and considered a trade secret as defined under 00005 // civil and criminal statutes. Tech Soft 3D shall pursue its civil 00006 // and criminal remedies in the event of unauthorized use or misappropriation 00007 // of its trade secrets. Use of this information by anyone other than 00008 // authorized employees of Tech Soft 3D, LLC. is granted only under a 00009 // written non-disclosure agreement, expressly prescribing the scope and 00010 // manner of such use. 00011 // 00012 // $Id: 1867d64f595cd449b71c43cd10cef9760aa50715 $ 00013 // 00014 00015 // HOpSelectAperture.h : interface of the HOpSelectAperture class, derived from HOpSelect 00016 // Handles aperture selection 00017 00018 #ifndef _HOPSELECTAPERTURE_H 00019 #define _HOPSELECTAPERTURE_H 00020 00021 #ifdef H_PACK_8 00022 #pragma pack(push) 00023 #pragma pack(8) 00024 #endif 00025 00026 #include "HTools.h" 00027 #include "HBaseOperator.h" 00028 00029 00031 00047 class MVO_API HOpSelectAperture : public HBaseOperator 00048 { 00049 public: 00057 HOpSelectAperture(HBaseView* view, int DoRepeat = 0, int DoCapture = 1); 00058 virtual ~HOpSelectAperture(); 00059 00063 virtual const char * GetName(); 00064 00065 00072 virtual int OnLButtonDown(HEventInfo &hevent); 00073 00074 virtual HBaseOperator * Clone(); 00075 protected: 00076 00082 virtual void HandleSelection(HEventInfo &hevent); 00083 00084 }; 00085 00086 00087 #ifdef H_PACK_8 00088 #pragma pack(pop) 00089 #endif 00090 00091 #endif 00092 00093 00094