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
|
// Copyright (c) 2009 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_GTK_OPTIONS_PASSWORDS_PAGE_GTK_H_
#define CHROME_BROWSER_GTK_OPTIONS_PASSWORDS_PAGE_GTK_H_
#include <gtk/gtk.h>
#include <vector>
#include "chrome/browser/password_manager/password_store.h"
#include "chrome/browser/profile.h"
class PasswordsPageGtk {
public:
explicit PasswordsPageGtk(Profile* profile);
~PasswordsPageGtk();
GtkWidget* get_page_widget() const {
return page_;
}
private:
// Initialize the password tree widget, setting the member variables.
void InitPasswordTree();
// The password store associated with the currently active profile.
PasswordStore* GetPasswordStore();
// Sets the password list contents to the given data.
void SetPasswordList(const std::vector<webkit_glue::PasswordForm*>& result);
// Callback for the remove button.
static void OnRemoveButtonClicked(GtkButton* widget, PasswordsPageGtk* page);
// Callback for the remove all button.
static void OnRemoveAllButtonClicked(GtkButton* widget,
PasswordsPageGtk* page);
// Callback for the remove all confirmation response.
static void OnRemoveAllConfirmResponse(GtkDialog* confirm, gint response,
PasswordsPageGtk* page);
// Callback for the show password button.
static void OnShowPasswordButtonClicked(GtkButton* widget,
PasswordsPageGtk* page);
// Callback for selection changed events.
static void OnPasswordSelectionChanged(GtkTreeSelection* selection,
PasswordsPageGtk* page);
// Sorting functions.
static gint CompareSite(GtkTreeModel* model,
GtkTreeIter* a, GtkTreeIter* b,
gpointer window);
static gint CompareUsername(GtkTreeModel* model,
GtkTreeIter* a, GtkTreeIter* b,
gpointer window);
// A short class to mediate requests to the password store.
class PasswordListPopulater : public PasswordStoreConsumer {
public:
explicit PasswordListPopulater(PasswordsPageGtk* page)
: page_(page),
pending_login_query_(0) {
}
// Send a query to the password store to populate a PasswordsPageGtk.
void populate();
// Send the password store's reply back to the PasswordsPageGtk.
virtual void OnPasswordStoreRequestDone(
int handle, const std::vector<webkit_glue::PasswordForm*>& result);
private:
PasswordsPageGtk* page_;
int pending_login_query_;
};
// Password store consumer for populating the password list.
PasswordListPopulater populater;
// Widgets for the buttons.
GtkWidget* remove_button_;
GtkWidget* remove_all_button_;
GtkWidget* show_password_button_;
// Widget for the shown password
GtkWidget* password_;
bool password_showing_;
// Widgets for the password table.
GtkWidget* password_tree_;
GtkListStore* password_list_store_;
GtkTreeModel* password_list_sort_;
GtkTreeSelection* password_selection_;
// The parent GtkHBox widget and GtkWindow window.
GtkWidget* page_;
Profile* profile_;
std::vector<webkit_glue::PasswordForm> password_list_;
DISALLOW_COPY_AND_ASSIGN(PasswordsPageGtk);
};
#endif // CHROME_BROWSER_GTK_OPTIONS_PASSWORDS_PAGE_GTK_H_
|