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
|
// Copyright (c) 2011 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/ui/views/options/exception_editor_view.h"
#include "app/l10n_util.h"
#include "app/resource_bundle.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/content_exceptions_table_model.h"
#include "googleurl/src/url_canon.h"
#include "googleurl/src/url_parse.h"
#include "grit/app_resources.h"
#include "grit/generated_resources.h"
#include "grit/theme_resources.h"
#include "views/grid_layout.h"
#include "views/controls/image_view.h"
#include "views/controls/label.h"
#include "views/standard_layout.h"
#include "views/window/window.h"
ExceptionEditorView::ExceptionEditorView(
Delegate* delegate,
ContentExceptionsTableModel* model,
bool allow_off_the_record,
int index,
const ContentSettingsPattern& pattern,
ContentSetting setting,
bool is_off_the_record)
: delegate_(delegate),
model_(model),
cb_model_(model->content_type()),
allow_off_the_record_(allow_off_the_record),
index_(index),
pattern_(pattern),
setting_(setting),
is_off_the_record_(is_off_the_record) {
// Geolocation exceptions are handled by SimpleContentExceptionsView.
DCHECK_NE(setting_, CONTENT_SETTINGS_TYPE_GEOLOCATION);
// Notification exceptions are handled by SimpleContentExceptionsView.
DCHECK_NE(setting_, CONTENT_SETTINGS_TYPE_NOTIFICATIONS);
Init();
}
void ExceptionEditorView::Show(gfx::NativeWindow parent) {
views::Window* window =
views::Window::CreateChromeWindow(parent, gfx::Rect(), this);
window->Show();
GetDialogClientView()->UpdateDialogButtons();
pattern_tf_->SelectAll();
pattern_tf_->RequestFocus();
}
bool ExceptionEditorView::IsModal() const {
return true;
}
std::wstring ExceptionEditorView::GetWindowTitle() const {
if (is_new())
return UTF16ToWide(
l10n_util::GetStringUTF16(IDS_EXCEPTION_EDITOR_NEW_TITLE));
return UTF16ToWide(l10n_util::GetStringUTF16(IDS_EXCEPTION_EDITOR_TITLE));
}
bool ExceptionEditorView::IsDialogButtonEnabled(
MessageBoxFlags::DialogButton button) const {
if (button == MessageBoxFlags::DIALOGBUTTON_OK) {
return IsPatternValid(ContentSettingsPattern(
UTF16ToUTF8(pattern_tf_->text())),
incognito_cb_->checked());
}
return true;
}
bool ExceptionEditorView::Cancel() {
return true;
}
bool ExceptionEditorView::Accept() {
ContentSettingsPattern new_pattern(UTF16ToUTF8(pattern_tf_->text()));
ContentSetting setting =
cb_model_.SettingForIndex(action_cb_->selected_item());
bool is_off_the_record = incognito_cb_->checked();
delegate_->AcceptExceptionEdit(
new_pattern, setting, is_off_the_record, index_, is_new());
return true;
}
views::View* ExceptionEditorView::GetContentsView() {
return this;
}
void ExceptionEditorView::ContentsChanged(views::Textfield* sender,
const std::wstring& new_contents) {
GetDialogClientView()->UpdateDialogButtons();
UpdateImageView(pattern_iv_, IsPatternValid(ContentSettingsPattern(
UTF16ToUTF8(pattern_tf_->text())), incognito_cb_->checked()));
}
bool ExceptionEditorView::HandleKeyEvent(views::Textfield* sender,
const views::KeyEvent& key_event) {
return false;
}
void ExceptionEditorView::Init() {
using views::GridLayout;
pattern_tf_ = new views::Textfield();
pattern_tf_->SetText(UTF8ToUTF16(pattern_.AsString()));
pattern_tf_->SetController(this);
pattern_iv_ = new views::ImageView;
UpdateImageView(pattern_iv_, IsPatternValid(ContentSettingsPattern(
UTF16ToUTF8(pattern_tf_->text())), is_off_the_record_));
action_cb_ = new views::Combobox(&cb_model_);
if (!is_new())
action_cb_->SetSelectedItem(cb_model_.IndexForSetting(setting_));
incognito_cb_ = new views::Checkbox(
UTF16ToWide(l10n_util::GetStringUTF16(IDS_EXCEPTION_EDITOR_OTR_TITLE)));
incognito_cb_->SetChecked(is_off_the_record_);
GridLayout* layout = CreatePanelGridLayout(this);
SetLayoutManager(layout);
// For the Textfields.
views::ColumnSet* column_set = layout->AddColumnSet(1);
column_set->AddColumn(GridLayout::LEADING, GridLayout::CENTER, 0,
GridLayout::USE_PREF, 0, 0);
column_set->AddPaddingColumn(0, kRelatedControlHorizontalSpacing);
column_set->AddColumn(GridLayout::FILL, GridLayout::CENTER, 1,
GridLayout::USE_PREF, 0, 0);
column_set->AddPaddingColumn(0, kRelatedControlHorizontalSpacing);
column_set->AddColumn(GridLayout::CENTER, GridLayout::CENTER, 0,
GridLayout::USE_PREF, 0, 0);
// Add the contents.
layout->StartRow(0, 1);
layout->AddView(CreateLabel(IDS_EXCEPTION_EDITOR_PATTERN_TITLE));
layout->AddView(pattern_tf_);
layout->AddView(pattern_iv_);
layout->StartRowWithPadding(0, 1, 0, kRelatedControlVerticalSpacing);
layout->AddView(CreateLabel(IDS_EXCEPTION_EDITOR_ACTION_TITLE));
layout->AddView(action_cb_);
if (allow_off_the_record_) {
layout->StartRowWithPadding(0, 1, 0, kRelatedControlVerticalSpacing);
layout->AddView(incognito_cb_, 3, 1, GridLayout::FILL, GridLayout::FILL);
}
}
views::Label* ExceptionEditorView::CreateLabel(int message_id) {
views::Label* label =
new views::Label(UTF16ToWide(l10n_util::GetStringUTF16(message_id)));
label->SetHorizontalAlignment(views::Label::ALIGN_LEFT);
return label;
}
bool ExceptionEditorView::IsPatternValid(
const ContentSettingsPattern& pattern,
bool is_off_the_record) const {
bool is_valid_pattern = pattern.IsValid() &&
(model_->IndexOfExceptionByPattern(pattern, is_off_the_record) == -1);
return is_new() ? is_valid_pattern : (!pattern.AsString().empty() &&
((pattern_ == pattern) || is_valid_pattern));
}
void ExceptionEditorView::UpdateImageView(views::ImageView* image_view,
bool is_valid) {
return image_view->SetImage(
ResourceBundle::GetSharedInstance().GetBitmapNamed(
is_valid ? IDR_INPUT_GOOD : IDR_INPUT_ALERT));
}
|