Introduction

Getting Started

Programming Guides

API Reference

Additional Resources

HOpMarkupRectangle.h
1 // Copyright (c) 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 // HOpMarkupRectangle.h : interface of the HOpMarkupRectangle class, derived from HOpSelect
11 // Handles area selection
12 
13 #ifndef _HOPMarkupRectangle_H
14 #define _HOPMarkupRectangle_H
15 
16 #ifdef H_PACK_8
17 #pragma pack(push)
18 #pragma pack(8)
19 #endif
20 
21 #include "HTools.h"
22 #include "HOpConstructRectangle.h"
23 
24 
26 
37 {
38 public:
40  HOpMarkupRectangle(HBaseView* view, int DoRepeat=0, int DoCapture=1);
41  virtual ~HOpMarkupRectangle();
42 
46  virtual const char * GetName();
47 
48 
56  virtual int OnLButtonUp(HEventInfo &hevent);
57 
58  virtual HBaseOperator * Clone();
59 };
60 
61 
62 #ifdef H_PACK_8
63 #pragma pack(pop)
64 #endif
65 
66 #endif
67 
68 
69 
70 
The HOpMarkupRectangle class inserts a 2D rectange into a markup layer. If a markup layer is already ...
Definition: HOpMarkupRectangle.h:36
virtual HBaseOperator * Clone()
virtual int OnLButtonUp(HEventInfo &hevent)
The HBaseOperator class serves as a base for classes which handle user input and operate on the scene...
Definition: HBaseOperator.h:60
virtual const char * GetName()
The HBaseView class defines and manages a view of model information.
Definition: HBaseView.h:332
The HOpConstructRectangle class draws a rectangle.
Definition: HOpConstructRectangle.h:39
The HEventInfo class stores and manages event information.
Definition: HEventInfo.h:207