2012-01-05 20:34:20 +01:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights
|
2011-05-20 16:42:25 +02:00
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
//
|
2011-12-08 02:38:30 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2011-05-20 16:42:25 +02:00
|
|
|
//
|
2011-12-08 02:38:30 +01:00
|
|
|
// This file was generated by the CEF translator tool. If making changes by
|
|
|
|
// hand only do so within the body of existing method and function
|
|
|
|
// implementations. See the translator.README.txt file in the tools directory
|
|
|
|
// for more information.
|
2011-05-20 16:42:25 +02:00
|
|
|
//
|
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#ifndef CEF_LIBCEF_DLL_CTOCPP_CLIENT_CTOCPP_H_
|
|
|
|
#define CEF_LIBCEF_DLL_CTOCPP_CLIENT_CTOCPP_H_
|
|
|
|
#pragma once
|
2011-05-20 16:42:25 +02:00
|
|
|
|
|
|
|
#ifndef BUILDING_CEF_SHARED
|
|
|
|
#pragma message("Warning: "__FILE__" may be accessed DLL-side only")
|
2012-01-10 00:46:23 +01:00
|
|
|
#else // BUILDING_CEF_SHARED
|
2011-05-20 16:42:25 +02:00
|
|
|
|
2011-12-23 18:36:30 +01:00
|
|
|
#include "include/cef_client.h"
|
|
|
|
#include "include/capi/cef_client_capi.h"
|
2011-05-20 16:42:25 +02:00
|
|
|
#include "libcef_dll/ctocpp/ctocpp.h"
|
|
|
|
|
|
|
|
// Wrap a C structure with a C++ class.
|
|
|
|
// This class may be instantiated and accessed DLL-side only.
|
|
|
|
class CefClientCToCpp
|
2012-01-10 00:46:23 +01:00
|
|
|
: public CefCToCpp<CefClientCToCpp, CefClient, cef_client_t> {
|
|
|
|
public:
|
|
|
|
explicit CefClientCToCpp(cef_client_t* str)
|
2011-05-20 16:42:25 +02:00
|
|
|
: CefCToCpp<CefClientCToCpp, CefClient, cef_client_t>(str) {}
|
|
|
|
virtual ~CefClientCToCpp() {}
|
|
|
|
|
|
|
|
// CefClient methods
|
|
|
|
virtual CefRefPtr<CefLifeSpanHandler> GetLifeSpanHandler() OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefLoadHandler> GetLoadHandler() OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefRequestHandler> GetRequestHandler() OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefDisplayHandler> GetDisplayHandler() OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefFocusHandler> GetFocusHandler() OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefKeyboardHandler> GetKeyboardHandler() OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefMenuHandler> GetMenuHandler() OVERRIDE;
|
2012-01-05 20:34:20 +01:00
|
|
|
virtual CefRefPtr<CefPermissionHandler> GetPermissionHandler() OVERRIDE;
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual CefRefPtr<CefPrintHandler> GetPrintHandler() OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefFindHandler> GetFindHandler() OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefJSDialogHandler> GetJSDialogHandler() OVERRIDE;
|
2011-11-21 22:21:55 +01:00
|
|
|
virtual CefRefPtr<CefV8ContextHandler> GetV8ContextHandler() OVERRIDE;
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual CefRefPtr<CefRenderHandler> GetRenderHandler() OVERRIDE;
|
2011-08-22 03:31:55 +02:00
|
|
|
virtual CefRefPtr<CefDragHandler> GetDragHandler() OVERRIDE;
|
2011-05-20 16:42:25 +02:00
|
|
|
};
|
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#endif // BUILDING_CEF_SHARED
|
|
|
|
#endif // CEF_LIBCEF_DLL_CTOCPP_CLIENT_CTOCPP_H_
|
2011-05-20 16:42:25 +02:00
|
|
|
|