Alphabetical Class Index  Class Hierarchy   File Members   Compound Members   File List  

HOpCreatePolyline.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 // $Id: 36ef1ed77fe2516fe798d474dc176e85408010b4 $
13 //
14 
15 // HOpCreatePolyline.h : interface of the HOpCreatePolyline class
16 //
17 // Draws a polyline in the view plane based on pointer input
18 // Polyline points are stored in protected member variables and ready after
19 // OnLButtonDblClk method has been called.
20 // Derived Classes should call this::OnLButtonDblClk in their overloaded implementation.
21 // Polyline points are in window space.
22 
23 
24 #ifndef _HOPCreatePOLYLINE_H
25 #define _HOPCreatePOLYLINE_H
26 
27 #ifdef H_PACK_8
28 #pragma pack(push)
29 #pragma pack(8)
30 #endif
31 
32 #include "HTools.h"
33 #include "HBaseModel.h"
34 #include "HBaseView.h"
35 #include "HBaseOperator.h"
36 #include "HEventInfo.h"
37 #include "HOpConstructPolyline.h"
38 
39 
41 
55 {
56 public:
64  HOpCreatePolyline(HBaseView* view, int DoRepeat=0, int DoCapture=1);
65  virtual ~HOpCreatePolyline();
66 
72  virtual HBaseOperator * Clone();
73 
77  virtual const char * GetName();
78 
85  virtual int OnLButtonDblClk(HEventInfo &hevent);
86 };
87 
88 #ifdef H_PACK_8
89 #pragma pack(pop)
90 #endif
91 
92 #endif
93 
94 
95 
96 
The HOpCreatePolyline class draws a polyline.
Definition: HOpCreatePolyline.h:54
virtual int OnLButtonDblClk(HEventInfo &hevent)
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
virtual HBaseOperator * Clone()
The HEventInfo class stores and manages event information.
Definition: HEventInfo.h:214
The HOpConstructPolyline class draws a polyline.
Definition: HOpConstructPolyline.h:50
virtual const char * GetName()
Interface of the HEventInfo class.