-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmodSelectedWindowUIObject.rbbas
More file actions
186 lines (119 loc) · 4.85 KB
/
modSelectedWindowUIObject.rbbas
File metadata and controls
186 lines (119 loc) · 4.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#tag Module
Protected Module modSelectedWindowUIObject
#tag Method, Flags = &h0
Function ControlTypeForSelectedWindow(UIObjectIndex as integer) As Integer
dim i as integer
i = ilObjectWindow(frmProject.chartProject.selectedFrame.tag).theUIObjects(UIObjectIndex).ControlType
return i
End Function
#tag EndMethod
#tag Method, Flags = &h0
Sub ControlTypeForSelectedWindow(UIObjectIndex as integer, Assigns theControlType as integer)
ilObjectWindow(frmProject.chartProject.selectedFrame.tag).theUIObjects(UIObjectIndex).ControlType = theControlType
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Function EnabledForSelectedWindow(UIObjectIndex as integer, thePlatform as integer) As boolean
return ilObjectWindow(frmProject.chartProject.selectedFrame.tag).theUIObjects(UIObjectIndex).Enabled(thePlatform)
End Function
#tag EndMethod
#tag Method, Flags = &h0
Sub EnabledForSelectedWindow(UIObjectIndex as integer, thePlatform as integer, Assigns theEnabled as boolean)
ilObjectWindow(frmProject.chartProject.selectedFrame.tag).theUIObjects(UIObjectIndex).Enabled(thePlatform) = theEnabled
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Function HeightForSelectedWindow(UIObjectIndex as integer, thePlatform as integer) As Integer
dim i as integer
i = ilObjectWindow(frmProject.chartProject.selectedFrame.tag).theUIObjects(UIObjectIndex).Height(thePlatform)
return i
End Function
#tag EndMethod
#tag Method, Flags = &h0
Sub HeightForSelectedWindow(UIObjectIndex as integer, thePlatform as integer, Assigns theHeight as integer)
ilObjectWindow(frmProject.chartProject.selectedFrame.tag).theUIObjects(UIObjectIndex).Height(thePlatform) = theHeight
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Function TextForSelectedWindow(UIObjectIndex as integer, thePlatform as integer) As string
return ilObjectWindow(frmProject.chartProject.selectedFrame.tag).theUIObjects(UIObjectIndex).Text(thePlatform)
End Function
#tag EndMethod
#tag Method, Flags = &h0
Sub TextForSelectedWindow(UIObjectIndex as integer, thePlatform as integer, Assigns theText as String)
ilObjectWindow(frmProject.chartProject.selectedFrame.tag).theUIObjects(UIObjectIndex).Text(thePlatform) = theText
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Function WidthForSelectedWindow(UIObjectIndex as integer, thePlatform as integer) As Integer
dim i as integer
i = ilObjectWindow(frmProject.chartProject.selectedFrame.tag).theUIObjects(UIObjectIndex).Width(thePlatform)
return i
End Function
#tag EndMethod
#tag Method, Flags = &h0
Sub WidthForSelectedWindow(UIObjectIndex as integer, thePlatform as integer, Assigns theWidth as integer)
ilObjectWindow(frmProject.chartProject.selectedFrame.tag).theUIObjects(UIObjectIndex).Width(thePlatform) = theWidth
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Function XForSelectedWindow(UIObjectIndex as integer, thePlatform as integer) As Integer
dim i as integer
i = ilObjectWindow(frmProject.chartProject.selectedFrame.tag).theUIObjects(UIObjectIndex).X(thePlatform)
return i
End Function
#tag EndMethod
#tag Method, Flags = &h0
Sub XForSelectedWindow(UIObjectIndex as integer, thePlatform as integer, Assigns theX as integer)
ilObjectWindow(frmProject.chartProject.selectedFrame.tag).theUIObjects(UIObjectIndex).X(thePlatform) = theX
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Function YForSelectedWindow(UIObjectIndex as integer, thePlatform as integer) As Integer
dim i as integer
i = ilObjectWindow(frmProject.chartProject.selectedFrame.tag).theUIObjects(UIObjectIndex).Y(thePlatform)
return i
End Function
#tag EndMethod
#tag Method, Flags = &h0
Sub YForSelectedWindow(UIObjectIndex as integer, thePlatform as integer, Assigns theY as integer)
ilObjectWindow(frmProject.chartProject.selectedFrame.tag).theUIObjects(UIObjectIndex).Y(thePlatform) = theY
End Sub
#tag EndMethod
#tag ViewBehavior
#tag ViewProperty
Name="Index"
Visible=true
Group="ID"
InitialValue="-2147483648"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Left"
Visible=true
Group="Position"
InitialValue="0"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Name"
Visible=true
Group="ID"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Super"
Visible=true
Group="ID"
InheritedFrom="Object"
#tag EndViewProperty
#tag ViewProperty
Name="Top"
Visible=true
Group="Position"
InitialValue="0"
InheritedFrom="Object"
#tag EndViewProperty
#tag EndViewBehavior
End Module
#tag EndModule