-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMovableControl.xojo_code
200 lines (190 loc) · 4.62 KB
/
MovableControl.xojo_code
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#tag Class
Protected Class MovableControl
#tag Method, Flags = &h21
Private Sub Constructor()
End Sub
#tag EndMethod
#tag Method, Flags = &h0
Sub Operator_Convert(c as object)
mControl = c
End Sub
#tag EndMethod
#tag ComputedProperty, Flags = &h0
#tag Getter
Get
Select Case mControl
Case IsA RectControl
Return RectControl(mControl).Height
Case IsA DesktopUIControl
Return DesktopUIControl(mControl).Height
Case IsA ContainerControl
Return ContainerControl(mControl).Height
Case IsA DesktopContainer
Return DesktopContainer(mControl).Height
End Select
End Get
#tag EndGetter
#tag Setter
Set
Select Case mControl
Case IsA RectControl
RectControl(mControl).Height = value
Case IsA DesktopUIControl
DesktopUIControl(mControl).Height = value
Case IsA ContainerControl
ContainerControl(mControl).Height = value
Case IsA DesktopContainer
DesktopContainer(mControl).Height = value
End Select
End Set
#tag EndSetter
Height As Integer
#tag EndComputedProperty
#tag ComputedProperty, Flags = &h0
#tag Getter
Get
Select Case mControl
Case IsA RectControl
Return RectControl(mControl).Left
Case IsA DesktopUIControl
Return DesktopUIControl(mControl).Left
Case IsA ContainerControl
Return ContainerControl(mControl).Left
Case IsA DesktopContainer
Return DesktopContainer(mControl).Left
End Select
End Get
#tag EndGetter
#tag Setter
Set
Select Case mControl
Case IsA RectControl
RectControl(mControl).Left = value
Case IsA DesktopUIControl
DesktopUIControl(mControl).Left = value
Case IsA ContainerControl
ContainerControl(mControl).Left = value
Case IsA DesktopContainer
DesktopContainer(mControl).Left = value
End Select
End Set
#tag EndSetter
Left As Integer
#tag EndComputedProperty
#tag Property, Flags = &h21
Private mControl As Object
#tag EndProperty
#tag ComputedProperty, Flags = &h0
#tag Getter
Get
Select Case mControl
Case IsA RectControl
Return RectControl(mControl).Top
Case IsA DesktopUIControl
Return DesktopUIControl(mControl).Top
Case IsA ContainerControl
Return ContainerControl(mControl).Top
Case IsA DesktopContainer
Return DesktopContainer(mControl).Top
End Select
End Get
#tag EndGetter
#tag Setter
Set
Select Case mControl
Case IsA RectControl
RectControl(mControl).Top = value
Case IsA DesktopUIControl
DesktopUIControl(mControl).Top = value
Case IsA ContainerControl
ContainerControl(mControl).Top = value
Case IsA DesktopContainer
DesktopContainer(mControl).Top = value
End Select
End Set
#tag EndSetter
Top As Integer
#tag EndComputedProperty
#tag ComputedProperty, Flags = &h0
#tag Getter
Get
Select Case mControl
Case IsA RectControl
Return RectControl(mControl).Width
Case IsA DesktopUIControl
Return DesktopUIControl(mControl).Width
Case IsA ContainerControl
Return ContainerControl(mControl).Width
Case IsA DesktopContainer
Return DesktopContainer(mControl).Width
End Select
End Get
#tag EndGetter
#tag Setter
Set
Select Case mControl
Case IsA RectControl
RectControl(mControl).Width = value
Case IsA DesktopUIControl
DesktopUIControl(mControl).Width = value
Case IsA ContainerControl
ContainerControl(mControl).Width = value
Case IsA DesktopContainer
DesktopContainer(mControl).Width = value
End Select
End Set
#tag EndSetter
Width As Integer
#tag EndComputedProperty
#tag ViewBehavior
#tag ViewProperty
Name="Name"
Visible=true
Group="ID"
InitialValue=""
Type="String"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Index"
Visible=true
Group="ID"
InitialValue="-2147483648"
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Super"
Visible=true
Group="ID"
InitialValue=""
Type="String"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Left"
Visible=true
Group="Position"
InitialValue="0"
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Top"
Visible=true
Group="Position"
InitialValue="0"
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Width"
Visible=false
Group="Behavior"
InitialValue=""
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag EndViewBehavior
End Class
#tag EndClass