1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_GTK_BACK_FORWARD_BUTTON_GTK_H_
6 #define CHROME_BROWSER_UI_GTK_BACK_FORWARD_BUTTON_GTK_H_
8 #include "base/compiler_specific.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/weak_ptr.h"
11 #include "chrome/browser/ui/gtk/custom_button.h"
12 #include "chrome/browser/ui/gtk/menu_gtk.h"
13 #include "ui/base/gtk/gtk_signal.h"
15 class BackForwardMenuModel
;
18 typedef struct _GtkWidget GtkWidget
;
20 // When clicked, these buttons will navigate forward or backward. When
21 // pressed and held, they show a dropdown menu of recent web sites.
22 class BackForwardButtonGtk
: MenuGtk::Delegate
{
24 BackForwardButtonGtk(Browser
* browser
, bool is_forward
);
25 virtual ~BackForwardButtonGtk();
27 // MenuGtk::Delegate implementation.
28 virtual void StoppedShowing() OVERRIDE
;
29 virtual bool AlwaysShowIconForCmd(int command_id
) const OVERRIDE
;
31 GtkWidget
* widget() { return button_
->widget(); }
34 // Executes the browser command.
35 CHROMEGTK_CALLBACK_0(BackForwardButtonGtk
, void, OnClick
);
37 // Starts a timer to show the dropdown menu.
38 CHROMEGTK_CALLBACK_1(BackForwardButtonGtk
, gboolean
, OnButtonPress
,
41 // If there is a timer to show the dropdown menu, and the mouse has moved
42 // sufficiently down the screen, cancel the timer and immediately show the
44 CHROMEGTK_CALLBACK_1(BackForwardButtonGtk
, gboolean
, OnMouseMove
,
47 // Shows the dropdown menu.
48 void ShowBackForwardMenu(int button
, guint32 event_time
);
50 // The menu gets reset every time it is shown.
51 scoped_ptr
<MenuGtk
> menu_
;
53 scoped_ptr
<CustomDrawButton
> button_
;
55 // The browser to which we will send commands.
58 // Whether this button is a forward button.
61 // The dropdown menu model.
62 scoped_ptr
<BackForwardMenuModel
> menu_model_
;
64 // The y position of the last mouse down event.
65 int y_position_of_last_press_
;
67 base::WeakPtrFactory
<BackForwardButtonGtk
> weak_factory_
;
69 DISALLOW_COPY_AND_ASSIGN(BackForwardButtonGtk
);
72 #endif // CHROME_BROWSER_UI_GTK_BACK_FORWARD_BUTTON_GTK_H_