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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.TIT
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_
#define CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_
#include <gtk/gtk.h>
#include <vector>
#include "app/table_model_observer.h"
#include "base/ref_counted.h"
#include "base/task.h"
#include "chrome/browser/bookmarks/bookmark_model.h"
#include "chrome/browser/gtk/bookmark_context_menu.h"
#include "chrome/browser/shell_dialogs.h"
class BookmarkModel;
class BookmarkTableModel;
class Profile;
class BookmarkManagerGtk : public BookmarkModelObserver,
public TableModelObserver,
public SelectFileDialog::Listener {
public:
virtual ~BookmarkManagerGtk();
Profile* profile() { return profile_; }
// Show the node in the tree.
void SelectInTree(BookmarkNode* node, bool expand);
// Shows the bookmark manager. Only one bookmark manager exists.
static void Show(Profile* profile);
// BookmarkModelObserver implementation.
// The implementations of these functions only affect the left side tree view
// as changes to the right side are handled via TableModelObserver callbacks.
virtual void Loaded(BookmarkModel* model);
virtual void BookmarkModelBeingDeleted(BookmarkModel* model);
virtual void BookmarkNodeMoved(BookmarkModel* model,
BookmarkNode* old_parent,
int old_index,
BookmarkNode* new_parent,
int new_index);
virtual void BookmarkNodeAdded(BookmarkModel* model,
BookmarkNode* parent,
int index);
virtual void BookmarkNodeRemoved(BookmarkModel* model,
BookmarkNode* parent,
int index);
virtual void BookmarkNodeRemoved(BookmarkModel* model,
BookmarkNode* parent,
int old_index,
BookmarkNode* node);
virtual void BookmarkNodeChanged(BookmarkModel* model,
BookmarkNode* node);
virtual void BookmarkNodeChildrenReordered(BookmarkModel* model,
BookmarkNode* node);
virtual void BookmarkNodeFavIconLoaded(BookmarkModel* model,
BookmarkNode* node);
// TableModelObserver implementation.
virtual void OnModelChanged();
virtual void OnItemsChanged(int start, int length);
virtual void OnItemsAdded(int start, int length);
virtual void OnItemsRemoved(int start, int length);
// SelectFileDialog::Listener implemenation.
virtual void FileSelected(const FilePath& path,
int index, void* params);
private:
explicit BookmarkManagerGtk(Profile* profile);
void InitWidgets();
GtkWidget* MakeLeftPane();
GtkWidget* MakeRightPane();
// If |left|, then make the organize menu refer to that which is selected in
// the left pane, otherwise use the right pane selection.
void ResetOrganizeMenu(bool left);
// Pack the data from the bookmark model into the stores. This does not
// create the stores, which is done in Make{Left,Right}Pane().
// This one should only be called once (when the bookmark model is loaded).
void BuildLeftStore();
// This one clears the old right pane and refills it with the contents of
// whatever folder is selected on the left. It can be called multiple times.
void BuildRightStore();
// Get the ID of the item at |iter|.
int GetRowIDAt(GtkTreeModel* model, GtkTreeIter* iter);
// Get the node from |model| at |iter|. If the item is not a node, return
// NULL.
BookmarkNode* GetNodeAt(GtkTreeModel* model, GtkTreeIter* iter);
// Get the node that is selected in the left tree view.
BookmarkNode* GetFolder();
// Get the ID of the selected row.
int GetSelectedRowID();
// Get the nodes that are selected in the right tree view.
std::vector<BookmarkNode*> GetRightSelection();
// Set the fields for a row.
void SetRightSideColumnValues(int row, GtkTreeIter* iter);
// Stick update the right store to reflect |row| from |right_tree_model_|.
void AddNodeToRightStore(int row);
GtkTreeSelection* left_selection() {
return gtk_tree_view_get_selection(GTK_TREE_VIEW(left_tree_view_));
}
GtkTreeSelection* right_selection() {
return gtk_tree_view_get_selection(GTK_TREE_VIEW(right_tree_view_));
}
// Use these to temporarily disable updating the right store. You can stack
// calls to Suppress(), but they should always be matched by an equal number
// of calls to Allow().
void SuppressUpdatesToRightStore();
void AllowUpdatesToRightStore();
// Tries to find the node with id |target_id|. If found, returns true and set
// |iter| to point to the entry. If you pass a |iter| with stamp of 0, then it
// will be treated as the first row of |model|.
bool RecursiveFind(GtkTreeModel* model, GtkTreeIter* iter, int target_id);
// Search helpers.
void PerformSearch();
void OnSearchTextChanged();
static void OnSearchTextChangedThunk(GtkWidget* search_entry,
BookmarkManagerGtk* bookmark_manager) {
bookmark_manager->OnSearchTextChanged();
}
// TreeView signal handlers.
static void OnLeftSelectionChanged(GtkTreeSelection* selection,
BookmarkManagerGtk* bookmark_manager);
static void OnRightSelectionChanged(GtkTreeSelection* selection,
BookmarkManagerGtk* bookmark_manager);
static void OnLeftTreeViewDragReceived(
GtkWidget* tree_view, GdkDragContext* context, gint x, gint y,
GtkSelectionData* selection_data, guint target_type, guint time,
BookmarkManagerGtk* bookmark_manager);
static gboolean OnLeftTreeViewDragMotion(GtkWidget* tree_view,
GdkDragContext* context, gint x, gint y, guint time,
BookmarkManagerGtk* bookmark_manager);
static void OnLeftTreeViewRowCollapsed(GtkTreeView* tree_view,
GtkTreeIter* iter, GtkTreePath* path,
BookmarkManagerGtk* bookmark_manager);
static void OnRightTreeViewDragGet(GtkWidget* tree_view,
GdkDragContext* context, GtkSelectionData* selection_data,
guint target_type, guint time, BookmarkManagerGtk* bookmark_manager);
static void OnRightTreeViewDragReceived(
GtkWidget* tree_view, GdkDragContext* context, gint x, gint y,
GtkSelectionData* selection_data, guint target_type, guint time,
BookmarkManagerGtk* bookmark_manager);
static void OnRightTreeViewDragBegin(GtkWidget* tree_view,
GdkDragContext* drag_context, BookmarkManagerGtk* bookmark_manager);
static gboolean OnRightTreeViewDragMotion(GtkWidget* tree_view,
GdkDragContext* context, gint x, gint y, guint time,
BookmarkManagerGtk* bookmark_manager);
static void OnRightTreeViewRowActivated(GtkTreeView* tree_view,
GtkTreePath* path, GtkTreeViewColumn* column,
BookmarkManagerGtk* bookmark_manager);
static void OnRightTreeViewFocusIn(GtkTreeView* tree_view,
GdkEventFocus* event, BookmarkManagerGtk* bookmark_manager);
static void OnLeftTreeViewFocusIn(GtkTreeView* tree_view,
GdkEventFocus* event, BookmarkManagerGtk* bookmark_manager);
static gboolean OnRightTreeViewButtonPress(GtkWidget* tree_view,
GdkEventButton* event, BookmarkManagerGtk* bookmark_manager);
static gboolean OnRightTreeViewMotion(GtkWidget* tree_view,
GdkEventMotion* event, BookmarkManagerGtk* bookmark_manager);
static gboolean OnTreeViewButtonRelease(GtkWidget* tree_view,
GdkEventButton* button, BookmarkManagerGtk* bookmark_manager);
// Tools menu item callbacks.
static void OnImportItemActivated(GtkMenuItem* menuitem,
BookmarkManagerGtk* bookmark_manager);
static void OnExportItemActivated(GtkMenuItem* menuitem,
BookmarkManagerGtk* bookmark_manager);
GtkWidget* window_;
GtkWidget* search_entry_;
Profile* profile_;
BookmarkModel* model_;
GtkWidget* left_tree_view_;
GtkWidget* right_tree_view_;
enum {
RIGHT_PANE_PIXBUF,
RIGHT_PANE_TITLE,
RIGHT_PANE_URL,
RIGHT_PANE_PATH,
RIGHT_PANE_ID,
RIGHT_PANE_NUM
};
GtkTreeStore* left_store_;
GtkListStore* right_store_;
GtkTreeViewColumn* path_column_;
scoped_ptr<BookmarkTableModel> right_tree_model_;
// The Organize menu item.
GtkWidget* organize_;
// The submenu the item pops up.
scoped_ptr<BookmarkContextMenu> organize_menu_;
// Whether the menu refers to the left selection.
bool organize_is_for_left_;
// Factory used for delaying search.
ScopedRunnableMethodFactory<BookmarkManagerGtk> search_factory_;
scoped_refptr<SelectFileDialog> select_file_dialog_;
// These two variables used for the workaround for http://crbug.com/15240.
// The last mouse down we got. Only valid while |delaying_mousedown| is true.
GdkEventButton mousedown_event_;
bool delaying_mousedown_;
};
#endif // CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_
|