namespace Xilium.CefGlue { using System; using System.Collections.Generic; using System.Diagnostics; using System.Runtime.InteropServices; using Xilium.CefGlue.Interop; /// /// Class used to represent the browser process aspects of a browser window. The /// methods of this class can only be called in the browser process. They may be /// called on any thread in that process unless otherwise indicated in the /// comments. /// public sealed unsafe partial class CefBrowserHost { /// /// Create a new browser window using the window parameters specified by /// |windowInfo|. All values will be copied internally and the actual window /// will be created on the UI thread. If |request_context| is empty the /// global request context will be used. This method can be called on any /// browser process thread and will not block. The optional |extra_info| /// parameter provides an opportunity to specify extra information specific /// to the created browser that will be passed to /// CefRenderProcessHandler::OnBrowserCreated() in the render process. /// public static void CreateBrowser(CefWindowInfo windowInfo, CefClient client, CefBrowserSettings settings, string url, CefDictionaryValue extraInfo = null, CefRequestContext requestContext = null) { if (windowInfo == null) throw new ArgumentNullException("windowInfo"); if (client == null) throw new ArgumentNullException("client"); if (settings == null) throw new ArgumentNullException("settings"); // TODO: [ApiUsage] if windowInfo.WindowRenderingDisabled && client doesn't provide RenderHandler implementation -> throw exception var n_windowInfo = windowInfo.GetNativePointer(); var n_client = client.ToNative(); var n_settings = settings.ToNative(); var n_extraInfo = extraInfo != null ? extraInfo.ToNative() : null; var n_requestContext = requestContext != null ? requestContext.ToNative() : null; fixed (char* url_ptr = url) { cef_string_t n_url = new cef_string_t(url_ptr, url != null ? url.Length : 0); var n_success = cef_browser_host_t.create_browser(n_windowInfo, n_client, &n_url, n_settings, n_extraInfo, n_requestContext); if (n_success != 1) throw ExceptionBuilder.FailedToCreateBrowser(n_success); } } /// /// Create a new browser window using the window parameters specified by /// |windowInfo|. If |request_context| is empty the global request context /// will be used. This method can only be called on the browser process UI /// thread. The optional |extra_info| parameter provides an opportunity to /// specify extra information specific to the created browser that will be /// passed to CefRenderProcessHandler::OnBrowserCreated() in the render /// process. /// public static CefBrowser CreateBrowserSync(CefWindowInfo windowInfo, CefClient client, CefBrowserSettings settings, string url, CefDictionaryValue extraInfo = null, CefRequestContext requestContext = null) { if (windowInfo == null) throw new ArgumentNullException("windowInfo"); if (client == null) throw new ArgumentNullException("client"); if (settings == null) throw new ArgumentNullException("settings"); // TODO: [ApiUsage] if windowInfo.WindowRenderingDisabled && client doesn't provide RenderHandler implementation -> throw exception var n_windowInfo = windowInfo.GetNativePointer(); var n_client = client.ToNative(); var n_settings = settings.ToNative(); var n_extraInfo = extraInfo != null ? extraInfo.ToNative() : null; var n_requestContext = requestContext != null ? requestContext.ToNative() : null; fixed (char* url_ptr = url) { cef_string_t n_url = new cef_string_t(url_ptr, url != null ? url.Length : 0); var n_browser = cef_browser_host_t.create_browser_sync(n_windowInfo, n_client, &n_url, n_settings, n_extraInfo, n_requestContext); return CefBrowser.FromNative(n_browser); } } /// /// Returns the hosted browser object. /// public CefBrowser GetBrowser() { return CefBrowser.FromNative(cef_browser_host_t.get_browser(_self)); } /// /// Request that the browser close. The JavaScript 'onbeforeunload' event will /// be fired. If |force_close| is false the event handler, if any, will be /// allowed to prompt the user and the user can optionally cancel the close. /// If |force_close| is true the prompt will not be displayed and the close /// will proceed. Results in a call to CefLifeSpanHandler::DoClose() if the /// event handler allows the close or if |force_close| is true. See /// CefLifeSpanHandler::DoClose() documentation for additional usage /// information. /// public void CloseBrowser(bool forceClose = false) { cef_browser_host_t.close_browser(_self, forceClose ? 1 : 0); } /// /// Helper for closing a browser. Call this method from the top-level window /// close handler. Internally this calls CloseBrowser(false) if the close has /// not yet been initiated. This method returns false while the close is /// pending and true after the close has completed. See CloseBrowser() and /// CefLifeSpanHandler::DoClose() documentation for additional usage /// information. This method must be called on the browser process UI thread. /// public bool TryCloseBrowser() { return cef_browser_host_t.try_close_browser(_self) != 0; } /// /// Set whether the browser is focused. /// public void SetFocus(bool focus) { cef_browser_host_t.set_focus(_self, focus ? 1 : 0); } /// /// Retrieve the window handle for this browser. If this browser is wrapped in /// a CefBrowserView this method should be called on the browser process UI /// thread and it will return the handle for the top-level native window. /// public IntPtr GetWindowHandle() { return cef_browser_host_t.get_window_handle(_self); } /// /// Retrieve the window handle of the browser that opened this browser. Will /// return NULL for non-popup windows or if this browser is wrapped in a /// CefBrowserView. This method can be used in combination with custom handling /// of modal windows. /// public IntPtr GetOpenerWindowHandle() { return cef_browser_host_t.get_opener_window_handle(_self); } /// /// Returns true if this browser is wrapped in a CefBrowserView. /// public bool HasView { get { return cef_browser_host_t.has_view(_self) != 0; } } /// /// Returns the client for this browser. /// public CefClient GetClient() { return CefClient.FromNative( cef_browser_host_t.get_client(_self) ); } /// /// Returns the request context for this browser. /// public CefRequestContext GetRequestContext() { return CefRequestContext.FromNative( cef_browser_host_t.get_request_context(_self) ); } /// /// Get the current zoom level. The default zoom level is 0.0. This method can /// only be called on the UI thread. /// public double GetZoomLevel() { return cef_browser_host_t.get_zoom_level(_self); } /// /// Change the zoom level to the specified value. Specify 0.0 to reset the /// zoom level. If called on the UI thread the change will be applied /// immediately. Otherwise, the change will be applied asynchronously on the /// UI thread. /// public void SetZoomLevel(double value) { cef_browser_host_t.set_zoom_level(_self, value); } /// /// Call to run a file chooser dialog. Only a single file chooser dialog may be /// pending at any given time. |mode| represents the type of dialog to display. /// |title| to the title to be used for the dialog and may be empty to show the /// default title ("Open" or "Save" depending on the mode). |default_file_path| /// is the path with optional directory and/or file name component that will be /// initially selected in the dialog. |accept_filters| are used to restrict the /// selectable file types and may any combination of (a) valid lower-cased MIME /// types (e.g. "text/*" or "image/*"), (b) individual file extensions (e.g. /// ".txt" or ".png"), or (c) combined description and file extension delimited /// using "|" and ";" (e.g. "Image Types|.png;.gif;.jpg"). /// |selected_accept_filter| is the 0-based index of the filter that will be /// selected by default. |callback| will be executed after the dialog is /// dismissed or immediately if another dialog is already pending. The dialog /// will be initiated asynchronously on the UI thread. /// public void RunFileDialog(CefFileDialogMode mode, string title, string defaultFilePath, string[] acceptFilters, int selectedAcceptFilter, CefRunFileDialogCallback callback) { if (callback == null) throw new ArgumentNullException("callback"); fixed (char* title_ptr = title) fixed (char* defaultFilePath_ptr = defaultFilePath) { var n_title = new cef_string_t(title_ptr, title != null ? title.Length : 0); var n_defaultFilePath = new cef_string_t(defaultFilePath_ptr, defaultFilePath != null ? defaultFilePath.Length : 0); var n_acceptFilters = cef_string_list.From(acceptFilters); cef_browser_host_t.run_file_dialog(_self, mode, &n_title, &n_defaultFilePath, n_acceptFilters, selectedAcceptFilter, callback.ToNative()); libcef.string_list_free(n_acceptFilters); } } /// /// Download the file at |url| using CefDownloadHandler. /// public void StartDownload(string url) { if (string.IsNullOrEmpty(url)) throw new ArgumentNullException("url"); fixed (char* url_ptr = url) { var n_url = new cef_string_t(url_ptr, url.Length); cef_browser_host_t.start_download(_self, &n_url); } } /// /// Download |image_url| and execute |callback| on completion with the images /// received from the renderer. If |is_favicon| is true then cookies are not /// sent and not accepted during download. Images with density independent /// pixel (DIP) sizes larger than |max_image_size| are filtered out from the /// image results. Versions of the image at different scale factors may be /// downloaded up to the maximum scale factor supported by the system. If there /// are no image results <= |max_image_size| then the smallest image is resized /// to |max_image_size| and is the only result. A |max_image_size| of 0 means /// unlimited. If |bypass_cache| is true then |image_url| is requested from the /// server even if it is present in the browser cache. /// public void DownloadImage(string imageUrl, bool isFavIcon, uint maxImageSize, bool bypassCache, CefDownloadImageCallback callback) { if (string.IsNullOrEmpty(imageUrl)) throw new ArgumentNullException("imageUrl"); fixed (char* imageUrl_ptr = imageUrl) { var n_imageUrl = new cef_string_t(imageUrl_ptr, imageUrl.Length); var n_callback = callback.ToNative(); cef_browser_host_t.download_image(_self, &n_imageUrl, isFavIcon ? 1 : 0, maxImageSize, bypassCache ? 1 : 0, n_callback); } } /// /// Print the current browser contents. /// public void Print() { cef_browser_host_t.print(_self); } /// /// Print the current browser contents to the PDF file specified by |path| and /// execute |callback| on completion. The caller is responsible for deleting /// |path| when done. For PDF printing to work on Linux you must implement the /// CefPrintHandler::GetPdfPaperSize method. /// public void PrintToPdf(string path, CefPdfPrintSettings settings, CefPdfPrintCallback callback) { fixed (char* path_ptr = path) { var n_path = new cef_string_t(path_ptr, path.Length); var n_settings = settings.ToNative(); cef_browser_host_t.print_to_pdf(_self, &n_path, n_settings, callback.ToNative() ); cef_pdf_print_settings_t.Clear(n_settings); cef_pdf_print_settings_t.Free(n_settings); } } /// /// Search for |searchText|. |identifier| must be a unique ID and these IDs /// must strictly increase so that newer requests always have greater IDs than /// older requests. If |identifier| is zero or less than the previous ID value /// then it will be automatically assigned a new valid ID. |forward| indicates /// whether to search forward or backward within the page. |matchCase| /// indicates whether the search should be case-sensitive. |findNext| indicates /// whether this is the first request or a follow-up. The CefFindHandler /// instance, if any, returned via CefClient::GetFindHandler will be called to /// report find results. /// public void Find(int identifier, string searchText, bool forward, bool matchCase, bool findNext) { fixed (char* searchText_ptr = searchText) { var n_searchText = new cef_string_t(searchText_ptr, searchText.Length); cef_browser_host_t.find(_self, identifier, &n_searchText, forward ? 1 : 0, matchCase ? 1 : 0, findNext ? 1 : 0); } } /// /// Cancel all searches that are currently going on. /// public void StopFinding(bool clearSelection) { cef_browser_host_t.stop_finding(_self, clearSelection ? 1 : 0); } /// /// Open developer tools (DevTools) in its own browser. The DevTools browser /// will remain associated with this browser. If the DevTools browser is /// already open then it will be focused, in which case the |windowInfo|, /// |client| and |settings| parameters will be ignored. If |inspect_element_at| /// is non-empty then the element at the specified (x,y) location will be /// inspected. The |windowInfo| parameter will be ignored if this browser is /// wrapped in a CefBrowserView. /// public void ShowDevTools(CefWindowInfo windowInfo, CefClient client, CefBrowserSettings browserSettings, CefPoint inspectElementAt) { var n_inspectElementAt = new cef_point_t(inspectElementAt.X, inspectElementAt.Y); cef_browser_host_t.show_dev_tools(_self, windowInfo.ToNative(), client.ToNative(), browserSettings.ToNative(), &n_inspectElementAt); } /// /// Explicitly close the associated DevTools browser, if any. /// public void CloseDevTools() { cef_browser_host_t.close_dev_tools(_self); } /// /// Returns true if this browser currently has an associated DevTools browser. /// Must be called on the browser process UI thread. /// public bool HasDevTools { get { return cef_browser_host_t.has_dev_tools(_self) != 0; } } /// /// Send a method call message over the DevTools protocol. |message| must be a /// UTF8-encoded JSON dictionary that contains "id" (int), "method" (string) /// and "params" (dictionary, optional) values. See the DevTools protocol /// documentation at https://chromedevtools.github.io/devtools-protocol/ for /// details of supported methods and the expected "params" dictionary contents. /// |message| will be copied if necessary. This method will return true if /// called on the UI thread and the message was successfully submitted for /// validation, otherwise false. Validation will be applied asynchronously and /// any messages that fail due to formatting errors or missing parameters may /// be discarded without notification. Prefer ExecuteDevToolsMethod if a more /// structured approach to message formatting is desired. /// Every valid method call will result in an asynchronous method result or /// error message that references the sent message "id". Event messages are /// received while notifications are enabled (for example, between method calls /// for "Page.enable" and "Page.disable"). All received messages will be /// delivered to the observer(s) registered with AddDevToolsMessageObserver. /// See CefDevToolsMessageObserver::OnDevToolsMessage documentation for details /// of received message contents. /// Usage of the SendDevToolsMessage, ExecuteDevToolsMethod and /// AddDevToolsMessageObserver methods does not require an active DevTools /// front-end or remote-debugging session. Other active DevTools sessions will /// continue to function independently. However, any modification of global /// browser state by one session may not be reflected in the UI of other /// sessions. /// Communication with the DevTools front-end (when displayed) can be logged /// for development purposes by passing the /// `--devtools-protocol-log-file=<path>` command-line flag. /// public bool SendDevToolsMessage(IntPtr message, int messageSize) { return cef_browser_host_t.send_dev_tools_message( _self, (void*)message, checked((UIntPtr)messageSize)) != 0; } /// /// Execute a method call over the DevTools protocol. This is a more structured /// version of SendDevToolsMessage. |message_id| is an incremental number that /// uniquely identifies the message (pass 0 to have the next number assigned /// automatically based on previous values). |method| is the method name. /// |params| are the method parameters, which may be empty. See the DevTools /// protocol documentation (linked above) for details of supported methods and /// the expected |params| dictionary contents. This method will return the /// assigned message ID if called on the UI thread and the message was /// successfully submitted for validation, otherwise 0. See the /// SendDevToolsMessage documentation for additional usage information. /// public int ExecuteDevToolsMethod(int messageId, string method, CefDictionaryValue parameters) { fixed (char* method_str = method) { var n_method = new cef_string_t(method_str, method != null ? method.Length : 0); return cef_browser_host_t.execute_dev_tools_method( _self, messageId, &n_method, parameters.ToNative()); } } /// /// Add an observer for DevTools protocol messages (method results and events). /// The observer will remain registered until the returned Registration object /// is destroyed. See the SendDevToolsMessage documentation for additional /// usage information. /// public CefRegistration AddDevToolsMessageObserver(CefDevToolsMessageObserver observer) { if (observer == null) throw new ArgumentNullException(nameof(observer)); var n_registration = cef_browser_host_t.add_dev_tools_message_observer(_self, observer.ToNative()); return CefRegistration.FromNativeOrNull(n_registration); } /// /// Retrieve a snapshot of current navigation entries as values sent to the /// specified visitor. If |current_only| is true only the current navigation /// entry will be sent, otherwise all navigation entries will be sent. /// public void GetNavigationEntries(CefNavigationEntryVisitor visitor, bool currentOnly) { cef_browser_host_t.get_navigation_entries(_self, visitor.ToNative(), currentOnly ? 1 : 0); } /// /// If a misspelled word is currently selected in an editable node calling /// this method will replace it with the specified |word|. /// public void ReplaceMisspelling(string word) { fixed (char* word_str = word) { var n_word = new cef_string_t(word_str, word != null ? word.Length : 0); cef_browser_host_t.replace_misspelling(_self, &n_word); } } /// /// Add the specified |word| to the spelling dictionary. /// public void AddWordToDictionary(string word) { fixed (char* word_str = word) { var n_word = new cef_string_t(word_str, word != null ? word.Length : 0); cef_browser_host_t.add_word_to_dictionary(_self, &n_word); } } /// /// Returns true if window rendering is disabled. /// public bool IsWindowRenderingDisabled { get { return cef_browser_host_t.is_window_rendering_disabled(_self) != 0; } } /// /// Notify the browser that the widget has been resized. The browser will first /// call CefRenderHandler::GetViewRect to get the new size and then call /// CefRenderHandler::OnPaint asynchronously with the updated regions. This /// method is only used when window rendering is disabled. /// public void WasResized() { cef_browser_host_t.was_resized(_self); } /// /// Notify the browser that it has been hidden or shown. Layouting and /// CefRenderHandler::OnPaint notification will stop when the browser is /// hidden. This method is only used when window rendering is disabled. /// public void WasHidden(bool hidden) { cef_browser_host_t.was_hidden(_self, hidden ? 1 : 0); } /// /// Send a notification to the browser that the screen info has changed. The /// browser will then call CefRenderHandler::GetScreenInfo to update the /// screen information with the new values. This simulates moving the webview /// window from one display to another, or changing the properties of the /// current display. This method is only used when window rendering is /// disabled. /// public void NotifyScreenInfoChanged() { cef_browser_host_t.notify_screen_info_changed(_self); } /// /// Invalidate the view. The browser will call CefRenderHandler::OnPaint /// asynchronously. This method is only used when window rendering is /// disabled. /// public void Invalidate(CefPaintElementType type) { cef_browser_host_t.invalidate(_self, type); } /// /// Issue a BeginFrame request to Chromium. Only valid when /// CefWindowInfo::external_begin_frame_enabled is set to true. /// public void SendExternalBeginFrame() { cef_browser_host_t.send_external_begin_frame(_self); } /// /// Send a key event to the browser. /// public void SendKeyEvent(CefKeyEvent keyEvent) { if (keyEvent == null) throw new ArgumentNullException("keyEvent"); var n_event = new cef_key_event_t(); keyEvent.ToNative(&n_event); cef_browser_host_t.send_key_event(_self, &n_event); } /// /// Send a mouse click event to the browser. The |x| and |y| coordinates are /// relative to the upper-left corner of the view. /// public void SendMouseClickEvent(CefMouseEvent @event, CefMouseButtonType type, bool mouseUp, int clickCount) { var n_event = @event.ToNative(); cef_browser_host_t.send_mouse_click_event(_self, &n_event, type, mouseUp ? 1 : 0, clickCount); } /// /// Send a mouse move event to the browser. The |x| and |y| coordinates are /// relative to the upper-left corner of the view. /// public void SendMouseMoveEvent(CefMouseEvent @event, bool mouseLeave) { var n_event = @event.ToNative(); cef_browser_host_t.send_mouse_move_event(_self, &n_event, mouseLeave ? 1 : 0); } /// /// Send a mouse wheel event to the browser. The |x| and |y| coordinates are /// relative to the upper-left corner of the view. The |deltaX| and |deltaY| /// values represent the movement delta in the X and Y directions respectively. /// In order to scroll inside select popups with window rendering disabled /// CefRenderHandler::GetScreenPoint should be implemented properly. /// public void SendMouseWheelEvent(CefMouseEvent @event, int deltaX, int deltaY) { var n_event = @event.ToNative(); cef_browser_host_t.send_mouse_wheel_event(_self, &n_event, deltaX, deltaY); } /// /// Send a touch event to the browser for a windowless browser. /// public void SendTouchEvent(CefTouchEvent @event) { cef_touch_event_t n_event; @event.ToNative(out n_event); cef_browser_host_t.send_touch_event(_self, &n_event); } /// /// Send a focus event to the browser. /// public void SendFocusEvent(bool setFocus) { cef_browser_host_t.send_focus_event(_self, setFocus ? 1 : 0); } /// /// Send a capture lost event to the browser. /// public void SendCaptureLostEvent() { cef_browser_host_t.send_capture_lost_event(_self); } /// /// Notify the browser that the window hosting it is about to be moved or /// resized. This method is only used on Windows and Linux. /// public void NotifyMoveOrResizeStarted() { cef_browser_host_t.notify_move_or_resize_started(_self); } /// /// Returns the maximum rate in frames per second (fps) that CefRenderHandler:: /// OnPaint will be called for a windowless browser. The actual fps may be /// lower if the browser cannot generate frames at the requested rate. The /// minimum value is 1 and the maximum value is 60 (default 30). This method /// can only be called on the UI thread. /// public int GetWindowlessFrameRate() { return cef_browser_host_t.get_windowless_frame_rate(_self); } /// /// Set the maximum rate in frames per second (fps) that CefRenderHandler:: /// OnPaint will be called for a windowless browser. The actual fps may be /// lower if the browser cannot generate frames at the requested rate. The /// minimum value is 1 and the maximum value is 60 (default 30). Can also be /// set at browser creation via CefBrowserSettings.windowless_frame_rate. /// public void SetWindowlessFrameRate(int frameRate) { cef_browser_host_t.set_windowless_frame_rate(_self, frameRate); } /// /// Begins a new composition or updates the existing composition. Blink has a /// special node (a composition node) that allows the input method to change /// text without affecting other DOM nodes. |text| is the optional text that /// will be inserted into the composition node. |underlines| is an optional set /// of ranges that will be underlined in the resulting text. /// |replacement_range| is an optional range of the existing text that will be /// replaced. |selection_range| is an optional range of the resulting text that /// will be selected after insertion or replacement. The |replacement_range| /// value is only used on OS X. /// This method may be called multiple times as the composition changes. When /// the client is done making changes the composition should either be canceled /// or completed. To cancel the composition call ImeCancelComposition. To /// complete the composition call either ImeCommitText or /// ImeFinishComposingText. Completion is usually signaled when: /// A. The client receives a WM_IME_COMPOSITION message with a GCS_RESULTSTR /// flag (on Windows), or; /// B. The client receives a "commit" signal of GtkIMContext (on Linux), or; /// C. insertText of NSTextInput is called (on Mac). /// This method is only used when window rendering is disabled. /// public void ImeSetComposition(string text, int underlinesCount, CefCompositionUnderline underlines, CefRange replacementRange, CefRange selectionRange) { fixed (char* text_ptr = text) { cef_string_t n_text = new cef_string_t(text_ptr, text != null ? text.Length : 0); UIntPtr n_underlinesCount = checked((UIntPtr)underlinesCount); var n_underlines = underlines.ToNative(); cef_range_t n_replacementRange = new cef_range_t(replacementRange.From, replacementRange.To); cef_range_t n_selectionRange = new cef_range_t(selectionRange.From, selectionRange.To); cef_browser_host_t.ime_set_composition(_self, &n_text, n_underlinesCount, &n_underlines, &n_replacementRange, &n_selectionRange); } } /// /// Completes the existing composition by optionally inserting the specified /// |text| into the composition node. |replacement_range| is an optional range /// of the existing text that will be replaced. |relative_cursor_pos| is where /// the cursor will be positioned relative to the current cursor position. See /// comments on ImeSetComposition for usage. The |replacement_range| and /// |relative_cursor_pos| values are only used on OS X. /// This method is only used when window rendering is disabled. /// public void ImeCommitText(string text, CefRange replacementRange, int relativeCursorPos) { fixed (char* text_ptr = text) { cef_string_t n_text = new cef_string_t(text_ptr, text != null ? text.Length : 0); var n_replacementRange = new cef_range_t(replacementRange.From, replacementRange.To); cef_browser_host_t.ime_commit_text(_self, &n_text, &n_replacementRange, relativeCursorPos); } } /// /// Completes the existing composition by applying the current composition node /// contents. If |keep_selection| is false the current selection, if any, will /// be discarded. See comments on ImeSetComposition for usage. /// This method is only used when window rendering is disabled. /// public void ImeFinishComposingText(bool keepSelection) { cef_browser_host_t.ime_finish_composing_text(_self, keepSelection ? 1 : 0); } /// /// Cancels the existing composition and discards the composition node /// contents without applying them. See comments on ImeSetComposition for /// usage. /// This method is only used when window rendering is disabled. /// public void ImeCancelComposition() { cef_browser_host_t.ime_cancel_composition(_self); } /// /// Call this method when the user drags the mouse into the web view (before /// calling DragTargetDragOver/DragTargetLeave/DragTargetDrop). /// |drag_data| should not contain file contents as this type of data is not /// allowed to be dragged into the web view. File contents can be removed using /// CefDragData::ResetFileContents (for example, if |drag_data| comes from /// CefRenderHandler::StartDragging). /// This method is only used when window rendering is disabled. /// public void DragTargetDragEnter(CefDragData dragData, CefMouseEvent mouseEvent, CefDragOperationsMask allowedOps) { var n_mouseEvent = mouseEvent.ToNative(); cef_browser_host_t.drag_target_drag_enter(_self, dragData.ToNative(), &n_mouseEvent, allowedOps); } /// /// Call this method each time the mouse is moved across the web view during /// a drag operation (after calling DragTargetDragEnter and before calling /// DragTargetDragLeave/DragTargetDrop). /// This method is only used when window rendering is disabled. /// public void DragTargetDragOver(CefMouseEvent mouseEvent, CefDragOperationsMask allowedOps) { var n_mouseEvent = mouseEvent.ToNative(); cef_browser_host_t.drag_target_drag_over(_self, &n_mouseEvent, allowedOps); } /// /// Call this method when the user drags the mouse out of the web view (after /// calling DragTargetDragEnter). /// This method is only used when window rendering is disabled. /// public void DragTargetDragLeave() { cef_browser_host_t.drag_target_drag_leave(_self); } /// /// Call this method when the user completes the drag operation by dropping /// the object onto the web view (after calling DragTargetDragEnter). /// The object being dropped is |drag_data|, given as an argument to /// the previous DragTargetDragEnter call. /// This method is only used when window rendering is disabled. /// public void DragTargetDrop(CefMouseEvent mouseEvent) { var n_mouseEvent = mouseEvent.ToNative(); cef_browser_host_t.drag_target_drop(_self, &n_mouseEvent); } /// /// Call this method when the drag operation started by a /// CefRenderHandler::StartDragging call has ended either in a drop or /// by being cancelled. |x| and |y| are mouse coordinates relative to the /// upper-left corner of the view. If the web view is both the drag source /// and the drag target then all DragTarget* methods should be called before /// DragSource* mthods. /// This method is only used when window rendering is disabled. /// public void DragSourceEndedAt(int x, int y, CefDragOperationsMask op) { cef_browser_host_t.drag_source_ended_at(_self, x, y, op); } /// /// Call this method when the drag operation started by a /// CefRenderHandler::StartDragging call has completed. This method may be /// called immediately without first calling DragSourceEndedAt to cancel a /// drag operation. If the web view is both the drag source and the drag /// target then all DragTarget* methods should be called before DragSource* /// mthods. /// This method is only used when window rendering is disabled. /// public void DragSourceSystemDragEnded() { cef_browser_host_t.drag_source_system_drag_ended(_self); } /// /// Returns the current visible navigation entry for this browser. This method /// can only be called on the UI thread. /// public CefNavigationEntry GetVisibleNavigationEntry() { return CefNavigationEntry.FromNativeOrNull( cef_browser_host_t.get_visible_navigation_entry(_self) ); } /// /// Set accessibility state for all frames. |accessibility_state| may be /// default, enabled or disabled. If |accessibility_state| is STATE_DEFAULT /// then accessibility will be disabled by default and the state may be further /// controlled with the "force-renderer-accessibility" and /// "disable-renderer-accessibility" command-line switches. If /// |accessibility_state| is STATE_ENABLED then accessibility will be enabled. /// If |accessibility_state| is STATE_DISABLED then accessibility will be /// completely disabled. /// For windowed browsers accessibility will be enabled in Complete mode (which /// corresponds to kAccessibilityModeComplete in Chromium). In this mode all /// platform accessibility objects will be created and managed by Chromium's /// internal implementation. The client needs only to detect the screen reader /// and call this method appropriately. For example, on macOS the client can /// handle the @"AXEnhancedUserInterface" accessibility attribute to detect /// VoiceOver state changes and on Windows the client can handle WM_GETOBJECT /// with OBJID_CLIENT to detect accessibility readers. /// For windowless browsers accessibility will be enabled in TreeOnly mode /// (which corresponds to kAccessibilityModeWebContentsOnly in Chromium). In /// this mode renderer accessibility is enabled, the full tree is computed, and /// events are passed to CefAccessibiltyHandler, but platform accessibility /// objects are not created. The client may implement platform accessibility /// objects using CefAccessibiltyHandler callbacks if desired. /// public void SetAccessibilityState(CefState accessibilityState) { cef_browser_host_t.set_accessibility_state(_self, accessibilityState); } /// /// Enable notifications of auto resize via CefDisplayHandler::OnAutoResize. /// Notifications are disabled by default. |min_size| and |max_size| define the /// range of allowed sizes. /// public void SetAutoResizeEnabled(bool enabled, CefSize minSize, CefSize maxSize) { var nMinSize = new cef_size_t(minSize.Width, minSize.Height); var nMaxSize = new cef_size_t(maxSize.Width, maxSize.Height); cef_browser_host_t.set_auto_resize_enabled(_self, enabled ? 1 : 0, &nMinSize, &nMaxSize); } /// /// Returns the extension hosted in this browser or NULL if no extension is /// hosted. See CefRequestContext::LoadExtension for details. /// public CefExtension GetExtension() { var nExtension = cef_browser_host_t.get_extension(_self); return CefExtension.FromNativeOrNull(nExtension); } /// /// Returns true if this browser is hosting an extension background script. /// Background hosts do not have a window and are not displayable. See /// CefRequestContext::LoadExtension for details. /// public bool IsBackgroundHost { get { return cef_browser_host_t.is_background_host(_self) != 0; } } /// /// Set whether the browser's audio is muted. /// public void SetAudioMuted(bool value) { cef_browser_host_t.set_audio_muted(_self, value ? 1 : 0); } /// /// Returns true if the browser's audio is muted. This method can only be /// called on the UI thread. /// public bool IsAudioMuted { get { return cef_browser_host_t.is_audio_muted(_self) != 0; } } } }