Alphabetical Class Index  Class Hierarchy   File Members   Compound Members   File List  

HOpSelectArea.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: 131a27fcd968fd9584461b96ebca3f3aeea159f6 $
13 //
14 
15 // HOpSelectArea.h : interface of the HOpSelectArea class, derived from HOpSelect
16 // Handles area selection
17 
18 #ifndef _HOPSELECTAREA_H
19 #define _HOPSELECTAREA_H
20 
21 #ifdef H_PACK_8
22 #pragma pack(push)
23 #pragma pack(8)
24 #endif
25 
26 #include "HTools.h"
27 #include "HOpConstructRectangle.h"
28 
29 
31 
43 class MVO_API HOpSelectArea : public HOpConstructRectangle
44 {
45 public:
53  HOpSelectArea(HBaseView* view, int DoRepeat=0, int DoCapture=1);
54  virtual ~HOpSelectArea();
55 
59  virtual const char * GetName();
60 
68  virtual int OnLButtonDown(HEventInfo &hevent);
69 
77  virtual int OnLButtonUp(HEventInfo &hevent);
78 
84  virtual HBaseOperator * Clone();
85 };
86 
87 
88 #ifdef H_PACK_8
89 #pragma pack(pop)
90 #endif
91 
92 #endif
93 
94 
95 
96 
virtual HBaseOperator * Clone()
virtual int OnLButtonUp(HEventInfo &hevent)
virtual int OnLButtonDown(HEventInfo &hevent)
The HBaseOperator class serves as a base for classes which handle user input and operate on the scene...
Definition: HBaseOperator.h:65
virtual const char * GetName()
The HBaseView class defines and manages a view of model information.
Definition: HBaseView.h:337
The HOpConstructRectangle class draws a rectangle.
Definition: HOpConstructRectangle.h:44
The HOpSelectArea class computes a selection list for objects inside a rectangular area...
Definition: HOpSelectArea.h:43
The HEventInfo class stores and manages event information.
Definition: HEventInfo.h:214