Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(971)

Unified Diff: chrome/browser/gtk/options/content_filter_page_gtk.cc

Issue 6251001: Move chrome/browser/gtk/ to chrome/browser/ui/gtk/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/gtk/options/content_filter_page_gtk.h ('k') | chrome/browser/gtk/options/content_page_gtk.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/options/content_filter_page_gtk.cc
===================================================================
--- chrome/browser/gtk/options/content_filter_page_gtk.cc (revision 71352)
+++ chrome/browser/gtk/options/content_filter_page_gtk.cc (working copy)
@@ -1,316 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/gtk/options/content_filter_page_gtk.h"
-
-#include "app/l10n_util.h"
-#include "base/command_line.h"
-#include "chrome/browser/content_settings/content_settings_details.h"
-#include "chrome/browser/content_settings/content_settings_pattern.h"
-#include "chrome/browser/geolocation/geolocation_content_settings_map.h"
-#include "chrome/browser/geolocation/geolocation_exceptions_table_model.h"
-#include "chrome/browser/plugin_exceptions_table_model.h"
-#include "chrome/browser/profiles/profile.h"
-#include "chrome/browser/prefs/pref_service.h"
-#include "chrome/browser/gtk/browser_window_gtk.h"
-#include "chrome/browser/gtk/gtk_chrome_link_button.h"
-#include "chrome/browser/gtk/gtk_util.h"
-#include "chrome/browser/gtk/options/content_exceptions_window_gtk.h"
-#include "chrome/browser/gtk/options/simple_content_exceptions_window.h"
-#include "chrome/browser/notifications/desktop_notification_service.h"
-#include "chrome/browser/notifications/notification_exceptions_table_model.h"
-#include "chrome/browser/ui/browser.h"
-#include "chrome/browser/ui/options/show_options_url.h"
-#include "chrome/common/chrome_switches.h"
-#include "chrome/common/notification_details.h"
-#include "chrome/common/notification_service.h"
-#include "chrome/common/notification_type.h"
-#include "chrome/common/url_constants.h"
-#include "grit/generated_resources.h"
-#include "grit/locale_settings.h"
-
-ContentFilterPageGtk::ContentFilterPageGtk(Profile* profile,
- ContentSettingsType content_type)
- : OptionsPageBase(profile),
- content_type_(content_type),
- ask_radio_(NULL),
- ignore_toggle_(false) {
- static const int kTitleIDs[] = {
- 0, // This dialog isn't used for cookies.
- IDS_IMAGES_SETTING_LABEL,
- IDS_JS_SETTING_LABEL,
- IDS_PLUGIN_SETTING_LABEL,
- IDS_POPUP_SETTING_LABEL,
- IDS_GEOLOCATION_SETTING_LABEL,
- IDS_NOTIFICATIONS_SETTING_LABEL,
- };
- COMPILE_ASSERT(arraysize(kTitleIDs) == CONTENT_SETTINGS_NUM_TYPES,
- kTitleIDs_IncorrectSize);
-
- GtkWidget* title_label = gtk_util::CreateBoldLabel(
- l10n_util::GetStringUTF8(kTitleIDs[content_type_]));
- page_ = gtk_vbox_new(FALSE, gtk_util::kControlSpacing);
- gtk_box_pack_start(GTK_BOX(page_), title_label, FALSE, FALSE, 0);
- gtk_container_add(GTK_CONTAINER(page_), InitGroup());
-}
-
-ContentFilterPageGtk::~ContentFilterPageGtk() {
-}
-
-
-GtkWidget* ContentFilterPageGtk::InitGroup() {
- GtkWidget* vbox = gtk_vbox_new(FALSE, gtk_util::kControlSpacing);
-
- static const int kAllowIDs[] = {
- 0, // This dialog isn't used for cookies.
- IDS_IMAGES_LOAD_RADIO,
- IDS_JS_ALLOW_RADIO,
- IDS_PLUGIN_LOAD_RADIO,
- IDS_POPUP_ALLOW_RADIO,
- IDS_GEOLOCATION_ALLOW_RADIO,
- IDS_NOTIFICATIONS_ALLOW_RADIO,
- };
- COMPILE_ASSERT(arraysize(kAllowIDs) == CONTENT_SETTINGS_NUM_TYPES,
- kAllowIDs_IncorrectSize);
- allow_radio_ = gtk_radio_button_new_with_label(NULL,
- l10n_util::GetStringUTF8(kAllowIDs[content_type_]).c_str());
- gtk_box_pack_start(GTK_BOX(vbox), allow_radio_, FALSE, FALSE, 0);
-
- static const int kAskIDs[] = {
- 0, // This dialog isn't used for cookies.
- 0,
- 0,
- IDS_PLUGIN_ASK_RADIO,
- 0,
- IDS_GEOLOCATION_ASK_RADIO,
- IDS_NOTIFICATIONS_ASK_RADIO,
- };
- COMPILE_ASSERT(arraysize(kAskIDs) == CONTENT_SETTINGS_NUM_TYPES,
- kAskIDs_IncorrectSize);
- int askID = kAskIDs[content_type_];
- if (content_type_ == CONTENT_SETTINGS_TYPE_PLUGINS &&
- !CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kEnableClickToPlay)) {
- askID = 0;
- }
-
- if (askID) {
- ask_radio_ = gtk_radio_button_new_with_label_from_widget(
- GTK_RADIO_BUTTON(allow_radio_),
- l10n_util::GetStringUTF8(askID).c_str());
- gtk_box_pack_start(GTK_BOX(vbox), ask_radio_, FALSE, FALSE, 0);
- }
-
- static const int kBlockIDs[] = {
- 0, // This dialog isn't used for cookies.
- IDS_IMAGES_NOLOAD_RADIO,
- IDS_JS_DONOTALLOW_RADIO,
- IDS_PLUGIN_NOLOAD_RADIO,
- IDS_POPUP_BLOCK_RADIO,
- IDS_GEOLOCATION_BLOCK_RADIO,
- IDS_NOTIFICATIONS_BLOCK_RADIO,
- };
- COMPILE_ASSERT(arraysize(kBlockIDs) == CONTENT_SETTINGS_NUM_TYPES,
- kBlockIDs_IncorrectSize);
- block_radio_ = gtk_radio_button_new_with_label_from_widget(
- GTK_RADIO_BUTTON(allow_radio_),
- l10n_util::GetStringUTF8(kBlockIDs[content_type_]).c_str());
- gtk_box_pack_start(GTK_BOX(vbox), block_radio_, FALSE, FALSE, 0);
-
- exceptions_button_ = gtk_button_new_with_label(
- l10n_util::GetStringUTF8(IDS_COOKIES_EXCEPTIONS_BUTTON).c_str());
- GtkWidget* hbox = gtk_hbox_new(FALSE, 0);
- gtk_box_pack_start(GTK_BOX(hbox), exceptions_button_, FALSE, FALSE, 0);
- gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
-
- g_signal_connect(G_OBJECT(allow_radio_), "toggled",
- G_CALLBACK(OnAllowToggledThunk), this);
- if (ask_radio_) {
- g_signal_connect(G_OBJECT(ask_radio_), "toggled",
- G_CALLBACK(OnAllowToggledThunk), this);
- }
- g_signal_connect(G_OBJECT(block_radio_), "toggled",
- G_CALLBACK(OnAllowToggledThunk), this);
-
- g_signal_connect(G_OBJECT(exceptions_button_), "clicked",
- G_CALLBACK(OnExceptionsClickedThunk), this);
-
- // Add the "Disable individual plug-ins..." link on the plug-ins page.
- if (content_type_ == CONTENT_SETTINGS_TYPE_PLUGINS) {
- GtkWidget* plugins_page_link = gtk_chrome_link_button_new(
- l10n_util::GetStringUTF8(IDS_PLUGIN_SELECTIVE_DISABLE).c_str());
- g_signal_connect(G_OBJECT(plugins_page_link), "clicked",
- G_CALLBACK(OnPluginsPageLinkClickedThunk), this);
-
- hbox = gtk_hbox_new(FALSE, 0);
- gtk_box_pack_start(GTK_BOX(hbox), plugins_page_link, FALSE, FALSE, 0);
- gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
- }
-
- // Now that the buttons have been added to the view hierarchy, it's safe to
- // call SetChecked() on them. So Update the Buttons.
- ignore_toggle_ = true;
- UpdateButtonsState();
- ignore_toggle_ = false;
-
- // Register for CONTENT_SETTINGS_CHANGED notifications to update the UI
- // aften content settings change.
- registrar_.Add(this, NotificationType::CONTENT_SETTINGS_CHANGED,
- NotificationService::AllSources());
- registrar_.Add(this, NotificationType::DESKTOP_NOTIFICATION_DEFAULT_CHANGED,
- NotificationService::AllSources());
- registrar_.Add(this, NotificationType::GEOLOCATION_SETTINGS_CHANGED,
- NotificationService::AllSources());
-
- return vbox;
-}
-
-void ContentFilterPageGtk::UpdateButtonsState() {
- // Get default_setting.
- ContentSetting default_setting;
- // If the content setting is managed, sensitive is set to false and the radio
- // buttons will be disabled.
- bool sensitive = true;
- if (content_type_ == CONTENT_SETTINGS_TYPE_GEOLOCATION) {
- default_setting = profile()->GetGeolocationContentSettingsMap()->
- GetDefaultContentSetting();
- sensitive = !profile()->GetGeolocationContentSettingsMap()->
- IsDefaultContentSettingManaged();
- } else if (content_type_ == CONTENT_SETTINGS_TYPE_NOTIFICATIONS) {
- default_setting = profile()->GetDesktopNotificationService()->
- GetDefaultContentSetting();
- sensitive = !profile()->GetDesktopNotificationService()->
- IsDefaultContentSettingManaged();
- } else {
- default_setting = profile()->GetHostContentSettingsMap()->
- GetDefaultContentSetting(content_type_);
- sensitive = !profile()->GetHostContentSettingsMap()->
- IsDefaultContentSettingManaged(content_type_);
- }
- // Set UI state.
- if (default_setting == CONTENT_SETTING_ALLOW) {
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(allow_radio_), TRUE);
- } else if (default_setting == CONTENT_SETTING_ASK) {
- DCHECK(ask_radio_);
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(ask_radio_), TRUE);
- } else {
- DCHECK(default_setting == CONTENT_SETTING_BLOCK);
- gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(block_radio_), TRUE);
- }
-
- // Disable the UI if the default content setting is managed.
- gtk_widget_set_sensitive(allow_radio_, sensitive);
- gtk_widget_set_sensitive(block_radio_, sensitive);
- if (ask_radio_)
- gtk_widget_set_sensitive(ask_radio_, sensitive);
- gtk_widget_set_sensitive(exceptions_button_, sensitive);
-}
-
-void ContentFilterPageGtk::OnAllowToggled(GtkWidget* toggle_button) {
- if (ignore_toggle_)
- return;
-
- if (!gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(toggle_button))) {
- // When selecting a radio button, we get two signals (one for the old radio
- // being toggled off, one for the new one being toggled on.) Ignore the
- // signal for toggling off the old button.
- return;
- }
-
- DCHECK((toggle_button == allow_radio_) ||
- (toggle_button == ask_radio_) ||
- (toggle_button == block_radio_));
-
- ContentSetting default_setting =
- gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(allow_radio_)) ?
- CONTENT_SETTING_ALLOW :
- gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(block_radio_)) ?
- CONTENT_SETTING_BLOCK : CONTENT_SETTING_ASK;
-
- DCHECK(ask_radio_ || default_setting != CONTENT_SETTING_ASK);
- if (content_type_ == CONTENT_SETTINGS_TYPE_GEOLOCATION) {
- profile()->GetGeolocationContentSettingsMap()->SetDefaultContentSetting(
- default_setting);
- } else if (content_type_ == CONTENT_SETTINGS_TYPE_NOTIFICATIONS) {
- profile()->GetDesktopNotificationService()->SetDefaultContentSetting(
- default_setting);
- } else {
- profile()->GetHostContentSettingsMap()->SetDefaultContentSetting(
- content_type_, default_setting);
- }
-}
-
-void ContentFilterPageGtk::OnExceptionsClicked(GtkWidget* button) {
- if (content_type_ == CONTENT_SETTINGS_TYPE_GEOLOCATION) {
- SimpleContentExceptionsWindow::ShowExceptionsWindow(
- GTK_WINDOW(gtk_widget_get_toplevel(button)),
- new GeolocationExceptionsTableModel(
- profile()->GetGeolocationContentSettingsMap()),
- IDS_GEOLOCATION_EXCEPTION_TITLE);
- return;
- }
- if (content_type_ == CONTENT_SETTINGS_TYPE_NOTIFICATIONS) {
- SimpleContentExceptionsWindow::ShowExceptionsWindow(
- GTK_WINDOW(gtk_widget_get_toplevel(button)),
- new NotificationExceptionsTableModel(
- profile()->GetDesktopNotificationService()),
- IDS_NOTIFICATIONS_EXCEPTION_TITLE);
- return;
- }
- HostContentSettingsMap* settings_map =
- profile()->GetHostContentSettingsMap();
- HostContentSettingsMap* otr_settings_map =
- profile()->HasOffTheRecordProfile() ?
- profile()->GetOffTheRecordProfile()->GetHostContentSettingsMap() :
- NULL;
- if (content_type_ == CONTENT_SETTINGS_TYPE_PLUGINS &&
- CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kEnableResourceContentSettings)) {
- PluginExceptionsTableModel* model =
- new PluginExceptionsTableModel(settings_map, otr_settings_map);
- model->LoadSettings();
- SimpleContentExceptionsWindow::ShowExceptionsWindow(
- GTK_WINDOW(gtk_widget_get_toplevel(button)),
- model,
- IDS_PLUGINS_EXCEPTION_TITLE);
- return;
- }
- ContentExceptionsWindowGtk::ShowExceptionsWindow(
- GTK_WINDOW(gtk_widget_get_toplevel(button)),
- settings_map, otr_settings_map, content_type_);
-}
-
-void ContentFilterPageGtk::OnPluginsPageLinkClicked(GtkWidget* button) {
- browser::ShowOptionsURL(profile(), GURL(chrome::kChromeUIPluginsURL));
-}
-
-void ContentFilterPageGtk::Observe(NotificationType type,
- const NotificationSource& source,
- const NotificationDetails& details) {
- if (type == NotificationType::CONTENT_SETTINGS_CHANGED) {
- NotifyContentSettingsChanged(
- Details<const ContentSettingsDetails>(details).ptr());
- } else if (type == NotificationType::GEOLOCATION_SETTINGS_CHANGED) {
- NotifyContentSettingsChanged(
- Details<const ContentSettingsDetails>(details).ptr());
- } else if (type == NotificationType::DESKTOP_NOTIFICATION_DEFAULT_CHANGED) {
- ContentSettingsDetails content_settings_details(
- ContentSettingsPattern(),
- CONTENT_SETTINGS_TYPE_NOTIFICATIONS,
- "");
- NotifyContentSettingsChanged(&content_settings_details);
- } else {
- OptionsPageBase::Observe(type, source, details);
- }
-}
-
-void ContentFilterPageGtk::NotifyContentSettingsChanged(
- const ContentSettingsDetails *details) {
- if (details->type() == CONTENT_SETTINGS_TYPE_DEFAULT ||
- details->type() == content_type_) {
- ignore_toggle_ = true;
- UpdateButtonsState();
- ignore_toggle_ = false;
- }
-}
« no previous file with comments | « chrome/browser/gtk/options/content_filter_page_gtk.h ('k') | chrome/browser/gtk/options/content_page_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698