Beispiel #1
0
        private int on_before_unload_dialog(cef_jsdialog_handler_t *self, cef_browser_t *browser, cef_string_t *message_text, int is_reload, cef_jsdialog_callback_t *callback)
        {
            CheckSelf(self);

            var m_browser      = CefBrowser.FromNative(browser);
            var m_message_text = cef_string_t.ToString(message_text);
            var m_callback     = CefJSDialogCallback.FromNative(callback);

            return(OnBeforeUnloadDialog(m_browser, m_message_text, is_reload != 0, m_callback) ? 1 : 0);
        }
Beispiel #2
0
        private int on_jsdialog(cef_jsdialog_handler_t *self, cef_browser_t *browser, cef_string_t *origin_url, CefJSDialogType dialog_type, cef_string_t *message_text, cef_string_t *default_prompt_text, cef_jsdialog_callback_t *callback, int *suppress_message)
        {
            CheckSelf(self);

            var  m_browser             = CefBrowser.FromNative(browser);
            var  m_origin_url          = cef_string_t.ToString(origin_url);
            var  m_message_text        = cef_string_t.ToString(message_text);
            var  m_default_prompt_text = cef_string_t.ToString(default_prompt_text);
            var  m_callback            = CefJSDialogCallback.FromNative(callback);
            bool m_suppress_message;

            var result = OnJSDialog(m_browser, m_origin_url, dialog_type, m_message_text, m_default_prompt_text, m_callback, out m_suppress_message);

            *suppress_message = m_suppress_message ? 1 : 0;
            return(result ? 1 : 0);
        }
Beispiel #3
0
 /// <summary>
 /// Called to run a dialog asking the user if they want to leave a page. Return
 /// false to use the default dialog implementation. Return true if the
 /// application will use a custom dialog or if the callback has been executed
 /// immediately. Custom dialogs may be either modal or modeless. If a custom
 /// dialog is used the application must execute |callback| once the custom
 /// dialog is dismissed.
 /// </summary>
 protected abstract bool OnBeforeUnloadDialog(CefBrowser browser, string messageText, bool isReload, CefJSDialogCallback callback);
Beispiel #4
0
 /// <summary>
 /// Called to run a JavaScript dialog. The |default_prompt_text| value will be
 /// specified for prompt dialogs only. Set |suppress_message| to true and
 /// return false to suppress the message (suppressing messages is preferable
 /// to immediately executing the callback as this is used to detect presumably
 /// malicious behavior like spamming alert messages in onbeforeunload). Set
 /// |suppress_message| to false and return false to use the default
 /// implementation (the default implementation will show one modal dialog at a
 /// time and suppress any additional dialog requests until the displayed dialog
 /// is dismissed). Return true if the application will use a custom dialog or
 /// if the callback has been executed immediately. Custom dialogs may be either
 /// modal or modeless. If a custom dialog is used the application must execute
 /// |callback| once the custom dialog is dismissed.
 /// </summary>
 protected abstract bool OnJSDialog(CefBrowser browser, string originUrl, string acceptLang, CefJSDialogType dialogType, string message_text, string default_prompt_text, CefJSDialogCallback callback, out bool suppress_message);
Beispiel #5
0
 /// <summary>
 /// Called to run a JavaScript dialog. The |default_prompt_text| value will be
 /// specified for prompt dialogs only. Set |suppress_message| to true and
 /// return false to suppress the message (suppressing messages is preferable
 /// to immediately executing the callback as this is used to detect presumably
 /// malicious behavior like spamming alert messages in onbeforeunload). Set
 /// |suppress_message| to false and return false to use the default
 /// implementation (the default implementation will show one modal dialog at a
 /// time and suppress any additional dialog requests until the displayed dialog
 /// is dismissed). Return true if the application will use a custom dialog or
 /// if the callback has been executed immediately. Custom dialogs may be either
 /// modal or modeless. If a custom dialog is used the application must execute
 /// |callback| once the custom dialog is dismissed.
 /// </summary>
 protected abstract bool OnJSDialog(CefBrowser browser, string originUrl, string acceptLang, CefJSDialogType dialogType, string message_text, string default_prompt_text, CefJSDialogCallback callback, out bool suppress_message);
Beispiel #6
0
 /// <summary>
 /// Called to run a dialog asking the user if they want to leave a page. Return
 /// false to use the default dialog implementation. Return true if the
 /// application will use a custom dialog or if the callback has been executed
 /// immediately. Custom dialogs may be either modal or modeless. If a custom
 /// dialog is used the application must execute |callback| once the custom
 /// dialog is dismissed.
 /// </summary>
 protected abstract bool OnBeforeUnloadDialog(CefBrowser browser, string messageText, bool isReload, CefJSDialogCallback callback);