-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from FellippeHeitor/development
Beta 6
- Loading branch information
Showing
14 changed files
with
549 additions
and
296 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1 @@ | ||
CONST __UI_Version = "Beta version 5" | ||
CONST __UI_Version = "Beta version 6" |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,14 +1,13 @@ | ||
'InForm - GUI system for QB64 - Beta version 4 | ||
'Fellippe Heitor, 2016/2017 - [email protected] - @fellippeheitor | ||
'Fellippe Heitor, 2016/2018 - [email protected] - @fellippeheitor | ||
'----------------------------------------------------------- | ||
SUB __UI_LoadForm | ||
DIM __UI_NewID AS LONG | ||
|
||
$RESIZE:ON | ||
_RESIZE OFF | ||
|
||
__UI_NewID = __UI_NewControl(__UI_Type_Form, "Form1", 300, 300, 0, 0,0) | ||
Control(__UI_NewID).Font = SetFont("segoeui.ttf?arial.ttf?cour.ttf", 12, "") | ||
Control(__UI_NewID).Font = SetFont("segoeui.ttf?arial.ttf?/Library/Fonts/Arial.ttf?InForm/resources/NotoMono-Regular.ttf?cour.ttf", 12, "") | ||
END SUB | ||
|
||
SUB __UI_AssignIDs | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -35,7 +35,7 @@ END IF | |
FormName$ = MID$(a$, 12) | ||
|
||
o$ = "'InForm - GUI system for QB64 - " + __UI_Version | ||
o$ = o$ + lf + "'Fellippe Heitor, 2016/2017 - [email protected] - @FellippeHeitor" | ||
o$ = o$ + lf + "'Fellippe Heitor, 2016/2018 - [email protected] - @FellippeHeitor" | ||
o$ = o$ + lf + "'-----------------------------------------------------------" | ||
o$ = o$ + lf + "SUB __UI_LoadForm" | ||
o$ = o$ + lf | ||
|
@@ -181,7 +181,7 @@ newTextFile$ = LEFT$(theFile$, INSTR(theFile$, ".") - 1) + "_InForm.bas" | |
OPEN newTextFile$ FOR OUTPUT AS #TextFileNum | ||
PRINT #TextFileNum, "': This program was generated by" | ||
PRINT #TextFileNum, "': InForm - GUI system for QB64 - "; __UI_Version | ||
PRINT #TextFileNum, "': Fellippe Heitor, 2016/2017 - [email protected] - @fellippeheitor" | ||
PRINT #TextFileNum, "': Fellippe Heitor, 2016/2018 - [email protected] - @fellippeheitor" | ||
PRINT #TextFileNum, "'-----------------------------------------------------------" | ||
PRINT #TextFileNum, | ||
PRINT #TextFileNum, "': Controls' IDs: ------------------------------------------------------------------"; | ||
|
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
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
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,14 @@ | ||
@echo off | ||
echo Deleting old InForm folder... | ||
del /S /Q ..\qb64\InForm\*.* > nul | ||
del /S /Q ..\qb64\UiEditor.exe > nul | ||
|
||
rd ..\qb64\InForm\resources\ > nul | ||
rd ..\qb64\InForm > nul | ||
|
||
xcopy InForm\*.* ..\qb64\InForm\*.* /S /Q | ||
|
||
..\qb64\qb64 -x "C:\Documents and Settings\Administrator\Desktop\InForm\InForm\UiEditor.bas" -o "C:\Documents and Settings\Administrator\Desktop\qb64\UiEditor.exe" | ||
..\qb64\qb64 -x "C:\Documents and Settings\Administrator\Desktop\InForm\InForm\UiEditorPreview.bas" -o "C:\Documents and Settings\Administrator\Desktop\qb64\InForm\UiEditorPreview.exe" | ||
|
||
pause |