| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |