Alphabetical Class Index  Class Hierarchy   File Members   Compound Members   File List  

HOpSelectAperture.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: 46485197c82049425e8f62ca32446c189ccee02a $
13 //
14 
15 // HOpSelectAperture.h : interface of the HOpSelectAperture class, derived from HOpSelect
16 // Handles aperture selection
17 
18 #ifndef _HOPSELECTAPERTURE_H
19 #define _HOPSELECTAPERTURE_H
20 
21 #ifdef H_PACK_8
22 #pragma pack(push)
23 #pragma pack(8)
24 #endif
25 
26 #include "HTools.h"
27 #include "HBaseOperator.h"
28 
29 
31 
47 class MVO_API HOpSelectAperture : public HBaseOperator
48 {
49 public:
57  HOpSelectAperture(HBaseView* view, int DoRepeat = 0, int DoCapture = 1);
58  virtual ~HOpSelectAperture();
59 
63  virtual const char * GetName();
64 
65 
72  virtual int OnLButtonDown(HEventInfo &hevent);
73 
74  virtual HBaseOperator * Clone();
75 protected:
76 
82  virtual void HandleSelection(HEventInfo &hevent);
83 
84 };
85 
86 
87 #ifdef H_PACK_8
88 #pragma pack(pop)
89 #endif
90 
91 #endif
92 
93 
94 
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: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 int OnLButtonDown(HEventInfo &hevent)
The HOpSelectAperture class performs hit testing on a circular aperture and computes a selection list...
Definition: HOpSelectAperture.h:47