-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDrawView.xojo_code
372 lines (337 loc) · 10.7 KB
/
DrawView.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
#tag IOSView
Begin iosView DrawView
BackButtonTitle = "Draw"
Compatibility = ""
Left = 0
NavigationBarVisible= True
TabIcon = ""
TabTitle = ""
Title = "Xojo Draw"
Top = 0
Begin iOSCanvas DrawingCanvas
AccessibilityHint= ""
AccessibilityLabel= ""
AutoLayout = DrawingCanvas, 4, BottomLayoutGuide, 3, False, +1.00, 2, 1, 0,
AutoLayout = DrawingCanvas, 1, <Parent>, 1, False, +1.00, 1, 1, 0,
AutoLayout = DrawingCanvas, 2, <Parent>, 2, False, +1.00, 2, 1, 0,
AutoLayout = DrawingCanvas, 3, TopLayoutGuide, 4, False, +1.00, 1, 1, 0,
Height = 503.0
Left = 0
LockedInPosition= False
Scope = 0
Top = 65
Visible = True
Width = 320.0
End
Begin iOSToolButton ClearButton
Caption = "Clear"
Enabled = True
Height = 22
Image = "0"
Image = "0"
Left = 8
LockedInPosition= False
Scope = 2
Top = 534
Type = "1001"
Width = 41.0
End
Begin iOSToolButton ShareButton
Caption = "Untitled"
Enabled = True
Height = 22
Image = "0"
Image = "0"
Left = 290
LockedInPosition= False
Scope = 2
Top = 32
Type = "9"
Width = 22.0
End
Begin iOSToolButton SaveButton
Caption = "Save"
Enabled = True
Height = 22
Image = "0"
Image = "0"
Left = 8
LockedInPosition= False
Scope = 2
Top = 32
Type = "3"
Width = 40.0
End
Begin iOSButton RemoveMeButton
AccessibilityHint= ""
AccessibilityLabel= ""
AutoLayout = RemoveMeButton, 7, , 0, False, +1.00, 1, 1, 39,
AutoLayout = RemoveMeButton, 2, DrawingCanvas, 2, False, +1.00, 1, 1, 0,
AutoLayout = RemoveMeButton, 3, <Parent>, 3, False, +1.00, 1, 1, 73,
AutoLayout = RemoveMeButton, 4, <Parent>, 3, False, +1.00, 1, 1, 96,
Caption = "S"
Enabled = True
Height = 23.0
Left = 281
LockedInPosition= False
Scope = 2
TextColor = &c007AFF00
TextFont = ""
TextSize = 0
Top = 73
Visible = False
Width = 39.0
End
Begin iOSToolButton FlexibleSpace
Caption = "Set Color"
Enabled = True
Height = 22
Image = "0"
Image = "0"
Left = 58
LockedInPosition= False
Scope = 2
Top = 534
Type = "5"
Width = 223.0
End
Begin iOSToolButton PenSizeButton
Caption = "Pen Size"
Enabled = True
Height = 22
Image = "705015807"
Image = "705015807"
Left = 249
LockedInPosition= False
Scope = 2
Top = 534
Type = "1001"
Width = 22.0
End
End
#tag EndIOSView
#tag WindowCode
#tag Event
Sub Activate()
DrawingCanvas.Invalidate
End Sub
#tag EndEvent
#tag Event
Sub Open()
// Load image if saved
Dim loadFile As FolderItem = SpecialFolder.Documents.Child("XojoDoodle.png")
If loadFile.Exists Then
Dim pic As iOSImage = iOSImage.FromFile(loadFile)
DrawingImage = New iOSBitmap(pic.Width, pic.Height, 1.0, True)
DrawingImage.Graphics.DrawImage(pic, 0, 0)
End If
// Add a button for the about view
Dim aboutButton As iOSToolButton = iOSToolButton.NewPlain(QuestionMarkImage)
aboutButton.Tag = "AboutButton"
RightNavigationToolbar.Add(aboutButton)
End Sub
#tag EndEvent
#tag Event
Sub Resized()
// Need to adjust drawing area of size of canvas is changed
// due to device orientation change.
LayoutChanged = True
DrawingCanvas.Invalidate
End Sub
#tag EndEvent
#tag Event
Sub ToolbarPressed(button As iOSToolButton)
// Process the button taps
Select Case button
Case ClearButton
// Clear button was pressed, so erase image
DrawingImage = Nil
DrawingCanvas.Invalidate
Case ShareButton
Dim panel As New iOSSharingPanel
panel.SharePicture(DrawingImage.Image, Self, RemoveMeButton)
Case SaveButton
SaveToCameraRoll
Case PenSizeButton
Dim v As New PenSizeView
PushTo(v)
Else
Select Case button.Tag
Case "AboutButton"
Dim v As New AboutView
PushTo(v)
End Select
End Select
End Sub
#tag EndEvent
#tag Method, Flags = &h21
Private Function MainScreenScale() As Double
Declare function NSClassFromString Lib "Foundation" (aClassName As CFStringRef) As Ptr
Declare Function scale Lib "Foundation" Selector "scale" (classRef As Ptr) As CGFloat
Declare Function mainScreen Lib "Foundation" Selector "mainScreen" (classRef As Ptr) As Ptr
Return scale(mainScreen(NSClassFromString("UIScreen")))
End Function
#tag EndMethod
#tag Method, Flags = &h21
Private Sub SaveImage()
// Save the image so it can be reloaded when
// the user comes back to the app.
Dim saveFile As FolderItem = SpecialFolder.Documents.Child("XojoDraw.png")
If DrawingImage <> Nil Then
DrawingImage.Image.WriteToFile(saveFile, "public.png")
End If
End Sub
#tag EndMethod
#tag Method, Flags = &h21
Private Sub SaveToCameraRoll()
// Directly call UIKit method to save the picture directly
// to the camera roll.
Declare Sub UIImageWriteToSavedPhotosAlbum Lib "UIKit" _
(img As Ptr, target As Ptr, sel As Ptr, info As Ptr)
UIImageWriteToSavedPhotosAlbum(DrawingImage.Image.Handle, Nil, Nil, Nil)
End Sub
#tag EndMethod
#tag Note, Name = RemoveMeButton
The RemoveMe button is only used so that the sharing panel
on iPad has a parent control it can use to display itself
near the actual toolbar button that displays it.
When this feedback case is resolve, the button can be removed:
<feedback://showreport?report_id=45080>
#tag EndNote
#tag Property, Flags = &h21
Private ColorButton As iOSToolButton
#tag EndProperty
#tag Property, Flags = &h21
Private DrawingImage As iOSBitmap
#tag EndProperty
#tag Property, Flags = &h21
Private LastDragPosition As Point
#tag EndProperty
#tag Property, Flags = &h21
Private LayoutChanged As Boolean
#tag EndProperty
#tag EndWindowCode
#tag Events DrawingCanvas
#tag Event
Sub Paint(g As iOSGraphics)
Dim scale As Double = MainScreenScale
If DrawingImage Is Nil Then
// Create an image if one does not already exist
DrawingImage = New iOSBitmap(g.Width, g.Height, scale, True)
DrawingImage.Graphics.Scale(scale, scale)
DrawingImage.Graphics.FillColor = &cffffff // White
DrawingImage.Graphics.FillRect(0, 0, DrawingImage.Graphics.Width, DrawingImage.Graphics.Height)
ElseIf LayoutChanged Then
// Create image in new screen size and copy old image to it
Dim oldImage As iOSBitmap = DrawingImage
DrawingImage = New iOSBitmap(g.Width, g.Height, scale, True)
DrawingImage.Graphics.Scale(scale, scale)
DrawingImage.Graphics.FillColor = &cffffff // White
DrawingImage.Graphics.FillRect(0, 0, DrawingImage.Graphics.Width, DrawingImage.Graphics.Height)
// Copy the old image to the new image any information that does not fit is lost
DrawingImage.Graphics.DrawImage(oldImage.Image, 0, 0, oldImage.Width, oldImage.Height)
LayoutChanged = False
End If
// Draw the image to the Canvas
g.DrawImage(DrawingImage, 0, 0)
// Draw the "Color" button over the drawing
// so that it is not part of the actual drawing
// and does not get saved.
g.FillColor = App.Colors(App.CurrentColorIndex)
g.FillRect(0, g.Height - App.LineSize, g.Width, App.LineSize)
End Sub
#tag EndEvent
#tag Event
Sub PointerUp(pos As Xojo.Core.Point, eventInfo As iOSEventInfo)
// Clear the drag position so that when the user
// starts drawing again, it does not connect a line
// from where they last drew.
LastDragPosition = Nil
Me.Invalidate
// Save the image whenever they stop drawing
SaveImage
End Sub
#tag EndEvent
#tag Event
Sub PointerDrag(pos As Xojo.Core.Point, eventInfo As iOSEventInfo)
// Draw a line following the touches as they drag on the Canvas
Dim scalePos As New Xojo.Core.Point(pos.X * MainScreenScale, pos.Y * MainScreenScale)
Dim g As iOSGraphics = DrawingImage.Graphics
If LastDragPosition <> Nil Then
// Draw a line from the last position to the current position
g.FillColor = App.Colors(App.CurrentColorIndex)
g.LineColor = App.Colors(App.CurrentColorIndex)
g.LineWidth = App.LineSize
g.FillOval(LastDragPosition.X, LastDragPosition.Y, App.LineSize, App.LineSize)
g.DrawLine(LastDragPosition.X + App.LineSize / 2, _
LastDragPosition.Y + App.LineSize / 2, _
pos.X + App.LineSize / 2, _
pos.Y + App.LineSize / 2)
End If
LastDragPosition = pos
Me.Invalidate
End Sub
#tag EndEvent
#tag EndEvents
#tag ViewBehavior
#tag ViewProperty
Name="BackButtonTitle"
Group="Behavior"
Type="Text"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="Index"
Visible=true
Group="ID"
InitialValue="-2147483648"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="Left"
Visible=true
Group="Position"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag ViewProperty
Name="Name"
Visible=true
Group="ID"
Type="String"
#tag EndViewProperty
#tag ViewProperty
Name="NavigationBarVisible"
Group="Behavior"
Type="Boolean"
#tag EndViewProperty
#tag ViewProperty
Name="Super"
Visible=true
Group="ID"
Type="String"
#tag EndViewProperty
#tag ViewProperty
Name="TabIcon"
Group="Behavior"
Type="iOSImage"
#tag EndViewProperty
#tag ViewProperty
Name="TabTitle"
Group="Behavior"
Type="Text"
#tag EndViewProperty
#tag ViewProperty
Name="Title"
Group="Behavior"
Type="Text"
EditorType="MultiLineEditor"
#tag EndViewProperty
#tag ViewProperty
Name="Top"
Visible=true
Group="Position"
InitialValue="0"
Type="Integer"
#tag EndViewProperty
#tag EndViewBehavior