This source file includes following definitions.
- GetInstance
- SetTitlebarButtons
- RemoveObserver
- OnChangeNotification
- HandleGError
- ParseAndStoreValue
#include "chrome/browser/ui/gtk/gconf_titlebar_listener.h"
#include <gtk/gtk.h>
#include "base/environment.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/singleton.h"
#include "base/nix/xdg_util.h"
#include "chrome/browser/ui/gtk/browser_titlebar.h"
#include "ui/base/x/x11_util.h"
namespace {
const char* kButtonLayoutKey = "/apps/metacity/general/button_layout";
const char* kMetacityGeneral = "/apps/metacity/general";
}
GConfTitlebarListener* GConfTitlebarListener::GetInstance() {
return Singleton<GConfTitlebarListener>::get();
}
void GConfTitlebarListener::SetTitlebarButtons(BrowserTitlebar* titlebar) {
if (client_) {
titlebar->BuildButtons(current_value_);
titlebars_.insert(titlebar);
} else {
titlebar->BuildButtons(BrowserTitlebar::kDefaultButtonString);
}
}
void GConfTitlebarListener::RemoveObserver(BrowserTitlebar* titlebar) {
titlebars_.erase(titlebar);
}
GConfTitlebarListener::~GConfTitlebarListener() {}
GConfTitlebarListener::GConfTitlebarListener() : client_(NULL) {
scoped_ptr<base::Environment> env(base::Environment::Create());
base::nix::DesktopEnvironment de =
base::nix::GetDesktopEnvironment(env.get());
if (de == base::nix::DESKTOP_ENVIRONMENT_GNOME ||
de == base::nix::DESKTOP_ENVIRONMENT_UNITY ||
ui::GuessWindowManager() == ui::WM_METACITY) {
client_ = gconf_client_get_default();
if (client_) {
GError* error = NULL;
GConfValue* gconf_value = gconf_client_get(client_, kButtonLayoutKey,
&error);
if (HandleGError(error, kButtonLayoutKey))
return;
ParseAndStoreValue(gconf_value);
if (gconf_value)
gconf_value_free(gconf_value);
gconf_client_add_dir(client_, kMetacityGeneral,
GCONF_CLIENT_PRELOAD_ONELEVEL, &error);
if (HandleGError(error, kMetacityGeneral))
return;
gconf_client_notify_add(
client_, kButtonLayoutKey,
reinterpret_cast<void (*)(GConfClient*, guint, GConfEntry*, void*)>(
OnChangeNotificationThunk),
this, NULL, &error);
if (HandleGError(error, kButtonLayoutKey))
return;
}
}
}
void GConfTitlebarListener::OnChangeNotification(GConfClient* client,
guint cnxn_id,
GConfEntry* entry) {
if (strcmp(gconf_entry_get_key(entry), kButtonLayoutKey) == 0) {
GConfValue* gconf_value = gconf_entry_get_value(entry);
ParseAndStoreValue(gconf_value);
for (std::set<BrowserTitlebar*>::const_iterator it = titlebars_.begin();
it != titlebars_.end(); ++it) {
(*it)->BuildButtons(current_value_);
}
}
}
bool GConfTitlebarListener::HandleGError(GError* error, const char* key) {
if (error != NULL) {
LOG(ERROR) << "Error with gconf key '" << key << "': " << error->message;
g_error_free(error);
g_object_unref(client_);
client_ = NULL;
return true;
}
return false;
}
void GConfTitlebarListener::ParseAndStoreValue(GConfValue* gconf_value) {
if (gconf_value) {
const char* value = gconf_value_get_string(gconf_value);
current_value_ = value ? value : BrowserTitlebar::kDefaultButtonString;
} else {
current_value_ = BrowserTitlebar::kDefaultButtonString;
}
}