HImUtility.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 #ifndef _HIM_UTILITY_H
11 #define _HIM_UTILITY_H
12 
13 #ifdef H_PACK_8
14 #pragma pack(push)
15 #pragma pack(8)
16 #endif
17 
18 #include "HTools.h"
19 #include "hic_types.h"
20 
28 class MVO_API HImUtility
29 {
30  private:
31 
32  HImUtility() {};
33 
34  public:
36  static void RegisterCallbacks();
37 
43  static void set_clip_rectangle (HIC_Rendition const *nr, HIC_Segment_Info const *si);
44 
49  static void suppress_3d_geometry(HIC_Rendition const *rendition, HIC_Geometry const *geo3);
50 
55  static void draw_gradiated_window_background (HIC_Rendition const *rendition, HIC_Int_Rectangle const *extent);
56 
61  static void draw_annotation_lines(HIC_Rendition const *nr, HIC_Polyline const*poly);
62 
67  static void draw_segment_in_background(HIC_Rendition const *nr, HIC_DC_Point const points[], HIC_RGBA const colors[], HIC_Plane const planes[], HIC_Parameter const params[], HIC_Integer32 param_width, HIC_Parameter_Flags param_flags);
68 
73  static void draw_dc_polyline_infront (HIC_Rendition const *rendition,int count, HIC_DC_Point const geo3[]);
74 
79  static void draw_device_independent_line_weights (HIC_Rendition const *rendition,int count, HIC_DC_Point const geo3[]);
80 
84  static void drawTextInfront (HIC_Rendition const *rendition, HIC_Text_Info const * text_info);
85 
89  static void visible_hlr_polyline (HIC_Rendition const *rendition,int count, HIC_DC_Point const geo3[]);
90 
91 };
92 
93 
94 
95 #ifdef H_PACK_8
96 #pragma pack(pop)
97 #endif
98 
99 #endif
100 
101 
102 
103 
104 
105 
106 
Definition: HImUtility.h:28