Skip to content

Commit

Permalink
Added Views Framework support #244
Browse files Browse the repository at this point in the history
Added ToolBoxBrowser2 demo
Added TCEFBrowserViewComponent.
Added TCEFLabelButtonComponent.
Added TCEFMenuButtonComponent.
Added TCEFPanelComponent.
Added TCEFTextfieldComponent.
Added TCEFScrollViewComponent.
Added TCEFWindowComponent.
  • Loading branch information
salvadordf committed May 5, 2020
1 parent ccdb41b commit 318318c
Show file tree
Hide file tree
Showing 79 changed files with 8,145 additions and 86 deletions.
3 changes: 2 additions & 1 deletion demos/Delphi_VCL/PopupBrowser2/uChildForm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ interface
Windows, Messages, SysUtils, Variants, Classes, SyncObjs,
Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls,
{$ENDIF}
uCEFChromium, uCEFTypes, uCEFInterfaces, uCEFConstants, uCEFWindowParent, uCEFWinControl;
uCEFChromium, uCEFTypes, uCEFInterfaces, uCEFConstants, uCEFWindowParent, uCEFWinControl,
uCEFChromiumCore;

type
TChildForm = class(TForm)
Expand Down
18 changes: 18 additions & 0 deletions demos/Delphi_VCL/ToolBoxBrowser2/00-DeleteDCUs.bat
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
30 changes: 30 additions & 0 deletions demos/Delphi_VCL/ToolBoxBrowser2/ToolBoxBrowser2.dpr
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 demos/Delphi_VCL/ToolBoxBrowser2/ToolBoxBrowser2.dproj

Large diffs are not rendered by default.

Loading

0 comments on commit 318318c

Please sign in to comment.