mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
views: Add support for accelerators (issue #2102)
This commit is contained in:
@@ -103,6 +103,22 @@ typedef struct _cef_window_delegate_t {
|
||||
///
|
||||
int (CEF_CALLBACK *can_close)(struct _cef_window_delegate_t* self,
|
||||
struct _cef_window_t* window);
|
||||
|
||||
///
|
||||
// Called when a keyboard accelerator registered with
|
||||
// cef_window_t::SetAccelerator is triggered. Return true (1) if the
|
||||
// accelerator was handled or false (0) otherwise.
|
||||
///
|
||||
int (CEF_CALLBACK *on_accelerator)(struct _cef_window_delegate_t* self,
|
||||
struct _cef_window_t* window, int command_id);
|
||||
|
||||
///
|
||||
// Called after all other controls in the window have had a chance to handle
|
||||
// the event. |event| contains information about the keyboard event. Return
|
||||
// true (1) if the keyboard event was handled or false (0) otherwise.
|
||||
///
|
||||
int (CEF_CALLBACK *on_key_event)(struct _cef_window_delegate_t* self,
|
||||
struct _cef_window_t* window, const struct _cef_key_event_t* event);
|
||||
} cef_window_delegate_t;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user