1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-12-13 21:45:55 +02:00

Added Views Framework support #244

Added ToolBoxBrowser2 demo
Added TCEFBrowserViewComponent.
Added TCEFLabelButtonComponent.
Added TCEFMenuButtonComponent.
Added TCEFPanelComponent.
Added TCEFTextfieldComponent.
Added TCEFScrollViewComponent.
Added TCEFWindowComponent.
This commit is contained in:
Salvador Díaz Fau
2020-05-05 18:10:33 +02:00
parent ccdb41b357
commit 318318c85c
79 changed files with 8145 additions and 86 deletions

View File

@@ -2894,7 +2894,39 @@ type
// *********************************
// ************* Views *************
// *********************************
//
// (*) Has CEF creation function
// (d) Has delegate
//
// ---------------- ----------------------
// | TCefView (d) | -------> | TCefTextfield (*d) |
// ---------------- | ----------------------
// |
// | ----------------------
// |---> | TCefScrollView (*) |
// | ----------------------
// |
// | ------------------ -------------------
// |---> | TCefPanel (*d) | -------> | TCefWindow (*d) |
// | ------------------ -------------------
// |
// | ------------------------
// |---> | TCefBrowserView (*d) |
// | ------------------------
// |
// | ------------------ ----------------------- -----------------------
// |---> | TCefButton (d) | -------> | TCefLabelButton (*) | -------> | TCefMenuButton (*d) |
// ------------------ ----------------------- -----------------------
//
//
// -------------- -----------------
// | TCefLayout | -------> | TCefBoxLayout |
// -------------- | -----------------
// |
// | ------------------
// |---> | TCefFillLayout |
// ------------------
//
// /include/capi/views/cef_display_capi.h (cef_display_t)
TCefDisplay = record
@@ -3172,7 +3204,7 @@ type
get_client_area_bounds_in_screen : function(self: PCefWindow): TCefRect; stdcall;
set_draggable_regions : procedure(self: PCefWindow; regionsCount: NativeUInt; const regions: PCefDraggableRegionArray); stdcall;
get_window_handle : function(self: PCefWindow): TCefWindowHandle; stdcall;
send_key_press : procedure(self: PCefWindow; key_code: Integer; event_flags: uint32); stdcall;
send_key_press : procedure(self: PCefWindow; key_code: Integer; event_flags: cardinal); stdcall;
send_mouse_move : procedure(self: PCefWindow; screen_x, screen_y: Integer); stdcall;
send_mouse_events : procedure(self: PCefWindow; button: TCefMouseButtonType; mouse_down, mouse_up: Integer); stdcall;
set_accelerator : procedure(self: PCefWindow; command_id, key_code, shift_pressed, ctrl_pressed, alt_pressed: Integer); stdcall;