-
-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added ToolBoxBrowser2 demo Added TCEFBrowserViewComponent. Added TCEFLabelButtonComponent. Added TCEFMenuButtonComponent. Added TCEFPanelComponent. Added TCEFTextfieldComponent. Added TCEFScrollViewComponent. Added TCEFWindowComponent.
- Loading branch information
1 parent
ccdb41b
commit 318318c
Showing
79 changed files
with
8,145 additions
and
86 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
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,18 @@ | ||
del /s /q *.dcu | ||
del /s /q *.exe | ||
del /s /q *.res | ||
del /s /q *.rsm | ||
del /s /q *.log | ||
del /s /q *.dsk | ||
del /s /q *.identcache | ||
del /s /q *.stat | ||
del /s /q *.local | ||
del /s /q *.~* | ||
rmdir Win32\Debug | ||
rmdir Win32\Release | ||
rmdir Win32 | ||
rmdir Win64\Debug | ||
rmdir Win64\Release | ||
rmdir Win64 | ||
rmdir __history | ||
rmdir __recovery |
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,30 @@ | ||
program ToolBoxBrowser2; | ||
|
||
uses | ||
{$IFDEF DELPHI16_UP} | ||
Vcl.Forms, | ||
WinApi.Windows, | ||
{$ELSE} | ||
Forms, | ||
Windows, | ||
{$ENDIF} | ||
uCEFApplication, | ||
uMainForm in 'uMainForm.pas' {MainForm}; | ||
|
||
{$R *.res} | ||
|
||
{$SetPEFlags IMAGE_FILE_LARGE_ADDRESS_AWARE} | ||
|
||
begin | ||
CreateGlobalCEFApp; | ||
|
||
if GlobalCEFApp.StartMainProcess then | ||
begin | ||
Application.Initialize; | ||
Application.MainFormOnTaskbar := True; | ||
Application.CreateForm(TMainForm, MainForm); | ||
Application.Run; | ||
end; | ||
|
||
DestroyGlobalCEFApp; | ||
end. |
1,004 changes: 1,004 additions & 0 deletions
1,004
demos/Delphi_VCL/ToolBoxBrowser2/ToolBoxBrowser2.dproj
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.