Alphabetical Class Index  Class Hierarchy   File Members   Compound Members   File List  

HOpCreateCircle.h
1 //
2 // Copyright (c) 2000 by Tech Soft 3D, LLC.
3 // The information contained herein is confidential and proprietary to
4 // Tech Soft 3D, LLC., and considered a trade secret as defined under
5 // civil and criminal statutes. Tech Soft 3D shall pursue its civil
6 // and criminal remedies in the event of unauthorized use or misappropriation
7 // of its trade secrets. Use of this information by anyone other than
8 // authorized employees of Tech Soft 3D, LLC. is granted only under a
9 // written non-disclosure agreement, expressly prescribing the scope and
10 // manner of such use.
11 //
12 
13 #ifndef _HOPCreateCIRCLE_H
14 #define _HOPCreateCIRCLE_H
15 
16 #ifdef H_PACK_8
17 #pragma pack(push)
18 #pragma pack(8)
19 #endif
20 
21 #include "HTools.h"
22 #include "HOpConstructCircle.h"
23 
25 
36 class MVO_API HOpCreateCircle : public HOpConstructCircle
37 {
38 public:
48  HOpCreateCircle(HBaseView* view, int DoRepeat=0, int DoCapture=1, bool UseCenterMarker=true);
49  virtual ~HOpCreateCircle();
50 
54  virtual const char * GetName();
55 
56 
63  virtual int OnLButtonUp(HEventInfo &hevent);
64 
70  virtual HBaseOperator * Clone();
71  };
72 
73 #ifdef H_PACK_8
74 #pragma pack(pop)
75 #endif
76 
77 #endif
78 
79 
80 
81 
virtual const char * GetName()
The HOpCreateCircle class draws a circle.
Definition: HOpCreateCircle.h:36
The HBaseOperator class serves as a base for classes which handle user input and operate on the scene...
Definition: HBaseOperator.h:65
The HBaseView class defines and manages a view of model information.
Definition: HBaseView.h:337
The HEventInfo class stores and manages event information.
Definition: HEventInfo.h:214
virtual HBaseOperator * Clone()
virtual int OnLButtonUp(HEventInfo &hevent)
The HOpConstructCircle class draws a circle.
Definition: HOpConstructCircle.h:44