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
|
// 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 "chrome/browser/bookmarks/bookmark_model.h"
class BookmarkModel;
class Profile;
class BookmarkManagerGtk : public BookmarkModelObserver {
public:
virtual ~BookmarkManagerGtk();
Profile* profile() { return profile_; }
// Show the node in the tree.
static void SelectInTree(BookmarkNode* node);
// Shows the bookmark manager. Only one bookmark manager exists.
static void Show(Profile* profile);
// BookmarkModelObserver implementation.
virtual void Loaded(BookmarkModel* model);
virtual void BookmarkModelBeingDeleted(BookmarkModel* model);
// TODO(estade): Implement these.
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) {}
private:
explicit BookmarkManagerGtk(Profile* profile);
void InitWidgets();
GtkWidget* MakeLeftPane();
GtkWidget* MakeRightPane();
// 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.
void BuildRightStore();
// Get the node from |model| at |iter|.
BookmarkNode* GetNodeAt(GtkTreeModel* model, GtkTreeIter* iter);
// Get the node selected in one of the tree views.
BookmarkNode* GetSelectedNode(GtkTreeSelection*);
// Stick node in the store that backs the right-side tree view.
void AppendNodeToRightStore(BookmarkNode* node, GtkTreeIter* iter);
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 this to temporarily disable updating the right store. When this is
// called again, the right store will be updated once.
void ToggleUpdatesToRightStore();
static void OnLeftSelectionChanged(GtkTreeSelection* selection,
BookmarkManagerGtk* bookmark_manager);
static void OnTreeViewDragGet(GtkWidget* tree_view, GdkDragContext* context,
GtkSelectionData* selection_data,
guint target_type, guint time,
BookmarkManagerGtk* bookmark_manager);
static void OnTreeViewDragReceived(
GtkWidget* tree_view, GdkDragContext* context, gint x, gint y,
GtkSelectionData* selection_data, guint target_type, guint time,
BookmarkManagerGtk* bookmark_manager);
GtkWidget* window_;
Profile* profile_;
BookmarkModel* model_;
GtkWidget* left_tree_view_;
GtkWidget* right_tree_view_;
enum {
RIGHT_PANE_PIXBUF,
RIGHT_PANE_TITLE,
RIGHT_PANE_URL,
RIGHT_PANE_ID,
RIGHT_PANE_NUM
};
GtkTreeStore* left_store_;
GtkListStore* right_store_;
bool update_right_store_;
};
#endif // CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_
|