summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/views/options/content_settings_window_view.cc
blob: 2a2146c0d80cd97ee3f94e420e33140be73278e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
// 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/views/options/content_settings_window_view.h"

#include "app/l10n_util.h"
#include "base/stl_util-inl.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/browser/profile.h"
#include "chrome/browser/views/options/advanced_page_view.h"
#include "chrome/browser/views/options/content_filter_page_view.h"
#include "chrome/browser/views/options/cookie_filter_page_view.h"
#include "chrome/browser/views/options/general_page_view.h"
#include "chrome/browser/views/options/plugin_filter_page_view.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/pref_names.h"
#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"
#include "grit/locale_settings.h"
#include "views/controls/label.h"
#include "views/widget/root_view.h"
#include "views/window/dialog_delegate.h"
#include "views/window/window.h"

static ContentSettingsWindowView* instance_ = NULL;
// Content setting dialog bounds padding.
const int kDialogPadding = 7;

namespace browser {

// Declared in browser_dialogs.h so others don't have to depend on our header.
void ShowContentSettingsWindow(gfx::NativeWindow parent_window,
                               ContentSettingsType content_type,
                               Profile* profile) {
  DCHECK(profile);
  // If there's already an existing options window, activate it and switch to
  // the specified page.
  // TODO(beng): note this is not multi-simultaneous-profile-safe. When we care
  //             about this case this will have to be fixed.
  if (!instance_) {
    instance_ = new ContentSettingsWindowView(profile);
    views::Window::CreateChromeWindow(parent_window, gfx::Rect(), instance_);
  }
  instance_->ShowContentSettingsTab(content_type);
}

}  // namespace browser

ContentSettingsWindowView::ContentSettingsWindowView(Profile* profile)
    // Always show preferences for the original profile. Most state when off
    // the record comes from the original profile, but we explicitly use
    // the original profile to avoid potential problems.
    : profile_(profile->GetOriginalProfile()),
      label_(NULL),
      listbox_(NULL),
      current_page_(0) {
  // We don't need to observe changes in this value.
  last_selected_page_.Init(prefs::kContentSettingsWindowLastTabIndex,
                           profile->GetPrefs(), NULL);
}

ContentSettingsWindowView::~ContentSettingsWindowView() {
  STLDeleteElements(&pages_);
}

void ContentSettingsWindowView::ShowContentSettingsTab(
    ContentSettingsType page) {
  // This will show invisible windows and bring visible windows to the front.
  window()->Show();

  if (page == CONTENT_SETTINGS_TYPE_DEFAULT) {
    // Remember the last visited page from local state.
    page = static_cast<ContentSettingsType>(last_selected_page_.GetValue());
    if (page == CONTENT_SETTINGS_TYPE_DEFAULT)
      page = CONTENT_SETTINGS_TYPE_COOKIES;
  }
  // If the page number is out of bounds, reset to the first tab.
  if (page < 0 || page >= listbox_->GetRowCount())
    page = CONTENT_SETTINGS_TYPE_COOKIES;

  listbox_->SelectRow(static_cast<int>(page));
  ShowSettingsPage(listbox_->SelectedRow());
}

///////////////////////////////////////////////////////////////////////////////
// ContentSettingsWindowView, views::DialogDelegate implementation:

std::wstring ContentSettingsWindowView::GetWindowTitle() const {
  return l10n_util::GetString(IDS_CONTENT_SETTINGS_TITLE);
}

void ContentSettingsWindowView::WindowClosing() {
  instance_ = NULL;
}

bool ContentSettingsWindowView::Cancel() {
  return GetCurrentContentSettingsTabView()->CanClose();
}

views::View* ContentSettingsWindowView::GetContentsView() {
  return this;
}

///////////////////////////////////////////////////////////////////////////////
// ContentSettingsWindowView, views::Listbox::Listener implementation:

void ContentSettingsWindowView::ListboxSelectionChanged(
    views::Listbox* sender) {
  DCHECK_EQ(listbox_, sender);
  ShowSettingsPage(listbox_->SelectedRow());
  last_selected_page_.SetValue(current_page_);
}

///////////////////////////////////////////////////////////////////////////////
// ContentSettingsWindowView, views::View overrides:

void ContentSettingsWindowView::Layout() {
  int listbox_width = views::Window::GetLocalizedContentsWidth(
      IDS_CONTENT_SETTINGS_DIALOG_LISTBOX_WIDTH_CHARS);
  label_->SetBounds(kDialogPadding,
                    kDialogPadding,
                    listbox_width,
                    label_->GetPreferredSize().height());

  listbox_->SetBounds(kDialogPadding,
                      2 * kDialogPadding + label_->height(),
                      listbox_width,
                      height() - (3 * kDialogPadding) - label_->height());

  if (pages_[current_page_]->GetParent()) {
    pages_[current_page_]->SetBounds(
        2 * kDialogPadding + listbox_width,
        2 * kDialogPadding + label_->height(),
        width() - (3 * kDialogPadding) - listbox_width,
        height() - (2 * kDialogPadding));
  }
}

gfx::Size ContentSettingsWindowView::GetPreferredSize() {
  return gfx::Size(views::Window::GetLocalizedContentsSize(
      IDS_CONTENT_SETTINGS_DIALOG_WIDTH_CHARS,
      IDS_CONTENT_SETTINGS_DIALOG_HEIGHT_LINES));
}

void ContentSettingsWindowView::ViewHierarchyChanged(bool is_add,
                                                     views::View* parent,
                                                     views::View* child) {
  // Can't init before we're inserted into a Container, because we require a
  // HWND to parent native child controls to.
  if (is_add && child == this)
    Init();
}

///////////////////////////////////////////////////////////////////////////////
// ContentSettingsWindowView, private:

void ContentSettingsWindowView::Init() {
  // Make sure we don't leak memory by calling this twice.
  DCHECK(!listbox_);

  label_ = new views::Label(
      l10n_util::GetStringUTF16(IDS_CONTENT_SETTINGS_FEATURES_LABEL));
  label_->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
  AddChildView(label_);

  pages_.push_back(new CookieFilterPageView(profile_));
  pages_.push_back(
      new ContentFilterPageView(profile_, CONTENT_SETTINGS_TYPE_IMAGES));
  pages_.push_back(
      new ContentFilterPageView(profile_, CONTENT_SETTINGS_TYPE_JAVASCRIPT));
  pages_.push_back(new PluginFilterPageView(profile_));
  pages_.push_back(
      new ContentFilterPageView(profile_, CONTENT_SETTINGS_TYPE_POPUPS));
  pages_.push_back(
      new ContentFilterPageView(profile_, CONTENT_SETTINGS_TYPE_GEOLOCATION));
  pages_.push_back(
      new ContentFilterPageView(profile_, CONTENT_SETTINGS_TYPE_NOTIFICATIONS));
  for (size_t i = 0; i < pages_.size(); ++i) {
    pages_[i]->set_parent_owned(false);
  }
  DCHECK_EQ(static_cast<int>(pages_.size()), CONTENT_SETTINGS_NUM_TYPES);

  std::vector<string16> strings;
  strings.push_back(l10n_util::GetStringUTF16(IDS_COOKIES_TAB_LABEL));
  strings.push_back(l10n_util::GetStringUTF16(IDS_IMAGES_TAB_LABEL));
  strings.push_back(l10n_util::GetStringUTF16(IDS_JAVASCRIPT_TAB_LABEL));
  strings.push_back(l10n_util::GetStringUTF16(IDS_PLUGIN_TAB_LABEL));
  strings.push_back(l10n_util::GetStringUTF16(IDS_POPUP_TAB_LABEL));
  strings.push_back(l10n_util::GetStringUTF16(IDS_GEOLOCATION_TAB_LABEL));
  strings.push_back(l10n_util::GetStringUTF16(IDS_NOTIFICATIONS_TAB_LABEL));
  listbox_ = new views::Listbox(strings, this);
  AddChildView(listbox_);
  CHECK_EQ(strings.size(), pages_.size());
}

void ContentSettingsWindowView::ShowSettingsPage(int page) {
  if (pages_[current_page_]->GetParent())
    RemoveChildView(pages_[current_page_]);
  current_page_ = page;
  AddChildView(pages_[current_page_]);
  Layout();
  SchedulePaint();
}

const OptionsPageView*
    ContentSettingsWindowView::GetCurrentContentSettingsTabView() const {
  return static_cast<OptionsPageView*>(pages_[current_page_]);
}