summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/hover_controller_gtk.h
blob: 6867503f4b16cd21cddf4431fcee99b8787b83a5 (plain)
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
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_GTK_HOVER_CONTROLLER_GTK_H_
#define CHROME_BROWSER_GTK_HOVER_CONTROLLER_GTK_H_

#include <gtk/gtk.h>

#include "app/slide_animation.h"
#include "app/throb_animation.h"
#include "base/scoped_ptr.h"

// This class handles the "throbbing" of a GtkChromeButton. The visual effect
// of throbbing is created by painting partially transparent hover effects. It
// only works in non-gtk theme mode. This class mainly exists to glue an
// AnimationDelegate (C++ class) to a GtkChromeButton* (GTK/c object).
class HoverControllerGtk : public AnimationDelegate {
 public:
  virtual ~HoverControllerGtk();

  GtkWidget* button() { return button_; }

  // Throb for |cycles| cycles. This will override the current remaining
  // number of cycles. Note that a "cycle" is (somewhat unintuitively) half of
  // a complete throb revolution.
  void StartThrobbing(int cycles);

  // Get the HoverControllerGtk for a given GtkChromeButton*. It is an error
  // to call this on a widget that is not a GtkChromeButton*.
  static HoverControllerGtk* GetHoverControllerGtk(GtkWidget* button);

  // Creates a GtkChromeButton and adds a HoverControllerGtk for it.
  static GtkWidget* CreateChromeButton();

  // Stop throbbing and delete |this|.
  void Destroy();

 private:
  explicit HoverControllerGtk(GtkWidget* button);

  // Overridden from AnimationDelegate.
  virtual void AnimationProgressed(const Animation* animation);
  virtual void AnimationEnded(const Animation* animation);
  virtual void AnimationCanceled(const Animation* animation);

  static gboolean OnEnterThunk(GtkWidget* widget,
                               GdkEventCrossing* event,
                               HoverControllerGtk* hover_controller) {
    return hover_controller->OnEnter(widget, event);
  }
  gboolean OnEnter(GtkWidget* widget, GdkEventCrossing* event);

  static gboolean OnLeaveThunk(GtkWidget* widget,
                               GdkEventCrossing* event,
                               HoverControllerGtk* hover_controller) {
    return hover_controller->OnLeave(widget, event);
  }
  gboolean OnLeave(GtkWidget* widget, GdkEventCrossing* event);

  static void OnButtonDestroyThunk(GtkWidget* widget,
                                   HoverControllerGtk* hover_controller) {
    hover_controller->OnButtonDestroy(widget);
  }
  void OnButtonDestroy(GtkWidget* widget);

  ThrobAnimation throb_animation_;
  SlideAnimation hover_animation_;
  GtkWidget* button_;

  DISALLOW_COPY_AND_ASSIGN(HoverControllerGtk);
};

#endif  // CHROME_BROWSER_GTK_HOVER_CONTROLLER_GTK_H_