blob: 054e9ec646f85179a5752ad7a1252c71aa0e28f8 (
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
75
76
77
78
79
80
81
82
83
|
// Copyright (c) 2009 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.
//
// A helper class for animating the display of native widget content.
// Currently only handle vertical sliding, but could be extended to handle
// horizontal slides or other types of animations.
#ifndef CHROME_BROWSER_GTK_SLIDE_ANIMATOR_GTK_H_
#define CHROME_BROWSER_GTK_SLIDE_ANIMATOR_GTK_H_
#include "base/scoped_ptr.h"
#include "chrome/common/animation.h"
#include "chrome/common/owned_widget_gtk.h"
class SlideAnimation;
typedef struct _GtkWidget GtkWidget;
class SlideAnimatorGtk : public AnimationDelegate {
public:
class Delegate {
public:
// Called when a call to Close() finishes animating.
virtual void Closed() = 0;
};
enum Direction {
DOWN,
UP
};
// |child| is the widget we pack into |widget_|.
// |direction| indicates which side the contents will appear to come from.
// |duration| is the duration of the slide in milliseconds, or 0 for default.
// |linear| controls how the animation progresses. If true, the
// velocity of the slide is constant over time, otherwise it goes a bit faster
// at the beginning and slows to a halt.
// |delegate| may be NULL.
SlideAnimatorGtk(GtkWidget* child,
Direction direction,
int duration,
bool linear,
Delegate* delegate);
virtual ~SlideAnimatorGtk();
GtkWidget* widget() { return widget_.get(); }
// Slide open.
void Open();
// Immediately show the widget.
void OpenWithoutAnimation();
// Slide shut.
void Close();
// Returns whether the widget is visible.
bool IsShowing();
// AnimationDelegate implementation.
void AnimationProgressed(const Animation* animation);
void AnimationEnded(const Animation* animation);
private:
scoped_ptr<SlideAnimation> animation_;
// The top level widget of the SlideAnimatorGtk. It is a GtkFixed.
OwnedWidgetGtk widget_;
// The widget passed to us at construction time, and the only direct child of
// |widget_|.
GtkWidget* child_;
// The direction of the slide.
Direction direction_;
// The object to inform about certain events. It may be NULL.
Delegate* delegate_;
};
#endif // CHROME_BROWSER_GTK_SLIDE_ANIMATOR_GTK_H_
|