You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-06-12 22:07:39 +02:00
Update to CEF 125.0.19
This commit is contained in:
@ -78,17 +78,21 @@
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#OnButtonPressed-ICefButton-">OnButtonPressed</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#OnThemeChanged-ICefView-">OnThemeChanged</a></strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#OnButtonStateChanged-ICefButton-">OnButtonStateChanged</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#OnButtonPressed-ICefButton-">OnButtonPressed</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#OnMenuButtonPressed-ICefMenuButton-TCefPoint-ICefMenuButtonPressedLock-">OnMenuButtonPressed</a></strong>(const menu_button: <a href="uCEFInterfaces.ICefMenuButton.html">ICefMenuButton</a>; const screen_point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>; const button_pressed_lock: <a href="uCEFInterfaces.ICefMenuButtonPressedLock.html">ICefMenuButtonPressedLock</a>); override;</code></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#OnButtonStateChanged-ICefButton-">OnButtonStateChanged</a></strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list2">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><code>procedure <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#OnMenuButtonPressed-ICefMenuButton-TCefPoint-ICefMenuButtonPressedLock-">OnMenuButtonPressed</a></strong>(const menu_button: <a href="uCEFInterfaces.ICefMenuButton.html">ICefMenuButton</a>; const screen_point: <a href="uCEFTypes.TCefPoint.html">TCefPoint</a>; const button_pressed_lock: <a href="uCEFInterfaces.ICefMenuButtonPressedLock.html">ICefMenuButtonPressedLock</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="public.gif" alt="Public" title="Public"></a></td>
|
||||
<td class="itemcode"><code>constructor <strong><a href="uCEFMenuButtonDelegate.TCustomMenuButtonDelegate.html#Create-ICefMenuButtonDelegateEvents-">Create</a></strong>(const events: <a href="uCEFInterfaces.ICefMenuButtonDelegateEvents.html">ICefMenuButtonDelegateEvents</a>); reintroduce;</code></td>
|
||||
</tr>
|
||||
@ -207,6 +211,35 @@ ICefViewDelegate</p>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnThemeChanged-ICefView-"></span><code>procedure <strong>OnThemeChanged</strong>(const view: <a href="uCEFInterfaces.ICefView.html">ICefView</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
<p class="inheritdescription">This item has no description. Showing description inherited from <a class="normal" href="uCEFViewDelegate.TCefViewDelegateOwn.html#OnThemeChanged-ICefView-">TCefViewDelegateOwn.OnThemeChanged</a>.</p><p>
|
||||
(
|
||||
|
||||
<p>Called when the theme for |view| has changed, after the new theme colors have already been applied. Views are notified via the component hierarchy in depth-first reverse order (children before parents).
|
||||
|
||||
<p>This will be called in the following cases:
|
||||
|
||||
<p></p>
|
||||
|
||||
<pre class="preformatted">
|
||||
1. When |view|, or a parent of |view|, is added to a Window.
|
||||
2. When the native/OS or Chrome theme changes for the Window that contains
|
||||
|view|. See ICefWindowDelegate.OnThemeColorsChanged documentation.
|
||||
3. When the client explicitly calls ICefWindow.ThemeChanged on the
|
||||
Window that contains |view|.</pre>
|
||||
|
||||
<p>
|
||||
|
||||
<p>Optionally use this callback to override the new per-View theme colors by calling ICefView.SetBackgroundColor or the appropriate component- specific function. See ICefWindow.SetThemeColor documentation for how to customize additional Window theme colors.
|
||||
|
||||
<p>(</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
<table class="detail wide_list">
|
||||
<tr class="list">
|
||||
<td class="visibility"><a href="legend.html"><img src="protected.gif" alt="Protected" title="Protected"></a></td>
|
||||
<td class="itemcode"><span id="OnButtonPressed-ICefButton-"></span><code>procedure <strong>OnButtonPressed</strong>(const button: <a href="uCEFInterfaces.ICefButton.html">ICefButton</a>); override;</code></td>
|
||||
</tr>
|
||||
<tr><td colspan="2">
|
||||
|
Reference in New Issue
Block a user