2013-01-17 19:39:09 +01:00
|
|
|
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
2010-10-03 23:04:50 +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
|
|
|
// ---------------------------------------------------------------------------
|
2010-10-03 23:04:50 +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.
|
2010-10-03 23:04:50 +02:00
|
|
|
//
|
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#ifndef CEF_LIBCEF_DLL_CTOCPP_FRAME_CTOCPP_H_
|
|
|
|
#define CEF_LIBCEF_DLL_CTOCPP_FRAME_CTOCPP_H_
|
|
|
|
#pragma once
|
2010-10-03 23:04:50 +02:00
|
|
|
|
|
|
|
#ifndef USING_CEF_SHARED
|
|
|
|
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
|
2012-01-10 00:46:23 +01:00
|
|
|
#else // USING_CEF_SHARED
|
2010-10-03 23:04:50 +02:00
|
|
|
|
2011-12-23 18:36:30 +01:00
|
|
|
#include "include/cef_frame.h"
|
|
|
|
#include "include/capi/cef_frame_capi.h"
|
|
|
|
#include "include/cef_browser.h"
|
|
|
|
#include "include/capi/cef_browser_capi.h"
|
|
|
|
#include "include/cef_v8.h"
|
|
|
|
#include "include/capi/cef_v8_capi.h"
|
2010-10-03 23:04:50 +02:00
|
|
|
#include "libcef_dll/ctocpp/ctocpp.h"
|
|
|
|
|
|
|
|
// Wrap a C structure with a C++ class.
|
|
|
|
// This class may be instantiated and accessed wrapper-side only.
|
|
|
|
class CefFrameCToCpp
|
2012-01-10 00:46:23 +01:00
|
|
|
: public CefCToCpp<CefFrameCToCpp, CefFrame, cef_frame_t> {
|
|
|
|
public:
|
|
|
|
explicit CefFrameCToCpp(cef_frame_t* str)
|
2010-10-03 23:04:50 +02:00
|
|
|
: CefCToCpp<CefFrameCToCpp, CefFrame, cef_frame_t>(str) {}
|
|
|
|
virtual ~CefFrameCToCpp() {}
|
|
|
|
|
|
|
|
// CefFrame methods
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual void Undo() OVERRIDE;
|
|
|
|
virtual void Redo() OVERRIDE;
|
|
|
|
virtual void Cut() OVERRIDE;
|
|
|
|
virtual void Copy() OVERRIDE;
|
|
|
|
virtual void Paste() OVERRIDE;
|
|
|
|
virtual void Delete() OVERRIDE;
|
|
|
|
virtual void SelectAll() OVERRIDE;
|
|
|
|
virtual void Print() OVERRIDE;
|
|
|
|
virtual void ViewSource() OVERRIDE;
|
|
|
|
virtual CefString GetSource() OVERRIDE;
|
|
|
|
virtual CefString GetText() OVERRIDE;
|
|
|
|
virtual void LoadRequest(CefRefPtr<CefRequest> request) OVERRIDE;
|
|
|
|
virtual void LoadURL(const CefString& url) OVERRIDE;
|
2012-01-10 00:46:23 +01:00
|
|
|
virtual void LoadString(const CefString& string_val,
|
2011-05-20 16:42:25 +02:00
|
|
|
const CefString& url) OVERRIDE;
|
2010-10-03 23:04:50 +02:00
|
|
|
virtual void LoadStream(CefRefPtr<CefStreamReader> stream,
|
2011-05-20 16:42:25 +02:00
|
|
|
const CefString& url) OVERRIDE;
|
2010-11-22 18:49:46 +01:00
|
|
|
virtual void ExecuteJavaScript(const CefString& jsCode,
|
2011-05-20 16:42:25 +02:00
|
|
|
const CefString& scriptUrl, int startLine) OVERRIDE;
|
|
|
|
virtual bool IsMain() OVERRIDE;
|
|
|
|
virtual bool IsFocused() OVERRIDE;
|
|
|
|
virtual CefString GetName() OVERRIDE;
|
2012-01-10 00:46:23 +01:00
|
|
|
virtual int64 GetIdentifier() OVERRIDE;
|
2011-12-08 12:44:30 +01:00
|
|
|
virtual CefRefPtr<CefFrame> GetParent() OVERRIDE;
|
2011-05-20 16:42:25 +02:00
|
|
|
virtual CefString GetURL() OVERRIDE;
|
|
|
|
virtual CefRefPtr<CefBrowser> GetBrowser() OVERRIDE;
|
|
|
|
virtual void VisitDOM(CefRefPtr<CefDOMVisitor> visitor) OVERRIDE;
|
2011-10-28 22:30:19 +02:00
|
|
|
virtual CefRefPtr<CefV8Context> GetV8Context() OVERRIDE;
|
2010-10-03 23:04:50 +02:00
|
|
|
};
|
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#endif // USING_CEF_SHARED
|
|
|
|
#endif // CEF_LIBCEF_DLL_CTOCPP_FRAME_CTOCPP_H_
|
2010-10-03 23:04:50 +02:00
|
|
|
|