Added gst-plugins-base-subtitles0.10-0.10.34 for Meego Harmattan 1.2
[mafwsubrenderer] / gst-plugins-base-subtitles0.10 / ext / pango / gsttimeoverlay.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2005> Tim-Philipp Müller <tim@centricular.net>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21
22 #ifndef __GST_TIME_OVERLAY_H__
23 #define __GST_TIME_OVERLAY_H__
24
25 #include "gsttextoverlay.h"
26
27 G_BEGIN_DECLS
28
29 #define GST_TYPE_TIME_OVERLAY \
30   (gst_time_overlay_get_type())
31 #define GST_TIME_OVERLAY(obj) \
32   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_TIME_OVERLAY,GstTimeOverlay))
33 #define GST_TIME_OVERLAY_CLASS(klass) \
34   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_TIME_OVERLAY,GstTimeOverlayClass))
35 #define GST_IS_TIME_OVERLAY(obj) \
36   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TIME_OVERLAY))
37 #define GST_IS_TIME_OVERLAY_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TIME_OVERLAY))
39
40 typedef struct _GstTimeOverlay GstTimeOverlay;
41 typedef struct _GstTimeOverlayClass GstTimeOverlayClass;
42
43 /**
44  * GstTimeOverlay:
45  *
46  * Opaque timeoverlay data structure.
47  */
48 struct _GstTimeOverlay {
49   GstTextOverlay textoverlay;
50 };
51
52 struct _GstTimeOverlayClass {
53   GstTextOverlayClass parent_class;
54 };
55
56 GType gst_time_overlay_get_type (void);
57
58 G_END_DECLS
59
60 #endif /* __GST_TIME_OVERLAY_H__ */
61