2014-05-22 23:01:22 +02:00
|
|
|
// Copyright (c) 2014 The Chromium Embedded Framework Authors. All rights
|
2012-04-03 03:34:16 +02:00
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
2014-07-09 20:03:43 +02:00
|
|
|
#include <libgen.h>
|
2014-05-22 23:01:22 +02:00
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#undef Success // Definition conflicts with cef_message_router.h
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
#include <string>
|
2014-05-22 23:01:22 +02:00
|
|
|
|
2015-01-26 20:34:26 +01:00
|
|
|
#include "cefclient/client_handler_shared.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "include/cef_browser.h"
|
|
|
|
|
2015-01-23 20:09:34 +01:00
|
|
|
namespace client {
|
|
|
|
|
2015-01-26 20:34:26 +01:00
|
|
|
void ClientHandlerShared::SetAddress(CefRefPtr<CefBrowser> browser,
|
|
|
|
const CefString& url) {
|
2014-07-11 22:10:05 +02:00
|
|
|
CEF_REQUIRE_UI_THREAD();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2015-01-26 20:34:26 +01:00
|
|
|
if (browser_id_ == browser->GetIdentifier()) {
|
|
|
|
// Set the edit window text.
|
2012-04-03 03:34:16 +02:00
|
|
|
std::string urlStr(url);
|
2014-07-11 22:28:37 +02:00
|
|
|
gtk_entry_set_text(GTK_ENTRY(edit_handle_), urlStr.c_str());
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-26 20:34:26 +01:00
|
|
|
void ClientHandlerShared::SetTitle(CefRefPtr<CefBrowser> browser,
|
|
|
|
const CefString& title) {
|
2014-07-11 22:10:05 +02:00
|
|
|
CEF_REQUIRE_UI_THREAD();
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
std::string titleStr(title);
|
2014-05-22 23:01:22 +02:00
|
|
|
|
|
|
|
if (!browser->IsPopup()) {
|
|
|
|
// Set the GTK parent window title.
|
2015-01-26 20:34:26 +01:00
|
|
|
GtkWidget* window = gtk_widget_get_ancestor(GetMainWindowHandle(),
|
2014-05-22 23:01:22 +02:00
|
|
|
GTK_TYPE_WINDOW);
|
|
|
|
gtk_window_set_title(GTK_WINDOW(window), titleStr.c_str());
|
|
|
|
} else {
|
|
|
|
// Retrieve the X11 display shared with Chromium.
|
|
|
|
::Display* display = cef_get_xdisplay();
|
2014-07-11 22:10:05 +02:00
|
|
|
DCHECK(display);
|
2014-05-22 23:01:22 +02:00
|
|
|
|
|
|
|
// Retrieve the X11 window handle for the browser.
|
|
|
|
::Window window = browser->GetHost()->GetWindowHandle();
|
2014-08-14 11:42:23 +02:00
|
|
|
DCHECK(window != kNullWindowHandle);
|
2014-05-22 23:01:22 +02:00
|
|
|
|
|
|
|
// Retrieve the atoms required by the below XChangeProperty call.
|
|
|
|
const char* kAtoms[] = {
|
|
|
|
"_NET_WM_NAME",
|
|
|
|
"UTF8_STRING"
|
|
|
|
};
|
|
|
|
Atom atoms[2];
|
|
|
|
int result = XInternAtoms(display, const_cast<char**>(kAtoms), 2, false,
|
|
|
|
atoms);
|
2014-05-30 21:29:45 +02:00
|
|
|
if (!result)
|
2014-07-11 22:10:05 +02:00
|
|
|
NOTREACHED();
|
2014-05-22 23:01:22 +02:00
|
|
|
|
|
|
|
// Set the window title.
|
|
|
|
XChangeProperty(display,
|
|
|
|
window,
|
|
|
|
atoms[0],
|
|
|
|
atoms[1],
|
|
|
|
8,
|
|
|
|
PropModeReplace,
|
|
|
|
reinterpret_cast<const unsigned char*>(titleStr.c_str()),
|
|
|
|
titleStr.size());
|
|
|
|
|
|
|
|
// TODO(erg): This is technically wrong. So XStoreName and friends expect
|
|
|
|
// this in Host Portable Character Encoding instead of UTF-8, which I
|
|
|
|
// believe is Compound Text. This shouldn't matter 90% of the time since
|
|
|
|
// this is the fallback to the UTF8 property above.
|
|
|
|
XStoreName(display, browser->GetHost()->GetWindowHandle(),
|
|
|
|
titleStr.c_str());
|
|
|
|
}
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2015-01-26 20:34:26 +01:00
|
|
|
void ClientHandlerShared::SetLoadingState(CefRefPtr<CefBrowser> browser,
|
|
|
|
bool isLoading,
|
|
|
|
bool canGoBack,
|
|
|
|
bool canGoForward) {
|
2014-07-15 00:18:51 +02:00
|
|
|
CEF_REQUIRE_UI_THREAD();
|
|
|
|
|
2015-01-26 20:34:26 +01:00
|
|
|
// Nothing to do for popup windows.
|
|
|
|
if (browser_id_ != browser->GetIdentifier())
|
|
|
|
return;
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
if (isLoading)
|
2014-07-11 22:28:37 +02:00
|
|
|
gtk_widget_set_sensitive(GTK_WIDGET(stop_handle_), true);
|
2012-04-03 03:34:16 +02:00
|
|
|
else
|
2014-07-11 22:28:37 +02:00
|
|
|
gtk_widget_set_sensitive(GTK_WIDGET(stop_handle_), false);
|
2014-07-15 00:18:51 +02:00
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
if (canGoBack)
|
2014-07-11 22:28:37 +02:00
|
|
|
gtk_widget_set_sensitive(GTK_WIDGET(back_handle_), true);
|
2012-04-03 03:34:16 +02:00
|
|
|
else
|
2014-07-11 22:28:37 +02:00
|
|
|
gtk_widget_set_sensitive(GTK_WIDGET(back_handle_), false);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
if (canGoForward)
|
2014-07-11 22:28:37 +02:00
|
|
|
gtk_widget_set_sensitive(GTK_WIDGET(forward_handle_), true);
|
2012-04-03 03:34:16 +02:00
|
|
|
else
|
2014-07-11 22:28:37 +02:00
|
|
|
gtk_widget_set_sensitive(GTK_WIDGET(forward_handle_), false);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
2015-01-23 20:09:34 +01:00
|
|
|
|
|
|
|
} // namespace client
|