1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-11-23 21:34:53 +02:00

Update to CEF 3.2987.1596.gc2b4638

* New properties in TCEFApplication :  SmoothScrolling, FastUnload,
DisableSafeBrowsing.
* Bug fix in CefResponseFilter. Thanks to Zdravko Gabrovski!
* MiniBrowser now has a context menu option to visit the DOM.
This commit is contained in:
Salvador Diaz Fau
2017-03-22 15:22:11 +01:00
parent 68769fdda2
commit b5b9547d28
23 changed files with 456 additions and 301 deletions

View File

@@ -59,6 +59,7 @@ type
protected
Fpage_width : integer;
Fpage_height : Integer;
Fscale_factor : integer;
Fmargin_top : double;
Fmargin_right : double;
Fmargin_bottom : double;
@@ -74,7 +75,8 @@ type
published
property page_width : integer read Fpage_width write Fpage_width default 0;
property page_height : Integer read Fpage_height write Fpage_height default 0;
property page_height : integer read Fpage_height write Fpage_height default 0;
property scale_factor : integer read Fscale_factor write Fscale_factor default 0;
property margin_top : double read Fmargin_top write Fmargin_top;
property margin_right : double read Fmargin_right write Fmargin_right;
property margin_bottom : double read Fmargin_bottom write Fmargin_bottom;
@@ -92,6 +94,7 @@ constructor TPDFPrintOptions.Create;
begin
Fpage_width := 0;
Fpage_height := 0;
Fscale_factor := 100;
Fmargin_top := 0;
Fmargin_right := 0;
Fmargin_bottom := 0;