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
|
/* -*- Mode: C; indent-tabs-mode: t -*- */
/*
* Copyright (C) 2010, 2011 Igalia S.L. <info@igalia.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* The Totem project hereby grant permission for non-GPL compatible GStreamer
* plugins to be used and distributed together with GStreamer and Totem. This
* permission are above and beyond the permissions granted by the GPL license
* Totem is covered by.
*
* See license_change file for details.
*/
#ifndef TOTEM_GRILO_H
#define TOTEM_GRILO_H
#include <gtk/gtk.h>
#include <totem.h>
G_BEGIN_DECLS
#define TOTEM_TYPE_GRILO (totem_grilo_get_type ())
#define TOTEM_GRILO(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TOTEM_TYPE_GRILO, TotemGrilo))
#define TOTEM_GRILO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TOTEM_TYPE_GRILO, TotemGriloClass))
#define TOTEM_IS_GRILO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TOTEM_TYPE_GRILO))
#define TOTEM_IS_GRILO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TOTEM_TYPE_GRILO))
#define TOTEM_GRILO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TOTEM_TYPE_GRILO, TotemGriloClass))
typedef struct _TotemGrilo TotemGrilo;
typedef struct _TotemGriloPrivate TotemGriloPrivate;
typedef struct _TotemGriloClass TotemGriloClass;
struct _TotemGrilo
{
/*< private >*/
GtkBox parent;
TotemGriloPrivate *priv;
};
struct _TotemGriloClass
{
GtkBoxClass parent_class;
};
typedef enum{
TOTEM_GRILO_PAGE_RECENT,
TOTEM_GRILO_PAGE_CHANNELS
} TotemGriloPage;
GType totem_grilo_get_type (void) G_GNUC_CONST;
GtkWidget* totem_grilo_new (TotemObject *totem,
GtkWidget *header);
void totem_grilo_start (TotemGrilo *self);
void totem_grilo_pause (TotemGrilo *self);
void totem_grilo_back_button_clicked (TotemGrilo *self);
gboolean totem_grilo_get_show_back_button (TotemGrilo *self);
void totem_grilo_set_current_page (TotemGrilo *self,
TotemGriloPage page);
TotemGriloPage totem_grilo_get_current_page (TotemGrilo *self);
gboolean totem_grilo_add_item_to_recent (TotemGrilo *self,
const char *uri,
const char *title,
gboolean is_web);
G_END_DECLS
#endif /* TOTEM_GRILO_H */
|