Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: chrome/browser/gtk/bookmark_manager_gtk.h

Issue 160422: Remember/restore the bookmark manager pane position. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/gtk/bookmark_manager_gtk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.TIT 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.TIT
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 #ifndef CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_ 5 #ifndef CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_
6 #define CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_ 6 #define CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_
7 7
8 #include <gtk/gtk.h> 8 #include <gtk/gtk.h>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 gpointer self) { 272 gpointer self) {
273 return reinterpret_cast<BookmarkManagerGtk*>(self)-> 273 return reinterpret_cast<BookmarkManagerGtk*>(self)->
274 OnWindowConfigured(window, event); 274 OnWindowConfigured(window, event);
275 } 275 }
276 gboolean OnWindowConfigured(GtkWidget* window, GdkEventConfigure* event); 276 gboolean OnWindowConfigured(GtkWidget* window, GdkEventConfigure* event);
277 277
278 GtkWidget* window_; 278 GtkWidget* window_;
279 GtkWidget* search_entry_; 279 GtkWidget* search_entry_;
280 Profile* profile_; 280 Profile* profile_;
281 BookmarkModel* model_; 281 BookmarkModel* model_;
282 GtkWidget* paned_;
282 GtkWidget* left_tree_view_; 283 GtkWidget* left_tree_view_;
283 GtkWidget* right_tree_view_; 284 GtkWidget* right_tree_view_;
284 285
285 enum { 286 enum {
286 RIGHT_PANE_PIXBUF, 287 RIGHT_PANE_PIXBUF,
287 RIGHT_PANE_TITLE, 288 RIGHT_PANE_TITLE,
288 RIGHT_PANE_URL, 289 RIGHT_PANE_URL,
289 RIGHT_PANE_PATH, 290 RIGHT_PANE_PATH,
290 RIGHT_PANE_ID, 291 RIGHT_PANE_ID,
291 RIGHT_PANE_NUM 292 RIGHT_PANE_NUM
(...skipping 30 matching lines...) Expand all
322 // This is true while we are propagating a delayed mousedown. It is used to 323 // This is true while we are propagating a delayed mousedown. It is used to
323 // tell the button press handler to ignore the event. 324 // tell the button press handler to ignore the event.
324 bool sending_delayed_mousedown_; 325 bool sending_delayed_mousedown_;
325 326
326 // This is used to avoid recursively calling our right click handler. It is 327 // This is used to avoid recursively calling our right click handler. It is
327 // only true when a right click is already being handled. 328 // only true when a right click is already being handled.
328 bool ignore_rightclicks_; 329 bool ignore_rightclicks_;
329 }; 330 };
330 331
331 #endif // CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_ 332 #endif // CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/gtk/bookmark_manager_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698