Skip to content

Commit c93e74f

Browse files
Add files via upload
1 parent 15fc946 commit c93e74f

7 files changed

+1371
-0
lines changed

App.xojo_code

+166
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,166 @@
1+
#tag Class
2+
Protected Class App
3+
Inherits DesktopApplication
4+
#tag Constant, Name = kEditClear, Type = String, Dynamic = False, Default = \"&Delete", Scope = Public
5+
#Tag Instance, Platform = Windows, Language = Default, Definition = \"&Delete"
6+
#Tag Instance, Platform = Linux, Language = Default, Definition = \"&Delete"
7+
#tag EndConstant
8+
9+
#tag Constant, Name = kFileQuit, Type = String, Dynamic = False, Default = \"&Quit", Scope = Public
10+
#Tag Instance, Platform = Windows, Language = Default, Definition = \"E&xit"
11+
#tag EndConstant
12+
13+
#tag Constant, Name = kFileQuitShortcut, Type = String, Dynamic = False, Default = \"", Scope = Public
14+
#Tag Instance, Platform = Mac OS, Language = Default, Definition = \"Cmd+Q"
15+
#Tag Instance, Platform = Linux, Language = Default, Definition = \"Ctrl+Q"
16+
#tag EndConstant
17+
18+
19+
#tag ViewBehavior
20+
#tag ViewProperty
21+
Name="Name"
22+
Visible=false
23+
Group="ID"
24+
InitialValue=""
25+
Type="String"
26+
EditorType=""
27+
#tag EndViewProperty
28+
#tag ViewProperty
29+
Name="Index"
30+
Visible=false
31+
Group="ID"
32+
InitialValue=""
33+
Type="Integer"
34+
EditorType=""
35+
#tag EndViewProperty
36+
#tag ViewProperty
37+
Name="Super"
38+
Visible=false
39+
Group="ID"
40+
InitialValue=""
41+
Type="String"
42+
EditorType=""
43+
#tag EndViewProperty
44+
#tag ViewProperty
45+
Name="Left"
46+
Visible=false
47+
Group="Position"
48+
InitialValue=""
49+
Type="Integer"
50+
EditorType=""
51+
#tag EndViewProperty
52+
#tag ViewProperty
53+
Name="Top"
54+
Visible=false
55+
Group="Position"
56+
InitialValue=""
57+
Type="Integer"
58+
EditorType=""
59+
#tag EndViewProperty
60+
#tag ViewProperty
61+
Name="AllowAutoQuit"
62+
Visible=false
63+
Group="Behavior"
64+
InitialValue=""
65+
Type="Boolean"
66+
EditorType=""
67+
#tag EndViewProperty
68+
#tag ViewProperty
69+
Name="AllowHiDPI"
70+
Visible=false
71+
Group="Behavior"
72+
InitialValue=""
73+
Type="Boolean"
74+
EditorType=""
75+
#tag EndViewProperty
76+
#tag ViewProperty
77+
Name="BugVersion"
78+
Visible=false
79+
Group="Behavior"
80+
InitialValue=""
81+
Type="Integer"
82+
EditorType=""
83+
#tag EndViewProperty
84+
#tag ViewProperty
85+
Name="Copyright"
86+
Visible=false
87+
Group="Behavior"
88+
InitialValue=""
89+
Type="String"
90+
EditorType="MultiLineEditor"
91+
#tag EndViewProperty
92+
#tag ViewProperty
93+
Name="Description"
94+
Visible=false
95+
Group="Behavior"
96+
InitialValue=""
97+
Type="String"
98+
EditorType="MultiLineEditor"
99+
#tag EndViewProperty
100+
#tag ViewProperty
101+
Name="LastWindowIndex"
102+
Visible=false
103+
Group="Behavior"
104+
InitialValue=""
105+
Type="Integer"
106+
EditorType=""
107+
#tag EndViewProperty
108+
#tag ViewProperty
109+
Name="MajorVersion"
110+
Visible=false
111+
Group="Behavior"
112+
InitialValue=""
113+
Type="Integer"
114+
EditorType=""
115+
#tag EndViewProperty
116+
#tag ViewProperty
117+
Name="MinorVersion"
118+
Visible=false
119+
Group="Behavior"
120+
InitialValue=""
121+
Type="Integer"
122+
EditorType=""
123+
#tag EndViewProperty
124+
#tag ViewProperty
125+
Name="NonReleaseVersion"
126+
Visible=false
127+
Group="Behavior"
128+
InitialValue=""
129+
Type="Integer"
130+
EditorType=""
131+
#tag EndViewProperty
132+
#tag ViewProperty
133+
Name="RegionCode"
134+
Visible=false
135+
Group="Behavior"
136+
InitialValue=""
137+
Type="Integer"
138+
EditorType=""
139+
#tag EndViewProperty
140+
#tag ViewProperty
141+
Name="StageCode"
142+
Visible=false
143+
Group="Behavior"
144+
InitialValue=""
145+
Type="Integer"
146+
EditorType=""
147+
#tag EndViewProperty
148+
#tag ViewProperty
149+
Name="Version"
150+
Visible=false
151+
Group="Behavior"
152+
InitialValue=""
153+
Type="string"
154+
EditorType="MultiLineEditor"
155+
#tag EndViewProperty
156+
#tag ViewProperty
157+
Name="_CurrentEventTime"
158+
Visible=false
159+
Group="Behavior"
160+
InitialValue=""
161+
Type="Integer"
162+
EditorType=""
163+
#tag EndViewProperty
164+
#tag EndViewBehavior
165+
End Class
166+
#tag EndClass

Build Automation.xojo_code

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#tag BuildAutomation
2+
Begin BuildStepList Linux
3+
Begin BuildProjectStep Build
4+
End
5+
End
6+
Begin BuildStepList Mac OS X
7+
Begin BuildProjectStep Build
8+
End
9+
Begin SignProjectStep Sign
10+
DeveloperID=
11+
End
12+
End
13+
Begin BuildStepList Windows
14+
Begin BuildProjectStep Build
15+
End
16+
End
17+
#tag EndBuildAutomation

0 commit comments

Comments
 (0)