mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- Add off-screen rendering support for Mac OS-X (issue #540).
- Add patch for ninja build support on Mac OS-X. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@624 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -294,8 +294,8 @@ class CefBrowser : public virtual CefBase {
|
||||
// Send a key event to the browser.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual void SendKeyEvent(KeyType type, int key, int modifiers, bool sysChar,
|
||||
bool imeChar) =0;
|
||||
virtual void SendKeyEvent(KeyType type, const CefKeyInfo& keyInfo,
|
||||
int modifiers) =0;
|
||||
|
||||
///
|
||||
// Send a mouse click event to the browser. The |x| and |y| coordinates are
|
||||
@ -314,10 +314,11 @@ class CefBrowser : public virtual CefBase {
|
||||
|
||||
///
|
||||
// Send a mouse wheel event to the browser. The |x| and |y| coordinates are
|
||||
// relative to the upper-left corner of the view.
|
||||
// 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.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual void SendMouseWheelEvent(int x, int y, int delta) =0;
|
||||
virtual void SendMouseWheelEvent(int x, int y, int deltaX, int deltaY) =0;
|
||||
|
||||
///
|
||||
// Send a focus event to the browser.
|
||||
|
Reference in New Issue
Block a user