-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2137e56
Showing
7 changed files
with
235 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.xojo_uistate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#tag Class | ||
Protected Class App | ||
Inherits Application | ||
#tag Constant, Name = kEditClear, Type = String, Dynamic = False, Default = \"&Delete", Scope = Public | ||
#Tag Instance, Platform = Windows, Language = Default, Definition = \"&Delete" | ||
#Tag Instance, Platform = Linux, Language = Default, Definition = \"&Delete" | ||
#tag EndConstant | ||
|
||
#tag Constant, Name = kFileQuit, Type = String, Dynamic = False, Default = \"&Quit", Scope = Public | ||
#Tag Instance, Platform = Windows, Language = Default, Definition = \"E&xit" | ||
#tag EndConstant | ||
|
||
#tag Constant, Name = kFileQuitShortcut, Type = String, Dynamic = False, Default = \"", Scope = Public | ||
#Tag Instance, Platform = Mac OS, Language = Default, Definition = \"Cmd+Q" | ||
#Tag Instance, Platform = Linux, Language = Default, Definition = \"Ctrl+Q" | ||
#tag EndConstant | ||
|
||
|
||
End Class | ||
#tag EndClass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#tag BuildAutomation | ||
Begin BuildStepList Linux | ||
Begin BuildProjectStep Build | ||
End | ||
End | ||
Begin BuildStepList Mac OS X | ||
Begin BuildProjectStep Build | ||
End | ||
End | ||
Begin BuildStepList Windows | ||
Begin BuildProjectStep Build | ||
End | ||
End | ||
#tag EndBuildAutomation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
Type=Desktop | ||
RBProjectVersion=2019.031 | ||
MinIDEVersion=20070100 | ||
OrigIDEVersion=20190310 | ||
Class=App;App.xojo_code;&h00000000651DDFFF;&h0000000000000000;false | ||
Window=Window1;Window1.xojo_window;&h0000000047C187FF;&h0000000000000000;false | ||
MenuBar=MainMenuBar;MainMenuBar.xojo_menu;&h0000000039E527FF;&h0000000000000000;false | ||
BuildSteps=Build Automation;Build Automation.xojo_code;&h0000000019FDBFFF;&h0000000000000000;false | ||
DefaultWindow=Window1 | ||
AppMenuBar=MainMenuBar | ||
MajorVersion=1 | ||
MinorVersion=0 | ||
SubVersion=0 | ||
NonRelease=0 | ||
Release=0 | ||
InfoVersion= | ||
LongVersion= | ||
ShortVersion= | ||
WinCompanyName=MacTechnologies Consulting | ||
WinInternalName= | ||
WinProductName= | ||
WinFileDescription= | ||
AutoIncrementVersionInformation=False | ||
BuildFlags=&h4900 | ||
BuildLanguage=&h0 | ||
DebugLanguage=&h0 | ||
Region= | ||
WindowsName=EnvironmentVars_MTC Harness.exe | ||
MacCarbonMachName=EnvironmentVars_MTC Harness | ||
LinuxX86Name=EnvironmentVars_MTC Harness | ||
MacCreator= | ||
MDI=0 | ||
MDICaption= | ||
DefaultEncoding=&h0 | ||
AppIcon=EnvironmentVars_MTC Harness.xojo_resources;&h0 | ||
OSXBundleID=com.mactechnologies.environmentvarsmtcharness | ||
DebuggerCommandLine= | ||
UseGDIPlus=False | ||
UseBuildsFolder=True | ||
HiDPI=True | ||
DarkMode=True | ||
CopyRedistNextToWindowsEXE=False | ||
IsWebProject=False | ||
LinuxBuildArchitecture=1 | ||
MacBuildArchitecture=1 | ||
OptimizationLevel=0 | ||
WindowsVersions={35138b9a-5d96-4fbd-8e2d-a2440225f93a}|{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}|{1f676c76-80e1-4239-95bb-83d0f6d0da78}|{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a} | ||
WindowsRunAs=0 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
#tag Menu | ||
Begin Menu MainMenuBar | ||
Begin MenuItem FileMenu | ||
SpecialMenu = 0 | ||
Value = "&File" | ||
Index = -2147483648 | ||
Text = "&File" | ||
AutoEnabled = True | ||
AutoEnable = True | ||
Visible = True | ||
Begin QuitMenuItem FileQuit | ||
SpecialMenu = 0 | ||
Value = "#App.kFileQuit" | ||
Index = -2147483648 | ||
Text = "#App.kFileQuit" | ||
ShortcutKey = "#App.kFileQuitShortcut" | ||
Shortcut = "#App.kFileQuitShortcut" | ||
AutoEnabled = True | ||
AutoEnable = True | ||
Visible = True | ||
End | ||
End | ||
Begin MenuItem EditMenu | ||
SpecialMenu = 0 | ||
Value = "&Edit" | ||
Index = -2147483648 | ||
Text = "&Edit" | ||
AutoEnabled = True | ||
AutoEnable = True | ||
Visible = True | ||
Begin MenuItem EditUndo | ||
SpecialMenu = 0 | ||
Value = "&Undo" | ||
Index = -2147483648 | ||
Text = "&Undo" | ||
ShortcutKey = "Z" | ||
Shortcut = "Cmd+Z" | ||
MenuModifier = True | ||
AutoEnabled = True | ||
AutoEnable = True | ||
Visible = True | ||
End | ||
Begin MenuItem EditSeparator1 | ||
SpecialMenu = 0 | ||
Value = "-" | ||
Index = -2147483648 | ||
Text = "-" | ||
AutoEnabled = True | ||
AutoEnable = True | ||
Visible = True | ||
End | ||
Begin MenuItem EditCut | ||
SpecialMenu = 0 | ||
Value = "Cu&t" | ||
Index = -2147483648 | ||
Text = "Cu&t" | ||
ShortcutKey = "X" | ||
Shortcut = "Cmd+X" | ||
MenuModifier = True | ||
AutoEnabled = True | ||
AutoEnable = True | ||
Visible = True | ||
End | ||
Begin MenuItem EditCopy | ||
SpecialMenu = 0 | ||
Value = "&Copy" | ||
Index = -2147483648 | ||
Text = "&Copy" | ||
ShortcutKey = "C" | ||
Shortcut = "Cmd+C" | ||
MenuModifier = True | ||
AutoEnabled = True | ||
AutoEnable = True | ||
Visible = True | ||
End | ||
Begin MenuItem EditPaste | ||
SpecialMenu = 0 | ||
Value = "&Paste" | ||
Index = -2147483648 | ||
Text = "&Paste" | ||
ShortcutKey = "V" | ||
Shortcut = "Cmd+V" | ||
MenuModifier = True | ||
AutoEnabled = True | ||
AutoEnable = True | ||
Visible = True | ||
End | ||
Begin MenuItem EditClear | ||
SpecialMenu = 0 | ||
Value = "#App.kEditClear" | ||
Index = -2147483648 | ||
Text = "#App.kEditClear" | ||
AutoEnabled = True | ||
AutoEnable = True | ||
Visible = True | ||
End | ||
Begin MenuItem EditSeparator2 | ||
SpecialMenu = 0 | ||
Value = "-" | ||
Index = -2147483648 | ||
Text = "-" | ||
AutoEnabled = True | ||
AutoEnable = True | ||
Visible = True | ||
End | ||
Begin MenuItem EditSelectAll | ||
SpecialMenu = 0 | ||
Value = "Select &All" | ||
Index = -2147483648 | ||
Text = "Select &All" | ||
ShortcutKey = "A" | ||
Shortcut = "Cmd+A" | ||
MenuModifier = True | ||
AutoEnabled = True | ||
AutoEnable = True | ||
Visible = True | ||
End | ||
End | ||
End | ||
#tag EndMenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#tag Window | ||
Begin Window Window1 | ||
Backdrop = 0 | ||
BackgroundColor = &cFFFFFF00 | ||
Composite = False | ||
DefaultLocation = "0" | ||
FullScreen = False | ||
HasBackgroundColor= False | ||
HasCloseButton = True | ||
HasFullScreenButton= False | ||
HasMaximizeButton= True | ||
HasMinimizeButton= True | ||
Height = 400 | ||
ImplicitInstance= True | ||
MacProcID = 0 | ||
MaximumHeight = 32000 | ||
MaximumWidth = 32000 | ||
MenuBar = 971319295 | ||
MenuBarVisible = True | ||
MinimumHeight = 64 | ||
MinimumWidth = 64 | ||
Resizeable = True | ||
Title = "Untitled" | ||
Type = "0" | ||
Visible = True | ||
Width = 600 | ||
End | ||
#tag EndWindow | ||
|
||
#tag WindowCode | ||
#tag EndWindowCode | ||
|