OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/gtk/options/cookies_view.h" | 5 #include "chrome/browser/gtk/options/cookies_view.h" |
6 | 6 |
7 #include <gdk/gdkkeysyms.h> | 7 #include <gdk/gdkkeysyms.h> |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 } // namespace | 54 } // namespace |
55 | 55 |
56 CookiesView::~CookiesView() { | 56 CookiesView::~CookiesView() { |
57 } | 57 } |
58 | 58 |
59 // static | 59 // static |
60 void CookiesView::Show( | 60 void CookiesView::Show( |
61 GtkWindow* parent, | 61 GtkWindow* parent, |
62 Profile* profile, | 62 Profile* profile, |
63 BrowsingDataDatabaseHelper* browsing_data_database_helper, | 63 BrowsingDataDatabaseHelper* browsing_data_database_helper, |
64 BrowsingDataLocalStorageHelper* browsing_data_local_storage_helper) { | 64 BrowsingDataLocalStorageHelper* browsing_data_local_storage_helper, |
| 65 BrowsingDataAppCacheHelper* browsing_data_appcache_helper) { |
65 DCHECK(profile); | 66 DCHECK(profile); |
66 DCHECK(browsing_data_database_helper); | 67 DCHECK(browsing_data_database_helper); |
67 DCHECK(browsing_data_local_storage_helper); | 68 DCHECK(browsing_data_local_storage_helper); |
| 69 DCHECK(browsing_data_appcache_helper); |
68 | 70 |
69 // If there's already an existing editor window, activate it. | 71 // If there's already an existing editor window, activate it. |
70 if (instance_) { | 72 if (instance_) { |
71 gtk_window_present(GTK_WINDOW(instance_->dialog_)); | 73 gtk_window_present(GTK_WINDOW(instance_->dialog_)); |
72 } else { | 74 } else { |
73 instance_ = new CookiesView(parent, | 75 instance_ = new CookiesView(parent, |
74 profile, | 76 profile, |
75 browsing_data_database_helper, | 77 browsing_data_database_helper, |
76 browsing_data_local_storage_helper); | 78 browsing_data_local_storage_helper, |
| 79 browsing_data_appcache_helper); |
77 instance_->InitStylesAndShow(); | 80 instance_->InitStylesAndShow(); |
78 } | 81 } |
79 } | 82 } |
80 | 83 |
81 CookiesView::CookiesView( | 84 CookiesView::CookiesView( |
82 GtkWindow* parent, | 85 GtkWindow* parent, |
83 Profile* profile, | 86 Profile* profile, |
84 BrowsingDataDatabaseHelper* browsing_data_database_helper, | 87 BrowsingDataDatabaseHelper* browsing_data_database_helper, |
85 BrowsingDataLocalStorageHelper* browsing_data_local_storage_helper) | 88 BrowsingDataLocalStorageHelper* browsing_data_local_storage_helper, |
| 89 BrowsingDataAppCacheHelper* browsing_data_appcache_helper) |
86 : profile_(profile), | 90 : profile_(profile), |
87 browsing_data_database_helper_(browsing_data_database_helper), | 91 browsing_data_database_helper_(browsing_data_database_helper), |
88 browsing_data_local_storage_helper_(browsing_data_local_storage_helper), | 92 browsing_data_local_storage_helper_(browsing_data_local_storage_helper), |
| 93 browsing_data_appcache_helper_(browsing_data_appcache_helper), |
89 filter_update_factory_(this) { | 94 filter_update_factory_(this) { |
90 Init(parent); | 95 Init(parent); |
91 } | 96 } |
92 | 97 |
93 void CookiesView::Init(GtkWindow* parent) { | 98 void CookiesView::Init(GtkWindow* parent) { |
94 dialog_ = gtk_dialog_new_with_buttons( | 99 dialog_ = gtk_dialog_new_with_buttons( |
95 l10n_util::GetStringUTF8( | 100 l10n_util::GetStringUTF8( |
96 IDS_COOKIES_WEBSITE_PERMISSIONS_WINDOW_TITLE).c_str(), | 101 IDS_COOKIES_WEBSITE_PERMISSIONS_WINDOW_TITLE).c_str(), |
97 parent, | 102 parent, |
98 static_cast<GtkDialogFlags>(GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR), | 103 static_cast<GtkDialogFlags>(GTK_DIALOG_MODAL | GTK_DIALOG_NO_SEPARATOR), |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 GtkWidget* scroll_window = gtk_scrolled_window_new(NULL, NULL); | 177 GtkWidget* scroll_window = gtk_scrolled_window_new(NULL, NULL); |
173 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll_window), | 178 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll_window), |
174 GTK_POLICY_AUTOMATIC, | 179 GTK_POLICY_AUTOMATIC, |
175 GTK_POLICY_AUTOMATIC); | 180 GTK_POLICY_AUTOMATIC); |
176 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scroll_window), | 181 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scroll_window), |
177 GTK_SHADOW_ETCHED_IN); | 182 GTK_SHADOW_ETCHED_IN); |
178 gtk_box_pack_start(GTK_BOX(cookie_list_vbox), scroll_window, TRUE, TRUE, 0); | 183 gtk_box_pack_start(GTK_BOX(cookie_list_vbox), scroll_window, TRUE, TRUE, 0); |
179 | 184 |
180 cookies_tree_model_.reset(new CookiesTreeModel(profile_, | 185 cookies_tree_model_.reset(new CookiesTreeModel(profile_, |
181 browsing_data_database_helper_, | 186 browsing_data_database_helper_, |
182 browsing_data_local_storage_helper_)); | 187 browsing_data_local_storage_helper_, |
| 188 browsing_data_appcache_helper_)); |
183 cookies_tree_adapter_.reset( | 189 cookies_tree_adapter_.reset( |
184 new gtk_tree::TreeAdapter(this, cookies_tree_model_.get())); | 190 new gtk_tree::TreeAdapter(this, cookies_tree_model_.get())); |
185 tree_ = gtk_tree_view_new_with_model( | 191 tree_ = gtk_tree_view_new_with_model( |
186 GTK_TREE_MODEL(cookies_tree_adapter_->tree_store())); | 192 GTK_TREE_MODEL(cookies_tree_adapter_->tree_store())); |
187 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(tree_), FALSE); | 193 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(tree_), FALSE); |
188 gtk_tree_view_set_enable_tree_lines(GTK_TREE_VIEW(tree_), TRUE); | 194 gtk_tree_view_set_enable_tree_lines(GTK_TREE_VIEW(tree_), TRUE); |
189 gtk_container_add(GTK_CONTAINER(scroll_window), tree_); | 195 gtk_container_add(GTK_CONTAINER(scroll_window), tree_); |
190 | 196 |
191 GtkTreeViewColumn* title_column = gtk_tree_view_column_new(); | 197 GtkTreeViewColumn* title_column = gtk_tree_view_column_new(); |
192 GtkCellRenderer* pixbuf_renderer = gtk_cell_renderer_pixbuf_new(); | 198 GtkCellRenderer* pixbuf_renderer = gtk_cell_renderer_pixbuf_new(); |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 cookie_details_table_, &cookie_created_entry_); | 243 cookie_details_table_, &cookie_created_entry_); |
238 InitDetailRow(row++, IDS_COOKIES_COOKIE_EXPIRES_LABEL, | 244 InitDetailRow(row++, IDS_COOKIES_COOKIE_EXPIRES_LABEL, |
239 cookie_details_table_, &cookie_expires_entry_); | 245 cookie_details_table_, &cookie_expires_entry_); |
240 | 246 |
241 // Database details. | 247 // Database details. |
242 GtkWidget* database_details_frame = gtk_frame_new(NULL); | 248 GtkWidget* database_details_frame = gtk_frame_new(NULL); |
243 gtk_frame_set_shadow_type(GTK_FRAME(database_details_frame), | 249 gtk_frame_set_shadow_type(GTK_FRAME(database_details_frame), |
244 GTK_SHADOW_ETCHED_IN); | 250 GTK_SHADOW_ETCHED_IN); |
245 gtk_box_pack_start(GTK_BOX(cookie_list_vbox), database_details_frame, | 251 gtk_box_pack_start(GTK_BOX(cookie_list_vbox), database_details_frame, |
246 FALSE, FALSE, 0); | 252 FALSE, FALSE, 0); |
247 database_details_table_ = gtk_table_new(3, 2, FALSE); | 253 database_details_table_ = gtk_table_new(4, 2, FALSE); |
248 gtk_container_add(GTK_CONTAINER(database_details_frame), | 254 gtk_container_add(GTK_CONTAINER(database_details_frame), |
249 database_details_table_); | 255 database_details_table_); |
250 gtk_table_set_col_spacing(GTK_TABLE(database_details_table_), 0, | 256 gtk_table_set_col_spacing(GTK_TABLE(database_details_table_), 0, |
251 gtk_util::kLabelSpacing); | 257 gtk_util::kLabelSpacing); |
252 | 258 |
253 row = 0; | 259 row = 0; |
| 260 InitDetailRow(row++, IDS_COOKIES_COOKIE_NAME_LABEL, |
| 261 database_details_table_, &database_name_entry_); |
254 InitDetailRow(row++, IDS_COOKIES_WEB_DATABASE_DESCRIPTION_LABEL, | 262 InitDetailRow(row++, IDS_COOKIES_WEB_DATABASE_DESCRIPTION_LABEL, |
255 database_details_table_, &database_description_entry_); | 263 database_details_table_, &database_description_entry_); |
256 InitDetailRow(row++, IDS_COOKIES_LOCAL_STORAGE_SIZE_ON_DISK_LABEL, | 264 InitDetailRow(row++, IDS_COOKIES_LOCAL_STORAGE_SIZE_ON_DISK_LABEL, |
257 database_details_table_, &database_size_entry_); | 265 database_details_table_, &database_size_entry_); |
258 InitDetailRow(row++, IDS_COOKIES_LOCAL_STORAGE_LAST_MODIFIED_LABEL, | 266 InitDetailRow(row++, IDS_COOKIES_LOCAL_STORAGE_LAST_MODIFIED_LABEL, |
259 database_details_table_, | 267 database_details_table_, |
260 &database_last_modified_entry_); | 268 &database_last_modified_entry_); |
261 | 269 |
262 // Local storage details. | 270 // Local storage details. |
263 GtkWidget* local_storage_details_frame = gtk_frame_new(NULL); | 271 GtkWidget* local_storage_details_frame = gtk_frame_new(NULL); |
264 gtk_frame_set_shadow_type(GTK_FRAME(local_storage_details_frame), | 272 gtk_frame_set_shadow_type(GTK_FRAME(local_storage_details_frame), |
265 GTK_SHADOW_ETCHED_IN); | 273 GTK_SHADOW_ETCHED_IN); |
266 gtk_box_pack_start(GTK_BOX(cookie_list_vbox), local_storage_details_frame, | 274 gtk_box_pack_start(GTK_BOX(cookie_list_vbox), local_storage_details_frame, |
267 FALSE, FALSE, 0); | 275 FALSE, FALSE, 0); |
268 local_storage_details_table_ = gtk_table_new(3, 2, FALSE); | 276 local_storage_details_table_ = gtk_table_new(3, 2, FALSE); |
269 gtk_container_add(GTK_CONTAINER(local_storage_details_frame), | 277 gtk_container_add(GTK_CONTAINER(local_storage_details_frame), |
270 local_storage_details_table_); | 278 local_storage_details_table_); |
271 gtk_table_set_col_spacing(GTK_TABLE(local_storage_details_table_), 0, | 279 gtk_table_set_col_spacing(GTK_TABLE(local_storage_details_table_), 0, |
272 gtk_util::kLabelSpacing); | 280 gtk_util::kLabelSpacing); |
273 | 281 |
274 row = 0; | 282 row = 0; |
275 InitDetailRow(row++, IDS_COOKIES_LOCAL_STORAGE_ORIGIN_LABEL, | 283 InitDetailRow(row++, IDS_COOKIES_LOCAL_STORAGE_ORIGIN_LABEL, |
276 local_storage_details_table_, &local_storage_origin_entry_); | 284 local_storage_details_table_, &local_storage_origin_entry_); |
277 InitDetailRow(row++, IDS_COOKIES_LOCAL_STORAGE_SIZE_ON_DISK_LABEL, | 285 InitDetailRow(row++, IDS_COOKIES_LOCAL_STORAGE_SIZE_ON_DISK_LABEL, |
278 local_storage_details_table_, &local_storage_size_entry_); | 286 local_storage_details_table_, &local_storage_size_entry_); |
279 InitDetailRow(row++, IDS_COOKIES_LOCAL_STORAGE_LAST_MODIFIED_LABEL, | 287 InitDetailRow(row++, IDS_COOKIES_LOCAL_STORAGE_LAST_MODIFIED_LABEL, |
280 local_storage_details_table_, | 288 local_storage_details_table_, |
281 &local_storage_last_modified_entry_); | 289 &local_storage_last_modified_entry_); |
282 | 290 |
| 291 // AppCache details. |
| 292 GtkWidget* appcache_details_frame = gtk_frame_new(NULL); |
| 293 gtk_frame_set_shadow_type(GTK_FRAME(appcache_details_frame), |
| 294 GTK_SHADOW_ETCHED_IN); |
| 295 gtk_box_pack_start(GTK_BOX(cookie_list_vbox), appcache_details_frame, |
| 296 FALSE, FALSE, 0); |
| 297 appcache_details_table_ = gtk_table_new(4, 2, FALSE); |
| 298 gtk_container_add(GTK_CONTAINER(appcache_details_frame), |
| 299 appcache_details_table_); |
| 300 gtk_table_set_col_spacing(GTK_TABLE(appcache_details_table_), 0, |
| 301 gtk_util::kLabelSpacing); |
| 302 row = 0; |
| 303 InitDetailRow(row++, IDS_COOKIES_APPLICATION_CACHE_MANIFEST_LABEL, |
| 304 appcache_details_table_, &appcache_manifest_entry_); |
| 305 InitDetailRow(row++, IDS_COOKIES_SIZE_LABEL, |
| 306 appcache_details_table_, &appcache_size_entry_); |
| 307 InitDetailRow(row++, IDS_COOKIES_COOKIE_CREATED_LABEL, |
| 308 appcache_details_table_, &appcache_created_entry_); |
| 309 InitDetailRow(row++, IDS_COOKIES_LAST_ACCESSED_LABEL, |
| 310 appcache_details_table_, &appcache_last_accessed_entry_); |
| 311 |
283 UpdateVisibleDetailedInfo(cookie_details_table_); | 312 UpdateVisibleDetailedInfo(cookie_details_table_); |
284 // Populate the view. | 313 // Populate the view. |
285 cookies_tree_adapter_->Init(); | 314 cookies_tree_adapter_->Init(); |
286 SetInitialTreeState(); | 315 SetInitialTreeState(); |
287 EnableControls(); | 316 EnableControls(); |
288 } | 317 } |
289 | 318 |
290 void CookiesView::InitStylesAndShow() { | 319 void CookiesView::InitStylesAndShow() { |
291 // Realize a label so that its style gets initialized. | 320 // Realize a label so that its style gets initialized. |
292 gtk_widget_realize(description_label_); | 321 gtk_widget_realize(description_label_); |
293 gtk_widget_realize(dialog_); | 322 gtk_widget_realize(dialog_); |
294 GtkStyle* label_style = gtk_widget_get_style(description_label_); | 323 GtkStyle* label_style = gtk_widget_get_style(description_label_); |
295 GtkStyle* dialog_style = gtk_widget_get_style(dialog_); | 324 GtkStyle* dialog_style = gtk_widget_get_style(dialog_); |
296 | 325 |
297 // Cookie details. | 326 // Cookie details. |
298 InitBrowserDetailStyle(cookie_name_entry_, label_style, dialog_style); | 327 InitBrowserDetailStyle(cookie_name_entry_, label_style, dialog_style); |
299 InitBrowserDetailStyle(cookie_content_entry_, label_style, dialog_style); | 328 InitBrowserDetailStyle(cookie_content_entry_, label_style, dialog_style); |
300 InitBrowserDetailStyle(cookie_domain_entry_, label_style, dialog_style); | 329 InitBrowserDetailStyle(cookie_domain_entry_, label_style, dialog_style); |
301 InitBrowserDetailStyle(cookie_path_entry_, label_style, dialog_style); | 330 InitBrowserDetailStyle(cookie_path_entry_, label_style, dialog_style); |
302 InitBrowserDetailStyle(cookie_send_for_entry_, label_style, dialog_style); | 331 InitBrowserDetailStyle(cookie_send_for_entry_, label_style, dialog_style); |
303 InitBrowserDetailStyle(cookie_created_entry_, label_style, dialog_style); | 332 InitBrowserDetailStyle(cookie_created_entry_, label_style, dialog_style); |
304 InitBrowserDetailStyle(cookie_expires_entry_, label_style, dialog_style); | 333 InitBrowserDetailStyle(cookie_expires_entry_, label_style, dialog_style); |
305 | 334 |
306 // Database details. | 335 // Database details. |
| 336 InitBrowserDetailStyle(database_name_entry_, label_style, dialog_style); |
307 InitBrowserDetailStyle(database_description_entry_, label_style, | 337 InitBrowserDetailStyle(database_description_entry_, label_style, |
308 dialog_style); | 338 dialog_style); |
309 InitBrowserDetailStyle(database_size_entry_, label_style, dialog_style); | 339 InitBrowserDetailStyle(database_size_entry_, label_style, dialog_style); |
310 InitBrowserDetailStyle(database_last_modified_entry_, label_style, | 340 InitBrowserDetailStyle(database_last_modified_entry_, label_style, |
311 dialog_style); | 341 dialog_style); |
312 | 342 |
313 // Local storage details. | 343 // Local storage details. |
314 InitBrowserDetailStyle(local_storage_origin_entry_, label_style, | 344 InitBrowserDetailStyle(local_storage_origin_entry_, label_style, |
315 dialog_style); | 345 dialog_style); |
316 InitBrowserDetailStyle(local_storage_size_entry_, label_style, dialog_style); | 346 InitBrowserDetailStyle(local_storage_size_entry_, label_style, dialog_style); |
317 InitBrowserDetailStyle(local_storage_last_modified_entry_, label_style, | 347 InitBrowserDetailStyle(local_storage_last_modified_entry_, label_style, |
318 dialog_style); | 348 dialog_style); |
319 | 349 |
| 350 // AppCache details. |
| 351 InitBrowserDetailStyle(appcache_manifest_entry_, label_style, dialog_style); |
| 352 InitBrowserDetailStyle(appcache_size_entry_, label_style, dialog_style); |
| 353 InitBrowserDetailStyle(appcache_created_entry_, label_style, dialog_style); |
| 354 InitBrowserDetailStyle(appcache_last_accessed_entry_, label_style, |
| 355 dialog_style); |
| 356 |
320 gtk_widget_show_all(dialog_); | 357 gtk_widget_show_all(dialog_); |
321 } | 358 } |
322 | 359 |
323 void CookiesView::InitDetailRow(int row, int label_id, | 360 void CookiesView::InitDetailRow(int row, int label_id, |
324 GtkWidget* details_table, GtkWidget** entry) { | 361 GtkWidget* details_table, GtkWidget** entry) { |
325 GtkWidget* name_label = gtk_label_new( | 362 GtkWidget* name_label = gtk_label_new( |
326 l10n_util::GetStringUTF8(label_id).c_str()); | 363 l10n_util::GetStringUTF8(label_id).c_str()); |
327 gtk_misc_set_alignment(GTK_MISC(name_label), 1, 0.5); | 364 gtk_misc_set_alignment(GTK_MISC(name_label), 1, 0.5); |
328 gtk_table_attach(GTK_TABLE(details_table), name_label, | 365 gtk_table_attach(GTK_TABLE(details_table), name_label, |
329 0, 1, row, row + 1, GTK_FILL, GTK_FILL, 0, 0); | 366 0, 1, row, row + 1, GTK_FILL, GTK_FILL, 0, 0); |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 PopulateCookieDetails(detailed_info.cookie->first, | 398 PopulateCookieDetails(detailed_info.cookie->first, |
362 detailed_info.cookie->second); | 399 detailed_info.cookie->second); |
363 } else if (detailed_info.node_type == | 400 } else if (detailed_info.node_type == |
364 CookieTreeNode::DetailedInfo::TYPE_DATABASE) { | 401 CookieTreeNode::DetailedInfo::TYPE_DATABASE) { |
365 UpdateVisibleDetailedInfo(database_details_table_); | 402 UpdateVisibleDetailedInfo(database_details_table_); |
366 PopulateDatabaseDetails(*detailed_info.database_info); | 403 PopulateDatabaseDetails(*detailed_info.database_info); |
367 } else if (detailed_info.node_type == | 404 } else if (detailed_info.node_type == |
368 CookieTreeNode::DetailedInfo::TYPE_LOCAL_STORAGE) { | 405 CookieTreeNode::DetailedInfo::TYPE_LOCAL_STORAGE) { |
369 UpdateVisibleDetailedInfo(local_storage_details_table_); | 406 UpdateVisibleDetailedInfo(local_storage_details_table_); |
370 PopulateLocalStorageDetails(*detailed_info.local_storage_info); | 407 PopulateLocalStorageDetails(*detailed_info.local_storage_info); |
| 408 } else if (detailed_info.node_type == |
| 409 CookieTreeNode::DetailedInfo::TYPE_APPCACHE) { |
| 410 UpdateVisibleDetailedInfo(appcache_details_table_); |
| 411 PopulateAppCacheDetails(*detailed_info.appcache_info); |
371 } else { | 412 } else { |
372 UpdateVisibleDetailedInfo(cookie_details_table_); | 413 UpdateVisibleDetailedInfo(cookie_details_table_); |
373 ClearCookieDetails(); | 414 ClearCookieDetails(); |
374 } | 415 } |
375 } else { | 416 } else { |
376 ClearCookieDetails(); | 417 ClearCookieDetails(); |
377 } | 418 } |
378 } | 419 } |
379 | 420 |
380 void CookiesView::SetCookieDetailsSensitivity(gboolean enabled) { | 421 void CookiesView::SetCookieDetailsSensitivity(gboolean enabled) { |
381 gtk_widget_set_sensitive(cookie_name_entry_, enabled); | 422 gtk_widget_set_sensitive(cookie_name_entry_, enabled); |
382 gtk_widget_set_sensitive(cookie_content_entry_, enabled); | 423 gtk_widget_set_sensitive(cookie_content_entry_, enabled); |
383 gtk_widget_set_sensitive(cookie_domain_entry_, enabled); | 424 gtk_widget_set_sensitive(cookie_domain_entry_, enabled); |
384 gtk_widget_set_sensitive(cookie_path_entry_, enabled); | 425 gtk_widget_set_sensitive(cookie_path_entry_, enabled); |
385 gtk_widget_set_sensitive(cookie_send_for_entry_, enabled); | 426 gtk_widget_set_sensitive(cookie_send_for_entry_, enabled); |
386 gtk_widget_set_sensitive(cookie_created_entry_, enabled); | 427 gtk_widget_set_sensitive(cookie_created_entry_, enabled); |
387 gtk_widget_set_sensitive(cookie_expires_entry_, enabled); | 428 gtk_widget_set_sensitive(cookie_expires_entry_, enabled); |
388 } | 429 } |
389 | 430 |
390 void CookiesView::SetDatabaseDetailsSensitivity(gboolean enabled) { | 431 void CookiesView::SetDatabaseDetailsSensitivity(gboolean enabled) { |
| 432 gtk_widget_set_sensitive(database_name_entry_, enabled); |
391 gtk_widget_set_sensitive(database_description_entry_, enabled); | 433 gtk_widget_set_sensitive(database_description_entry_, enabled); |
392 gtk_widget_set_sensitive(database_size_entry_, enabled); | 434 gtk_widget_set_sensitive(database_size_entry_, enabled); |
393 gtk_widget_set_sensitive(database_last_modified_entry_, enabled); | 435 gtk_widget_set_sensitive(database_last_modified_entry_, enabled); |
394 } | 436 } |
395 | 437 |
396 void CookiesView::SetLocalStorageDetailsSensitivity(gboolean enabled) { | 438 void CookiesView::SetLocalStorageDetailsSensitivity(gboolean enabled) { |
397 gtk_widget_set_sensitive(local_storage_origin_entry_, enabled); | 439 gtk_widget_set_sensitive(local_storage_origin_entry_, enabled); |
398 gtk_widget_set_sensitive(local_storage_size_entry_, enabled); | 440 gtk_widget_set_sensitive(local_storage_size_entry_, enabled); |
399 gtk_widget_set_sensitive(local_storage_last_modified_entry_, enabled); | 441 gtk_widget_set_sensitive(local_storage_last_modified_entry_, enabled); |
400 } | 442 } |
401 | 443 |
| 444 void CookiesView::SetAppCacheDetailsSensitivity(gboolean enabled) { |
| 445 gtk_widget_set_sensitive(appcache_manifest_entry_, enabled); |
| 446 gtk_widget_set_sensitive(appcache_size_entry_, enabled); |
| 447 gtk_widget_set_sensitive(appcache_created_entry_, enabled); |
| 448 gtk_widget_set_sensitive(appcache_last_accessed_entry_, enabled); |
| 449 } |
| 450 |
402 void CookiesView::PopulateCookieDetails( | 451 void CookiesView::PopulateCookieDetails( |
403 const std::string& domain, | 452 const std::string& domain, |
404 const net::CookieMonster::CanonicalCookie& cookie) { | 453 const net::CookieMonster::CanonicalCookie& cookie) { |
405 gtk_entry_set_text(GTK_ENTRY(cookie_name_entry_), cookie.Name().c_str()); | 454 gtk_entry_set_text(GTK_ENTRY(cookie_name_entry_), cookie.Name().c_str()); |
406 gtk_entry_set_text(GTK_ENTRY(cookie_content_entry_), cookie.Value().c_str()); | 455 gtk_entry_set_text(GTK_ENTRY(cookie_content_entry_), cookie.Value().c_str()); |
407 gtk_entry_set_text(GTK_ENTRY(cookie_domain_entry_), domain.c_str()); | 456 gtk_entry_set_text(GTK_ENTRY(cookie_domain_entry_), domain.c_str()); |
408 gtk_entry_set_text(GTK_ENTRY(cookie_path_entry_), cookie.Path().c_str()); | 457 gtk_entry_set_text(GTK_ENTRY(cookie_path_entry_), cookie.Path().c_str()); |
409 gtk_entry_set_text(GTK_ENTRY(cookie_created_entry_), | 458 gtk_entry_set_text(GTK_ENTRY(cookie_created_entry_), |
410 WideToUTF8(base::TimeFormatFriendlyDateAndTime( | 459 WideToUTF8(base::TimeFormatFriendlyDateAndTime( |
411 cookie.CreationDate())).c_str()); | 460 cookie.CreationDate())).c_str()); |
412 if (cookie.DoesExpire()) { | 461 if (cookie.DoesExpire()) { |
413 gtk_entry_set_text(GTK_ENTRY(cookie_expires_entry_), | 462 gtk_entry_set_text(GTK_ENTRY(cookie_expires_entry_), |
414 WideToUTF8(base::TimeFormatFriendlyDateAndTime( | 463 WideToUTF8(base::TimeFormatFriendlyDateAndTime( |
415 cookie.ExpiryDate())).c_str()); | 464 cookie.ExpiryDate())).c_str()); |
416 } else { | 465 } else { |
417 gtk_entry_set_text(GTK_ENTRY(cookie_expires_entry_), | 466 gtk_entry_set_text(GTK_ENTRY(cookie_expires_entry_), |
418 l10n_util::GetStringUTF8( | 467 l10n_util::GetStringUTF8( |
419 IDS_COOKIES_COOKIE_EXPIRES_SESSION).c_str()); | 468 IDS_COOKIES_COOKIE_EXPIRES_SESSION).c_str()); |
420 } | 469 } |
421 gtk_entry_set_text( | 470 gtk_entry_set_text( |
422 GTK_ENTRY(cookie_send_for_entry_), | 471 GTK_ENTRY(cookie_send_for_entry_), |
423 l10n_util::GetStringUTF8(cookie.IsSecure() ? | 472 l10n_util::GetStringUTF8(cookie.IsSecure() ? |
424 IDS_COOKIES_COOKIE_SENDFOR_SECURE : | 473 IDS_COOKIES_COOKIE_SENDFOR_SECURE : |
425 IDS_COOKIES_COOKIE_SENDFOR_ANY).c_str()); | 474 IDS_COOKIES_COOKIE_SENDFOR_ANY).c_str()); |
426 SetCookieDetailsSensitivity(TRUE); | 475 SetCookieDetailsSensitivity(TRUE); |
427 } | 476 } |
428 | 477 |
429 void CookiesView::PopulateDatabaseDetails( | 478 void CookiesView::PopulateDatabaseDetails( |
430 const BrowsingDataDatabaseHelper::DatabaseInfo& database_info) { | 479 const BrowsingDataDatabaseHelper::DatabaseInfo& database_info) { |
| 480 gtk_entry_set_text( |
| 481 GTK_ENTRY(database_name_entry_), |
| 482 database_info.database_name.empty() ? |
| 483 l10n_util::GetStringUTF8( |
| 484 IDS_COOKIES_WEB_DATABASE_UNNAMED_NAME).c_str() : |
| 485 database_info.database_name.c_str()); |
431 gtk_entry_set_text(GTK_ENTRY(database_description_entry_), | 486 gtk_entry_set_text(GTK_ENTRY(database_description_entry_), |
432 database_info.description.c_str()); | 487 database_info.description.c_str()); |
433 gtk_entry_set_text(GTK_ENTRY(database_size_entry_), | 488 gtk_entry_set_text(GTK_ENTRY(database_size_entry_), |
434 WideToUTF8(FormatBytes( | 489 WideToUTF8(FormatBytes( |
435 database_info.size, | 490 database_info.size, |
436 GetByteDisplayUnits(database_info.size), | 491 GetByteDisplayUnits(database_info.size), |
437 true)).c_str()); | 492 true)).c_str()); |
438 gtk_entry_set_text(GTK_ENTRY(database_last_modified_entry_), | 493 gtk_entry_set_text(GTK_ENTRY(database_last_modified_entry_), |
439 WideToUTF8(base::TimeFormatFriendlyDateAndTime( | 494 WideToUTF8(base::TimeFormatFriendlyDateAndTime( |
440 database_info.last_modified)).c_str()); | 495 database_info.last_modified)).c_str()); |
441 SetDatabaseDetailsSensitivity(TRUE); | 496 SetDatabaseDetailsSensitivity(TRUE); |
442 } | 497 } |
443 | 498 |
444 void CookiesView::PopulateLocalStorageDetails( | 499 void CookiesView::PopulateLocalStorageDetails( |
445 const BrowsingDataLocalStorageHelper::LocalStorageInfo& | 500 const BrowsingDataLocalStorageHelper::LocalStorageInfo& |
446 local_storage_info) { | 501 local_storage_info) { |
447 gtk_entry_set_text(GTK_ENTRY(local_storage_origin_entry_), | 502 gtk_entry_set_text(GTK_ENTRY(local_storage_origin_entry_), |
448 local_storage_info.origin.c_str()); | 503 local_storage_info.origin.c_str()); |
449 gtk_entry_set_text(GTK_ENTRY(local_storage_size_entry_), | 504 gtk_entry_set_text(GTK_ENTRY(local_storage_size_entry_), |
450 WideToUTF8(FormatBytes( | 505 WideToUTF8(FormatBytes( |
451 local_storage_info.size, | 506 local_storage_info.size, |
452 GetByteDisplayUnits(local_storage_info.size), | 507 GetByteDisplayUnits(local_storage_info.size), |
453 true)).c_str()); | 508 true)).c_str()); |
454 gtk_entry_set_text(GTK_ENTRY(local_storage_last_modified_entry_), | 509 gtk_entry_set_text(GTK_ENTRY(local_storage_last_modified_entry_), |
455 WideToUTF8(base::TimeFormatFriendlyDateAndTime( | 510 WideToUTF8(base::TimeFormatFriendlyDateAndTime( |
456 local_storage_info.last_modified)).c_str()); | 511 local_storage_info.last_modified)).c_str()); |
457 SetLocalStorageDetailsSensitivity(TRUE); | 512 SetLocalStorageDetailsSensitivity(TRUE); |
458 } | 513 } |
459 | 514 |
| 515 void CookiesView::PopulateAppCacheDetails( |
| 516 const BrowsingDataAppCacheHelper::AppCacheInfo& info) { |
| 517 gtk_entry_set_text(GTK_ENTRY(appcache_manifest_entry_), |
| 518 info.manifest_url.spec().c_str()); |
| 519 gtk_entry_set_text(GTK_ENTRY(appcache_size_entry_), |
| 520 WideToUTF8(FormatBytes( |
| 521 info.size, |
| 522 GetByteDisplayUnits(info.size), |
| 523 true)).c_str()); |
| 524 gtk_entry_set_text(GTK_ENTRY(appcache_created_entry_), |
| 525 WideToUTF8(base::TimeFormatFriendlyDateAndTime( |
| 526 info.creation_time)).c_str()); |
| 527 gtk_entry_set_text(GTK_ENTRY(appcache_last_accessed_entry_), |
| 528 WideToUTF8(base::TimeFormatFriendlyDateAndTime( |
| 529 info.last_access_time)).c_str()); |
| 530 SetAppCacheDetailsSensitivity(TRUE); |
| 531 } |
| 532 |
460 void CookiesView::ClearCookieDetails() { | 533 void CookiesView::ClearCookieDetails() { |
461 std::string no_cookie = | 534 std::string no_cookie = |
462 l10n_util::GetStringUTF8(IDS_COOKIES_COOKIE_NONESELECTED); | 535 l10n_util::GetStringUTF8(IDS_COOKIES_COOKIE_NONESELECTED); |
463 gtk_entry_set_text(GTK_ENTRY(cookie_name_entry_), no_cookie.c_str()); | 536 gtk_entry_set_text(GTK_ENTRY(cookie_name_entry_), no_cookie.c_str()); |
464 gtk_entry_set_text(GTK_ENTRY(cookie_content_entry_), no_cookie.c_str()); | 537 gtk_entry_set_text(GTK_ENTRY(cookie_content_entry_), no_cookie.c_str()); |
465 gtk_entry_set_text(GTK_ENTRY(cookie_domain_entry_), no_cookie.c_str()); | 538 gtk_entry_set_text(GTK_ENTRY(cookie_domain_entry_), no_cookie.c_str()); |
466 gtk_entry_set_text(GTK_ENTRY(cookie_path_entry_), no_cookie.c_str()); | 539 gtk_entry_set_text(GTK_ENTRY(cookie_path_entry_), no_cookie.c_str()); |
467 gtk_entry_set_text(GTK_ENTRY(cookie_created_entry_), no_cookie.c_str()); | 540 gtk_entry_set_text(GTK_ENTRY(cookie_created_entry_), no_cookie.c_str()); |
468 gtk_entry_set_text(GTK_ENTRY(cookie_expires_entry_), no_cookie.c_str()); | 541 gtk_entry_set_text(GTK_ENTRY(cookie_expires_entry_), no_cookie.c_str()); |
469 gtk_entry_set_text(GTK_ENTRY(cookie_send_for_entry_), no_cookie.c_str()); | 542 gtk_entry_set_text(GTK_ENTRY(cookie_send_for_entry_), no_cookie.c_str()); |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
565 if (text) { | 638 if (text) { |
566 cookies_tree_model_->UpdateSearchResults(UTF8ToWide(text)); | 639 cookies_tree_model_->UpdateSearchResults(UTF8ToWide(text)); |
567 SetInitialTreeState(); | 640 SetInitialTreeState(); |
568 } | 641 } |
569 } | 642 } |
570 | 643 |
571 void CookiesView::UpdateVisibleDetailedInfo(GtkWidget* table) { | 644 void CookiesView::UpdateVisibleDetailedInfo(GtkWidget* table) { |
572 SetCookieDetailsSensitivity(table == cookie_details_table_); | 645 SetCookieDetailsSensitivity(table == cookie_details_table_); |
573 SetDatabaseDetailsSensitivity(table == database_details_table_); | 646 SetDatabaseDetailsSensitivity(table == database_details_table_); |
574 SetLocalStorageDetailsSensitivity(table == local_storage_details_table_); | 647 SetLocalStorageDetailsSensitivity(table == local_storage_details_table_); |
| 648 SetAppCacheDetailsSensitivity(table == appcache_details_table_); |
575 // Toggle the parent (the table frame) visibility and sensitivity. | 649 // Toggle the parent (the table frame) visibility and sensitivity. |
576 gtk_widget_show(gtk_widget_get_parent(table)); | 650 gtk_widget_show(gtk_widget_get_parent(table)); |
577 // Toggle the other tables. | 651 // Toggle the other tables. |
578 if (table != cookie_details_table_) | 652 if (table != cookie_details_table_) |
579 gtk_widget_hide(gtk_widget_get_parent(cookie_details_table_)); | 653 gtk_widget_hide(gtk_widget_get_parent(cookie_details_table_)); |
580 if (table != database_details_table_) | 654 if (table != database_details_table_) |
581 gtk_widget_hide(gtk_widget_get_parent(database_details_table_)); | 655 gtk_widget_hide(gtk_widget_get_parent(database_details_table_)); |
582 if (table != local_storage_details_table_) | 656 if (table != local_storage_details_table_) |
583 gtk_widget_hide(gtk_widget_get_parent(local_storage_details_table_)); | 657 gtk_widget_hide(gtk_widget_get_parent(local_storage_details_table_)); |
| 658 if (table != appcache_details_table_) |
| 659 gtk_widget_hide(gtk_widget_get_parent(appcache_details_table_)); |
584 } | 660 } |
585 | 661 |
586 // static | 662 // static |
587 void CookiesView::OnFilterEntryActivated(GtkEntry* entry, CookiesView* window) { | 663 void CookiesView::OnFilterEntryActivated(GtkEntry* entry, CookiesView* window) { |
588 window->filter_update_factory_.RevokeAll(); | 664 window->filter_update_factory_.RevokeAll(); |
589 window->UpdateFilterResults(); | 665 window->UpdateFilterResults(); |
590 } | 666 } |
591 | 667 |
592 // static | 668 // static |
593 void CookiesView::OnFilterEntryChanged(GtkEditable* editable, | 669 void CookiesView::OnFilterEntryChanged(GtkEditable* editable, |
594 CookiesView* window) { | 670 CookiesView* window) { |
595 window->filter_update_factory_.RevokeAll(); | 671 window->filter_update_factory_.RevokeAll(); |
596 MessageLoop::current()->PostDelayedTask(FROM_HERE, | 672 MessageLoop::current()->PostDelayedTask(FROM_HERE, |
597 window->filter_update_factory_.NewRunnableMethod( | 673 window->filter_update_factory_.NewRunnableMethod( |
598 &CookiesView::UpdateFilterResults), kSearchFilterDelayMs); | 674 &CookiesView::UpdateFilterResults), kSearchFilterDelayMs); |
599 window->EnableControls(); | 675 window->EnableControls(); |
600 } | 676 } |
601 | 677 |
602 // static | 678 // static |
603 void CookiesView::OnFilterClearButtonClicked(GtkButton* button, | 679 void CookiesView::OnFilterClearButtonClicked(GtkButton* button, |
604 CookiesView* window) { | 680 CookiesView* window) { |
605 gtk_entry_set_text(GTK_ENTRY(window->filter_entry_), ""); | 681 gtk_entry_set_text(GTK_ENTRY(window->filter_entry_), ""); |
606 window->filter_update_factory_.RevokeAll(); | 682 window->filter_update_factory_.RevokeAll(); |
607 window->UpdateFilterResults(); | 683 window->UpdateFilterResults(); |
608 } | 684 } |
OLD | NEW |