Introduction

Getting Started

Programming Guides

API Reference

Additional Resources

HOpNavCube.h
1 // Copyright (c) Tech Soft 3D
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 // HOpNavCube.h : interface of the HOpNavCube class, derived from HOpSelect
11 // Handles aperture selection
12 
13 #ifndef _HOpNavCube_H
14 #define _HOpNavCube_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 
30 class MVO_API HOpNavCube : public HBaseOperator
31 {
32 private:
33  HC_KEY m_NavCubeSegKey;
34 
35 public:
43  HOpNavCube(HBaseView* view, int DoRepeat = 0, int DoCapture = 1);
44  virtual ~HOpNavCube();
45 
49  virtual const char * GetName();
50 
51 
57  virtual int OnLButtonDown(HEventInfo &hevent);
58 
64  virtual HBaseOperator * Clone();
65 };
66 
67 
68 #ifdef H_PACK_8
69 #pragma pack(pop)
70 #endif
71 
72 #endif
73 
74 
75 
76 
virtual const char * GetName()
#define HC_KEY
The HOpNavCube class provides an interactive navigation cube for rapid viewpoint changes.
Definition: HOpNavCube.h:30
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)