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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 // The last mouse down we got. Only valid while |delaying_mousedown| is true. | 333 // The last mouse down we got. Only valid while |delaying_mousedown| is true. |
334 GdkEventButton mousedown_event_; | 334 GdkEventButton mousedown_event_; |
335 bool delaying_mousedown_; | 335 bool delaying_mousedown_; |
336 // This is true while we are propagating a delayed mousedown. It is used to | 336 // This is true while we are propagating a delayed mousedown. It is used to |
337 // tell the button press handler to ignore the event. | 337 // tell the button press handler to ignore the event. |
338 bool sending_delayed_mousedown_; | 338 bool sending_delayed_mousedown_; |
339 | 339 |
340 // This is used to avoid recursively calling our right click handler. It is | 340 // This is used to avoid recursively calling our right click handler. It is |
341 // only true when a right click is already being handled. | 341 // only true when a right click is already being handled. |
342 bool ignore_rightclicks_; | 342 bool ignore_rightclicks_; |
| 343 |
| 344 GtkAccelGroup* accel_group_; |
343 }; | 345 }; |
344 | 346 |
345 #endif // CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_ | 347 #endif // CHROME_BROWSER_GTK_BOOKMARK_MANAGER_GTK_H_ |
OLD | NEW |