Gocator API
 All Classes Files Functions Variables Typedefs Macros Modules Pages
GoExtParam.h
1 ///@cond private
2 
3 /**
4  * @file GoExtParam.h
5  * @brief Declares the GoExtParam class.
6  *
7  * @internal
8  * Copyright (C) 2015 by LMI Technologies Inc.
9  * Licensed under the MIT License.
10  * Redistributed files must retain the above copyright notice.
11  */
12 #ifndef GO_EXT_VALUE_H
13 #define GO_EXT_VALUE_H
14 
15 #include <GoSdk/GoSdkDef.h>
17 #include <GoSdk/Tools/GoSurfaceToolUtils.h>
18 #include <kApi/Data/kXml.h>
19 kBeginHeader()
20 
21 typedef struct GoExtParamIntOption
22 {
23  k32s value;
24  kText64 description;
25 } GoExtParamIntOption;
26 
27 typedef struct GoExtParamFloatOption
28 {
29  k64f value;
30  kText64 description;
31 } GoExtParamFloatOption;
32 
33 typedef kObject GoExtParam;
34 
35 GoFx(const kChar*) GoExtParam_Label(GoExtParam param);
36 GoFx(const kChar*) GoExtParam_Id(GoExtParam param);
37 GoFx(GoExtParamType) GoExtParam_Type(GoExtParam param);
38 GoFx(kBool) GoExtParam_Used(GoExtParam param);
39 GoFx(GoUnitType) GoExtParam_UnitType(GoExtParam param);
40 
41 typedef GoExtParam GoExtParamBool;
42 
43 GoFx(kBool) GoExtParamBool_Value(GoExtParamBool param);
44 GoFx(kStatus) GoExtParamBool_SetValue(GoExtParamBool param, kBool newVal);
45 
46 typedef GoExtParam GoExtParamInt;
47 
48 GoFx(k32s) GoExtParamInt_Value(GoExtParamInt param);
49 GoFx(kStatus) GoExtParamInt_SetValue(GoExtParamInt param, k32s newVal);
50 GoFx(k32s) GoExtParamInt_ValueMin(GoExtParam param);
51 GoFx(k32s) GoExtParamInt_ValueMax(GoExtParam param);
52 GoFx(kSize) GoExtParamInt_OptionCount(GoExtParamInt param);
53 GoFx(k32s) GoExtParamInt_OptionValueAt(GoExtParamInt param, kSize index);
54 GoFx(const kChar*) GoExtParamInt_OptionDescriptionAt(GoExtParamInt param, kSize index);
55 
56 typedef GoExtParam GoExtParamFloat;
57 
58 GoFx(k64f) GoExtParamFloat_Value(GoExtParamFloat param);
59 GoFx(kStatus) GoExtParamFloat_SetValue(GoExtParamFloat param, k64f newVal);
60 GoFx(k64f) GoExtParamFloat_ValueMin(GoExtParam param);
61 GoFx(k64f) GoExtParamFloat_ValueMax(GoExtParam param);
62 GoFx(kSize) GoExtParamFloat_OptionCount(GoExtParamFloat param);
63 GoFx(k64f) GoExtParamFloat_OptionValueAt(GoExtParamFloat param, kSize index);
64 GoFx(const kChar*) GoExtParamFloat_OptionDescriptionAt(GoExtParamFloat param, kSize index);
65 
66 typedef GoExtParam GoExtParamString;
67 GoFx(kString) GoExtParamString_Value(GoExtParamString param);
68 
69 typedef GoExtParam GoExtParamProfileRegion;
70 GoFx(GoProfileRegion) GoExtParamProfileRegion_Value(GoExtParamProfileRegion param);
71 
72 typedef GoExtParam GoExtParamSurfaceRegion2d;
73 GoFx(GoSurfaceRegion2d) GoExtParamSurfaceRegion2d_Value(GoExtParamSurfaceRegion2d param);
74 
75 typedef GoExtParam GoExtParamRegion3d;
76 GoFx(GoRegion3d) GoExtParamRegion3d_Value(GoExtParamRegion3d param);
77 
78 kEndHeader()
79 #include <GoSdk/Tools/GoExtParam.x.h>
80 
81 #endif
82 ///@endcond
Represents a profile region used in various profile tools.
Essential SDK declarations.
Declares shared profile tool configuration classes.