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
|
// 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/indexed_db_info_view.h"
#include <algorithm>
#include "base/i18n/time_formatting.h"
#include "base/utf_string_conversions.h"
#include "grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/text/bytes_formatting.h"
#include "ui/gfx/color_utils.h"
#include "ui/views/controls/label.h"
#include "ui/views/controls/textfield/textfield.h"
#include "ui/views/layout/grid_layout.h"
#include "ui/views/layout/layout_constants.h"
static const int kIndexedDBInfoViewBorderSize = 1;
static const int kIndexedDBInfoViewInsetSize = 3;
///////////////////////////////////////////////////////////////////////////////
// IndexedDBInfoView, public:
IndexedDBInfoView::IndexedDBInfoView()
: origin_value_field_(NULL),
size_value_field_(NULL),
last_modified_value_field_(NULL) {
}
IndexedDBInfoView::~IndexedDBInfoView() {
}
void IndexedDBInfoView::SetIndexedDBInfo(
const BrowsingDataIndexedDBHelper::IndexedDBInfo& indexed_db_info) {
origin_value_field_->SetText(UTF8ToWide(indexed_db_info.origin.spec()));
size_value_field_->SetText(ui::FormatBytes(indexed_db_info.size));
last_modified_value_field_->SetText(
base::TimeFormatFriendlyDateAndTime(indexed_db_info.last_modified));
EnableIndexedDBDisplay(true);
}
void IndexedDBInfoView::EnableIndexedDBDisplay(bool enabled) {
origin_value_field_->SetEnabled(enabled);
size_value_field_->SetEnabled(enabled);
last_modified_value_field_->SetEnabled(enabled);
}
void IndexedDBInfoView::ClearIndexedDBDisplay() {
std::wstring no_cookie_string =
UTF16ToWide(l10n_util::GetStringUTF16(IDS_COOKIES_COOKIE_NONESELECTED));
origin_value_field_->SetText(no_cookie_string);
size_value_field_->SetText(no_cookie_string);
last_modified_value_field_->SetText(no_cookie_string);
EnableIndexedDBDisplay(false);
}
///////////////////////////////////////////////////////////////////////////////
// IndexedDBInfoView, views::View overrides:
void IndexedDBInfoView::ViewHierarchyChanged(bool is_add,
views::View* parent,
views::View* child) {
if (is_add && child == this)
Init();
}
///////////////////////////////////////////////////////////////////////////////
// IndexedDBInfoView, private:
void IndexedDBInfoView::Init() {
SkColor border_color = color_utils::GetSysSkColor(COLOR_3DSHADOW);
views::Border* border = views::Border::CreateSolidBorder(
kIndexedDBInfoViewBorderSize, border_color);
set_border(border);
views::Label* origin_label = new views::Label(
l10n_util::GetStringUTF16(IDS_COOKIES_LOCAL_STORAGE_ORIGIN_LABEL));
origin_value_field_ = new views::Textfield;
views::Label* size_label = new views::Label(
l10n_util::GetStringUTF16(IDS_COOKIES_LOCAL_STORAGE_SIZE_ON_DISK_LABEL));
size_value_field_ = new views::Textfield;
views::Label* last_modified_label = new views::Label(
l10n_util::GetStringUTF16(
IDS_COOKIES_LOCAL_STORAGE_LAST_MODIFIED_LABEL));
last_modified_value_field_ = new views::Textfield;
using views::GridLayout;
GridLayout* layout = new GridLayout(this);
layout->SetInsets(kIndexedDBInfoViewInsetSize,
kIndexedDBInfoViewInsetSize,
kIndexedDBInfoViewInsetSize,
kIndexedDBInfoViewInsetSize);
SetLayoutManager(layout);
int three_column_layout_id = 0;
views::ColumnSet* column_set = layout->AddColumnSet(three_column_layout_id);
column_set->AddColumn(GridLayout::TRAILING, GridLayout::CENTER, 0,
GridLayout::USE_PREF, 0, 0);
column_set->AddPaddingColumn(0, views::kRelatedControlHorizontalSpacing);
column_set->AddColumn(GridLayout::FILL, GridLayout::FILL, 1,
GridLayout::USE_PREF, 0, 0);
layout->StartRow(0, three_column_layout_id);
layout->AddView(origin_label);
layout->AddView(origin_value_field_);
layout->AddPaddingRow(0, views::kRelatedControlSmallVerticalSpacing);
layout->StartRow(0, three_column_layout_id);
layout->AddView(size_label);
layout->AddView(size_value_field_);
layout->AddPaddingRow(0, views::kRelatedControlSmallVerticalSpacing);
layout->StartRow(0, three_column_layout_id);
layout->AddView(last_modified_label);
layout->AddView(last_modified_value_field_);
// Color these borderless text areas the same as the containing dialog.
SkColor text_area_background = color_utils::GetSysSkColor(COLOR_3DFACE);
// Now that the Textfields are in the view hierarchy, we can initialize them.
origin_value_field_->SetReadOnly(true);
origin_value_field_->RemoveBorder();
origin_value_field_->SetBackgroundColor(text_area_background);
size_value_field_->SetReadOnly(true);
size_value_field_->RemoveBorder();
size_value_field_->SetBackgroundColor(text_area_background);
last_modified_value_field_->SetReadOnly(true);
last_modified_value_field_->RemoveBorder();
last_modified_value_field_->SetBackgroundColor(text_area_background);
}
|