File tree Expand file tree Collapse file tree 4 files changed +45
-1
lines changed
CefSharp.Core.Runtime.RefAssembly Expand file tree Collapse file tree 4 files changed +45
-1
lines changed Original file line number Diff line number Diff line change 1
- //------------------------------------------------------------------------------
1
+ //------------------------------------------------------------------------------
2
2
// <auto-generated>
3
3
// This code was generated by a tool.
4
4
// GenAPI Version: 5.0.2.37403
@@ -40,6 +40,8 @@ public BrowserSettings(bool autoDispose) { }
40
40
public virtual CefSharp . CefState TabToLinks { get { throw null ; } set { } }
41
41
public virtual CefSharp . CefState TextAreaResize { get { throw null ; } set { } }
42
42
public virtual CefSharp . CefState WebGl { get { throw null ; } set { } }
43
+ public virtual CefSharp . CefState ChromeStatusBubble { get { throw null ; } set { } }
44
+ public virtual CefSharp . CefState ChromeZoomBubble { get { throw null ; } set { } }
43
45
public virtual int WindowlessFrameRate { get { throw null ; } set { } }
44
46
public void Dispose ( ) { }
45
47
protected virtual void Dispose ( bool A_0 ) { }
Original file line number Diff line number Diff line change @@ -300,6 +300,24 @@ namespace CefSharp
300
300
void set (CefState value) { _browserSettings->webgl = (cef_state_t )value; }
301
301
}
302
302
303
+ // / <summary>
304
+ // / Controls whether the Chrome status bubble will be used. Only supported with Chrome style.
305
+ // / </summary>
306
+ virtual property CefState ChromeStatusBubble
307
+ {
308
+ CefState get () { return (CefState)_browserSettings->chrome_status_bubble ; }
309
+ void set (CefState value) { _browserSettings->chrome_status_bubble = (cef_state_t )value; }
310
+ }
311
+
312
+ // / <summary>
313
+ // / Controls whether the Chrome zoom bubble will be shown when zooming. Only supported with Chrome style.
314
+ // / </summary>
315
+ virtual property CefState ChromeZoomBubble
316
+ {
317
+ CefState get () { return (CefState)_browserSettings->chrome_zoom_bubble ; }
318
+ void set (CefState value) { _browserSettings->chrome_zoom_bubble = (cef_state_t )value; }
319
+ }
320
+
303
321
// / <summary>
304
322
// / Background color used for the browser before a document is loaded and when no document color
305
323
// / is specified. The alpha component must be either fully opaque (0xFF) or fully transparent (0x00).
Original file line number Diff line number Diff line change @@ -178,6 +178,20 @@ public CefState WebGl
178
178
set { settings . WebGl = value ; }
179
179
}
180
180
181
+ /// <inheritdoc/>
182
+ public CefState ChromeStatusBubble
183
+ {
184
+ get { return settings . ChromeStatusBubble ; }
185
+ set { settings . ChromeStatusBubble = value ; }
186
+ }
187
+
188
+ /// <inheritdoc/>
189
+ public CefState ChromeZoomBubble
190
+ {
191
+ get { return settings . ChromeZoomBubble ; }
192
+ set { settings . ChromeZoomBubble = value ; }
193
+ }
194
+
181
195
/// <inheritdoc/>
182
196
public uint BackgroundColor
183
197
{
Original file line number Diff line number Diff line change @@ -146,6 +146,16 @@ public interface IBrowserSettings : IDisposable
146
146
/// </summary>
147
147
CefState WebGl { get ; set ; }
148
148
149
+ /// <summary>
150
+ /// Controls whether the Chrome status bubble will be used. Only supported with Chrome style.
151
+ /// </summary>
152
+ CefState ChromeStatusBubble { get ; set ; }
153
+
154
+ /// <summary>
155
+ /// Controls whether the Chrome zoom bubble will be shown when zooming. Only supported with Chrome style.
156
+ /// </summary>
157
+ CefState ChromeZoomBubble { get ; set ; }
158
+
149
159
/// <summary>
150
160
/// Opaque background color used for the browser before a document is loaded
151
161
/// and when no document color is specified. By default the background color
You can’t perform that action at this time.
0 commit comments