2009-06-21 00:09:28 +02:00
|
|
|
// Copyright (c) 2009 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.
|
|
|
|
//
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// A portion of this file was generated by the CEF translator tool. When
|
|
|
|
// making changes by hand only do so within the body of existing static and
|
|
|
|
// virtual method implementations. See the translator.README.txt file in the
|
|
|
|
// tools directory for more information.
|
|
|
|
//
|
|
|
|
|
2009-05-28 02:31:21 +02:00
|
|
|
#include "../precompiled_libcef.h"
|
|
|
|
#include "ctocpp/frame_ctocpp.h"
|
|
|
|
#include "ctocpp/request_ctocpp.h"
|
2009-06-21 00:09:28 +02:00
|
|
|
#include "ctocpp/stream_reader_ctocpp.h"
|
|
|
|
|
2009-05-28 02:31:21 +02:00
|
|
|
|
2009-06-21 00:09:28 +02:00
|
|
|
// VIRTUAL METHODS - Body may be edited by hand.
|
2009-05-28 02:31:21 +02:00
|
|
|
|
|
|
|
void CefFrameCToCpp::Undo()
|
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, undo))
|
|
|
|
return;
|
|
|
|
|
|
|
|
struct_->undo(struct_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefFrameCToCpp::Redo()
|
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, redo))
|
|
|
|
return;
|
|
|
|
|
|
|
|
struct_->redo(struct_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefFrameCToCpp::Cut()
|
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, cut))
|
|
|
|
return;
|
|
|
|
|
|
|
|
struct_->cut(struct_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefFrameCToCpp::Copy()
|
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, copy))
|
|
|
|
return;
|
|
|
|
|
|
|
|
struct_->copy(struct_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefFrameCToCpp::Paste()
|
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, paste))
|
|
|
|
return;
|
|
|
|
|
|
|
|
struct_->paste(struct_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefFrameCToCpp::Delete()
|
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, del))
|
|
|
|
return;
|
|
|
|
|
|
|
|
struct_->del(struct_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefFrameCToCpp::SelectAll()
|
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, select_all))
|
|
|
|
return;
|
|
|
|
|
|
|
|
struct_->select_all(struct_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefFrameCToCpp::Print()
|
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, print))
|
|
|
|
return;
|
|
|
|
|
|
|
|
struct_->print(struct_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefFrameCToCpp::ViewSource()
|
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, view_source))
|
|
|
|
return;
|
|
|
|
|
|
|
|
struct_->view_source(struct_);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::wstring CefFrameCToCpp::GetSource()
|
|
|
|
{
|
|
|
|
std::wstring str;
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, get_source))
|
|
|
|
return str;
|
|
|
|
|
|
|
|
cef_string_t cef_str = struct_->get_source(struct_);
|
|
|
|
if(cef_str) {
|
|
|
|
str = cef_str;
|
|
|
|
cef_string_free(cef_str);
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::wstring CefFrameCToCpp::GetText()
|
|
|
|
{
|
|
|
|
std::wstring str;
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, get_text))
|
|
|
|
return str;
|
|
|
|
|
|
|
|
cef_string_t cef_str = struct_->get_text(struct_);
|
|
|
|
if(cef_str) {
|
|
|
|
str = cef_str;
|
|
|
|
cef_string_free(cef_str);
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefFrameCToCpp::LoadRequest(CefRefPtr<CefRequest> request)
|
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, load_request))
|
|
|
|
return;
|
|
|
|
|
|
|
|
struct_->load_request(struct_, CefRequestCToCpp::Unwrap(request));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefFrameCToCpp::LoadURL(const std::wstring& url)
|
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, load_url))
|
|
|
|
return;
|
|
|
|
|
|
|
|
struct_->load_url(struct_, url.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefFrameCToCpp::LoadString(const std::wstring& string,
|
2009-06-21 00:09:28 +02:00
|
|
|
const std::wstring& url)
|
2009-05-28 02:31:21 +02:00
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, load_string))
|
|
|
|
return;
|
|
|
|
|
|
|
|
struct_->load_string(struct_, string.c_str(), url.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefFrameCToCpp::LoadStream(CefRefPtr<CefStreamReader> stream,
|
2009-06-21 00:09:28 +02:00
|
|
|
const std::wstring& url)
|
2009-05-28 02:31:21 +02:00
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, load_stream))
|
|
|
|
return;
|
|
|
|
|
|
|
|
struct_->load_stream(struct_, CefStreamReaderCToCpp::Unwrap(stream),
|
|
|
|
url.c_str());
|
|
|
|
}
|
|
|
|
|
2009-06-21 00:09:28 +02:00
|
|
|
void CefFrameCToCpp::ExecuteJavaScript(const std::wstring& jsCode,
|
|
|
|
const std::wstring& scriptUrl, int startLine)
|
2009-05-28 02:31:21 +02:00
|
|
|
{
|
2009-06-21 00:09:28 +02:00
|
|
|
if(CEF_MEMBER_MISSING(struct_, execute_java_script))
|
2009-05-28 02:31:21 +02:00
|
|
|
return;
|
|
|
|
|
2009-06-21 00:09:28 +02:00
|
|
|
struct_->execute_java_script(struct_, jsCode.c_str(), scriptUrl.c_str(),
|
|
|
|
startLine);
|
2009-05-28 02:31:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CefFrameCToCpp::IsMain()
|
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, is_main))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return struct_->is_main(struct_);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefFrameCToCpp::IsFocused()
|
|
|
|
{
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, is_focused))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return struct_->is_focused(struct_);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::wstring CefFrameCToCpp::GetName()
|
|
|
|
{
|
|
|
|
std::wstring str;
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, get_name))
|
|
|
|
return str;
|
|
|
|
|
|
|
|
cef_string_t cef_str = struct_->get_name(struct_);
|
|
|
|
if(cef_str) {
|
|
|
|
str = cef_str;
|
|
|
|
cef_string_free(cef_str);
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::wstring CefFrameCToCpp::GetURL()
|
|
|
|
{
|
|
|
|
std::wstring str;
|
|
|
|
if(CEF_MEMBER_MISSING(struct_, get_url))
|
|
|
|
return str;
|
|
|
|
|
|
|
|
cef_string_t cef_str = struct_->get_url(struct_);
|
|
|
|
if(cef_str) {
|
|
|
|
str = cef_str;
|
|
|
|
cef_string_free(cef_str);
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2009-06-21 00:09:28 +02:00
|
|
|
|
2009-05-28 02:31:21 +02:00
|
|
|
#ifdef _DEBUG
|
|
|
|
long CefCToCpp<CefFrameCToCpp, CefFrame, cef_frame_t>::DebugObjCt = 0;
|
|
|
|
#endif
|
2009-06-21 00:09:28 +02:00
|
|
|
|