Alphabetical Class Index  Class Hierarchy   File Members   Compound Members   File List  

HOpSelectAperture.h
1 // Copyright (c) 1998-2014 by Tech Soft 3D, Inc.
2 //
3 // The information contained herein is confidential and proprietary to Tech Soft 3D, Inc.,
4 // and considered a trade secret as defined under civil and criminal statutes.
5 // Tech Soft 3D, Inc. shall pursue its civil and criminal remedies in the event of
6 // unauthorized use or misappropriation of its trade secrets. Use of this information
7 // by anyone other than authorized employees of Tech Soft 3D, Inc. is granted only under
8 // a written non-disclosure agreement, expressly prescribing the scope and manner of such use.
9 
10 // HOpSelectAperture.h : interface of the HOpSelectAperture class, derived from HOpSelect
11 // Handles aperture selection
12 
13 #ifndef _HOPSELECTAPERTURE_H
14 #define _HOPSELECTAPERTURE_H
15 
16 #ifdef H_PACK_8
17 #pragma pack(push)
18 #pragma pack(8)
19 #endif
20 
21 #include "HTools.h"
22 #include "HBaseOperator.h"
23 
24 
26 
42 class MVO_API HOpSelectAperture : public HBaseOperator
43 {
44 public:
52  HOpSelectAperture(HBaseView* view, int DoRepeat = 0, int DoCapture = 1);
53  virtual ~HOpSelectAperture();
54 
58  virtual const char * GetName();
59 
60 
67  virtual int OnLButtonDown(HEventInfo &hevent);
68 
69  virtual HBaseOperator * Clone();
70 protected:
71 
77  virtual void HandleSelection(HEventInfo &hevent);
78 
79 };
80 
81 
82 #ifdef H_PACK_8
83 #pragma pack(pop)
84 #endif
85 
86 #endif
87 
88 
89 
virtual const char * GetName()
virtual HBaseOperator * Clone()
The HBaseOperator class serves as a base for classes which handle user input and operate on the scene...
Definition: HBaseOperator.h:60
The HBaseView class defines and manages a view of model information.
Definition: HBaseView.h:332
The HEventInfo class stores and manages event information.
Definition: HEventInfo.h:207
virtual int OnLButtonDown(HEventInfo &hevent)
The HOpSelectAperture class performs hit testing on a circular aperture and computes a selection list...
Definition: HOpSelectAperture.h:42