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: 85ac7a5b15fef46924d4654728fe9126896040cb $ 00013 // 00014 00015 // HOpSelectPolyline.h : interface of the HOpSelectPolyline class 00016 // 00017 // Draws a polyline in the view plane based on pointer input 00018 // Polyline points are stored in protected member variables and ready after 00019 // OnLButtonDblClk method has been called. 00020 // Derived Classes should call this::OnLButtonDblClk in their overloaded implementation. 00021 // Polyline points are in window space. 00022 00023 00024 #ifndef _HOPSELECTPOLYLINE_H 00025 #define _HOPSELECTPOLYLINE_H 00026 00027 #ifdef H_PACK_8 00028 #pragma pack(push) 00029 #pragma pack(8) 00030 #endif 00031 00032 #include "HTools.h" 00033 #include "HBaseOperator.h" 00034 #include "HOpConstructPolyline.h" 00035 00036 00038 00051 class MVO_API HOpSelectPolyline : public HOpConstructPolyline 00052 { 00053 public: 00061 HOpSelectPolyline(HBaseView* view, int DoRepeat=0, int DoCapture=1); 00062 virtual ~HOpSelectPolyline(); 00063 00067 virtual const char * GetName(); 00068 00069 virtual HBaseOperator * Clone(); 00078 virtual int OnLButtonDblClk(HEventInfo &hevent); 00079 }; 00080 00081 #ifdef H_PACK_8 00082 #pragma pack(pop) 00083 #endif 00084 00085 #endif 00086 00087 00088 00089