2011-02-23 04:45:13 +01:00
|
|
|
// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef _DOM_EVENT_IMPL_H
|
|
|
|
#define _DOM_EVENT_IMPL_H
|
|
|
|
|
|
|
|
#include "include/cef.h"
|
|
|
|
#include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMEvent.h"
|
|
|
|
|
|
|
|
class CefDOMDocumentImpl;
|
|
|
|
|
2011-05-20 16:42:25 +02:00
|
|
|
class CefDOMEventImpl : public CefDOMEvent
|
2011-02-23 04:45:13 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
CefDOMEventImpl(CefRefPtr<CefDOMDocumentImpl> document,
|
|
|
|
const WebKit::WebDOMEvent& event);
|
|
|
|
virtual ~CefDOMEventImpl();
|
|
|
|
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual CefString GetType() OVERRIDE;
|
|
|
|
virtual Category GetCategory() OVERRIDE;
|
|
|
|
virtual Phase GetPhase() OVERRIDE;
|
|
|
|
virtual bool CanBubble() OVERRIDE;
|
|
|
|
virtual bool CanCancel() OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefDOMDocument> GetDocument() OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefDOMNode> GetTarget() OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefDOMNode> GetCurrentTarget() OVERRIDE;
|
2011-02-23 04:45:13 +01:00
|
|
|
|
|
|
|
// Will be called from CefDOMEventListenerWrapper::handleEvent().
|
|
|
|
void Detach();
|
|
|
|
|
|
|
|
// Verify that the object exists and is being accessed on the UI thread.
|
|
|
|
bool VerifyContext();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
CefRefPtr<CefDOMDocumentImpl> document_;
|
|
|
|
WebKit::WebDOMEvent event_;
|
2011-05-20 16:42:25 +02:00
|
|
|
|
|
|
|
IMPLEMENT_REFCOUNTING(CefDOMEventImpl);
|
2011-02-23 04:45:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _DOM_EVENT_IMPL_H
|