Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 1123
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

(default)
Class CefDOMEvent

CefBase
   |
   +--CefDOMEvent

   in cef_dom.h

class CefDOMEvent
extends CefBase

Class used to represent a DOM event. The methods of this class should only be called on the UI thread.


Inner Classes, Typedefs, and Enums
typedef CefDOMEvent::Category
          
typedef CefDOMEvent::Phase
          
 
Method Summary
 virtual bool CanBubble()= 0
          Returns true if the event can bubble up the tree.
 virtual bool CanCancel()= 0
          Returns true if the event can be canceled.
 virtual CefDOMEvent::Category GetCategory()= 0
          Returns the event category.
 virtual CefRefPtr< CefDOMNode > GetCurrentTarget()= 0
          Returns the current target of the event.
 virtual CefRefPtr< CefDOMDocument > GetDocument()= 0
          Returns the document associated with this event.
 virtual CefDOMEvent::Phase GetPhase()= 0
          Returns the event processing phase.
 virtual CefRefPtr< CefDOMNode > GetTarget()= 0
          Returns the target of the event.
 virtual CefString GetType()= 0
          Returns the event type.
   
Methods inherited from class CefBase
AddRef, Release, GetRefCt
 

Method Detail

CanBubble

public virtual bool CanBubble()= 0;
Returns true if the event can bubble up the tree.

CanCancel

public virtual bool CanCancel()= 0;
Returns true if the event can be canceled.

GetCategory

public virtual CefDOMEvent::Category GetCategory()= 0;
Returns the event category.

GetCurrentTarget

public virtual CefRefPtr< CefDOMNode > GetCurrentTarget()= 0;
Returns the current target of the event.

GetDocument

public virtual CefRefPtr< CefDOMDocument > GetDocument()= 0;
Returns the document associated with this event.

GetPhase

public virtual CefDOMEvent::Phase GetPhase()= 0;
Returns the event processing phase.

GetTarget

public virtual CefRefPtr< CefDOMNode > GetTarget()= 0;
Returns the target of the event.

GetType

public virtual CefString GetType()= 0;
Returns the event type.

 Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 1123
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

Chromium Embedded Framework (CEF) Copyright © 2011 Marshall A. Greenblatt