mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
GESTimelineTextOverlay inherits from GESTimelineOverlay
This commit is contained in:
parent
948dd9417a
commit
aafd4d095a
2 changed files with 6 additions and 6 deletions
|
@ -35,7 +35,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
G_DEFINE_TYPE (GESTimelineTextOverlay, ges_tl_text_overlay,
|
G_DEFINE_TYPE (GESTimelineTextOverlay, ges_tl_text_overlay,
|
||||||
GES_TYPE_TIMELINE_OBJECT);
|
GES_TYPE_TIMELINE_OVERLAY);
|
||||||
|
|
||||||
#define DEFAULT_PROP_TEXT ""
|
#define DEFAULT_PROP_TEXT ""
|
||||||
#define DEFAULT_PROP_FONT_DESC DEFAULT_FONT_DESC
|
#define DEFAULT_PROP_FONT_DESC DEFAULT_FONT_DESC
|
||||||
|
|
|
@ -18,12 +18,12 @@
|
||||||
* Boston, MA 02111-1307, USA.
|
* Boston, MA 02111-1307, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _GES_TL_OVERLAY
|
#ifndef _GES_TIMELINE_TEXT_OVERLAY
|
||||||
#define _GES_TL_OVERLAY
|
#define _GES_TIMELINE_TEXT_OVERLAY
|
||||||
|
|
||||||
#include <glib-object.h>
|
#include <glib-object.h>
|
||||||
#include <ges/ges-types.h>
|
#include <ges/ges-types.h>
|
||||||
#include <ges/ges-timeline-object.h>
|
#include <ges/ges-timeline-overlay.h>
|
||||||
#include <ges/ges-track.h>
|
#include <ges/ges-track.h>
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
@ -52,7 +52,7 @@ G_BEGIN_DECLS
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct _GESTimelineTextOverlay {
|
struct _GESTimelineTextOverlay {
|
||||||
GESTimelineObject parent;
|
GESTimelineOverlay parent;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
gboolean mute;
|
gboolean mute;
|
||||||
|
@ -68,7 +68,7 @@ struct _GESTimelineTextOverlay {
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct _GESTimelineTextOverlayClass {
|
struct _GESTimelineTextOverlayClass {
|
||||||
GESTimelineObjectClass parent_class;
|
GESTimelineOverlayClass parent_class;
|
||||||
|
|
||||||
/*< public >*/
|
/*< public >*/
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue