2013-01-17 19:39:09 +01:00
|
|
|
// Copyright (c) 2013 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_KEYBOARD_HANDLER_CTOCPP_H_
|
|
|
|
#define CEF_LIBCEF_DLL_CTOCPP_KEYBOARD_HANDLER_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_keyboard_handler.h"
|
|
|
|
#include "include/capi/cef_keyboard_handler_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 CefKeyboardHandlerCToCpp
|
|
|
|
: public CefCToCpp<CefKeyboardHandlerCToCpp, CefKeyboardHandler,
|
2012-01-10 00:46:23 +01:00
|
|
|
cef_keyboard_handler_t> {
|
|
|
|
public:
|
|
|
|
explicit CefKeyboardHandlerCToCpp(cef_keyboard_handler_t* str)
|
2011-05-20 16:42:25 +02:00
|
|
|
: CefCToCpp<CefKeyboardHandlerCToCpp, CefKeyboardHandler,
|
|
|
|
cef_keyboard_handler_t>(str) {}
|
|
|
|
virtual ~CefKeyboardHandlerCToCpp() {}
|
|
|
|
|
|
|
|
// CefKeyboardHandler methods
|
|
|
|
virtual bool OnKeyEvent(CefRefPtr<CefBrowser> browser, KeyEventType type,
|
2011-11-04 19:19:14 +01:00
|
|
|
int code, int modifiers, bool isSystemKey,
|
|
|
|
bool isAfterJavaScript) 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_KEYBOARD_HANDLER_CTOCPP_H_
|
2011-05-20 16:42:25 +02:00
|
|
|
|