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
|
// 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.
#ifndef CHROME_BROWSER_VIEWS_OPTIONS_COOKIES_VIEW_H_
#define CHROME_BROWSER_VIEWS_OPTIONS_COOKIES_VIEW_H_
#pragma once
#include <string>
#include "app/tree_model.h"
#include "base/task.h"
#include "chrome/browser/cookies_tree_model.h"
#include "net/base/cookie_monster.h"
#include "views/controls/button/button.h"
#include "views/controls/tree/tree_view.h"
#include "views/controls/textfield/textfield.h"
#include "views/view.h"
#include "views/window/dialog_delegate.h"
#include "views/window/window.h"
namespace views {
class Label;
class NativeButton;
} // namespace views
class AppCacheInfoView;
class CookieInfoView;
class CookiesTreeView;
class DatabaseInfoView;
class LocalStorageInfoView;
class Profile;
class Timer;
class CookiesView : public CookiesTreeModel::Observer,
public views::View,
public views::DialogDelegate,
public views::ButtonListener,
public views::TreeViewController,
public views::Textfield::Controller {
public:
// Show the Cookies Window, creating one if necessary.
static void ShowCookiesWindow(Profile* profile);
virtual ~CookiesView();
// Updates the display to show only the search results.
void UpdateSearchResults();
// TreeModelObserver implementation.
virtual void TreeNodesAdded(TreeModel* model,
TreeModelNode* parent,
int start,
int count);
// TreeModelObserver implementation.
virtual void TreeNodesRemoved(TreeModel* model,
TreeModelNode* parent,
int start,
int count) {}
// TreeModelObserver implementation.
virtual void TreeNodeChildrenReordered(TreeModel* model,
TreeModelNode* parent) {}
// TreeModelObserver implementation.
virtual void TreeNodeChanged(TreeModel* model, TreeModelNode* node) {}
// views::ButtonListener implementation.
virtual void ButtonPressed(views::Button* sender, const views::Event& event);
// views::TreeViewController implementation.
virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view);
// views::TreeViewController implementation.
virtual void OnTreeViewKeyDown(base::KeyboardCode keycode);
// views::Textfield::Controller implementation.
virtual void ContentsChanged(views::Textfield* sender,
const std::wstring& new_contents);
virtual bool HandleKeystroke(views::Textfield* sender,
const views::Textfield::Keystroke& key);
// views::WindowDelegate implementation.
virtual int GetDialogButtons() const {
return MessageBoxFlags::DIALOGBUTTON_CANCEL;
}
virtual views::View* GetInitiallyFocusedView() {
return search_field_;
}
virtual bool CanResize() const { return true; }
virtual std::wstring GetWindowTitle() const;
virtual void WindowClosing();
virtual views::View* GetContentsView();
// views::View overrides:
virtual void Layout();
virtual gfx::Size GetPreferredSize();
protected:
// views::View overrides:
virtual void ViewHierarchyChanged(bool is_add,
views::View* parent,
views::View* child);
private:
class InfoPanelView;
// Use the static factory method to show.
explicit CookiesView(Profile* profile);
// Initialize the dialog contents and layout.
void Init();
// Resets the display to what it would be if there were no search query.
void ResetSearchQuery();
// Update the UI when there are no cookies.
void UpdateForEmptyState();
// Enable or disable the remove and remove all buttons.
void UpdateRemoveButtonsState();
// Updates view to be visible inside detailed_info_view_;
void UpdateVisibleDetailedInfo(views::View* view);
// Assorted dialog controls
views::Label* search_label_;
views::Textfield* search_field_;
views::NativeButton* clear_search_button_;
views::Label* description_label_;
CookiesTreeView* cookies_tree_;
InfoPanelView* info_panel_;
CookieInfoView* cookie_info_view_;
DatabaseInfoView* database_info_view_;
LocalStorageInfoView* local_storage_info_view_;
AppCacheInfoView* appcache_info_view_;
views::NativeButton* remove_button_;
views::NativeButton* remove_all_button_;
// The Cookies Tree model
scoped_ptr<CookiesTreeModel> cookies_tree_model_;
// The Profile for which Cookies are displayed
Profile* profile_;
// A factory to construct Runnable Methods so that we can be called back to
// re-evaluate the model after the search query string changes.
ScopedRunnableMethodFactory<CookiesView> search_update_factory_;
// Our containing window. If this is non-NULL there is a visible Cookies
// window somewhere.
static views::Window* instance_;
DISALLOW_COPY_AND_ASSIGN(CookiesView);
};
#endif // CHROME_BROWSER_VIEWS_OPTIONS_COOKIES_VIEW_H_
|