2010-06-14 13:34:08 +00:00
|
|
|
/* GStreamer Editing Services
|
2010-06-30 15:02:10 +00:00
|
|
|
* Copyright (C) 2010 Brandon Lewis <brandon.lewis@collabora.co.uk>
|
|
|
|
* 2010 Nokia Corporation
|
2010-06-14 13:34:08 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-07-01 14:48:45 +00:00
|
|
|
* SECTION:ges-track-title-source
|
|
|
|
* @short_description: render stand-alone text titles
|
|
|
|
*
|
2010-06-14 13:34:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ges-internal.h"
|
2010-06-30 15:02:10 +00:00
|
|
|
#include "ges-track-object.h"
|
2010-06-14 13:34:08 +00:00
|
|
|
#include "ges-track-title-source.h"
|
2010-06-30 17:34:29 +00:00
|
|
|
#include "ges-track-video-test-source.h"
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-12-15 12:27:39 +00:00
|
|
|
G_DEFINE_TYPE (GESTrackTitleSource, ges_track_title_source,
|
|
|
|
GES_TYPE_TRACK_SOURCE);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-12-04 18:54:13 +00:00
|
|
|
struct _GESTrackTitleSourcePrivate
|
|
|
|
{
|
2011-01-06 11:04:53 +00:00
|
|
|
gchar *text;
|
|
|
|
gchar *font_desc;
|
|
|
|
GESTextHAlign halign;
|
|
|
|
GESTextVAlign valign;
|
2011-08-09 17:13:37 +00:00
|
|
|
guint32 color;
|
2011-08-09 17:15:18 +00:00
|
|
|
gdouble xpos;
|
|
|
|
gdouble ypos;
|
2011-01-06 11:04:53 +00:00
|
|
|
GstElement *text_el;
|
|
|
|
GstElement *background_el;
|
2010-12-04 18:54:13 +00:00
|
|
|
};
|
|
|
|
|
2010-06-30 15:02:10 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
};
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-12-15 12:27:39 +00:00
|
|
|
static void ges_track_title_source_dispose (GObject * object);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-12-15 12:27:39 +00:00
|
|
|
static void ges_track_title_source_get_property (GObject * object, guint
|
2010-06-30 15:02:10 +00:00
|
|
|
property_id, GValue * value, GParamSpec * pspec);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-12-15 12:27:39 +00:00
|
|
|
static void ges_track_title_source_set_property (GObject * object, guint
|
2010-06-30 15:02:10 +00:00
|
|
|
property_id, const GValue * value, GParamSpec * pspec);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-12-15 12:27:39 +00:00
|
|
|
static GstElement *ges_track_title_source_create_element (GESTrackObject *
|
|
|
|
self);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
|
|
|
static void
|
2010-12-15 12:27:39 +00:00
|
|
|
ges_track_title_source_class_init (GESTrackTitleSourceClass * klass)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
2010-12-10 11:15:54 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GESTrackObjectClass *bg_class = GES_TRACK_OBJECT_CLASS (klass);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-12-04 18:54:13 +00:00
|
|
|
g_type_class_add_private (klass, sizeof (GESTrackTitleSourcePrivate));
|
|
|
|
|
2010-12-15 12:27:39 +00:00
|
|
|
object_class->get_property = ges_track_title_source_get_property;
|
|
|
|
object_class->set_property = ges_track_title_source_set_property;
|
|
|
|
object_class->dispose = ges_track_title_source_dispose;
|
2010-06-30 15:02:10 +00:00
|
|
|
|
2010-12-15 12:27:39 +00:00
|
|
|
bg_class->create_element = ges_track_title_source_create_element;
|
2010-06-30 15:02:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-12-15 12:27:39 +00:00
|
|
|
ges_track_title_source_init (GESTrackTitleSource * self)
|
2010-06-30 15:02:10 +00:00
|
|
|
{
|
2010-12-04 18:54:13 +00:00
|
|
|
self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
|
|
|
|
GES_TYPE_TRACK_TITLE_SOURCE, GESTrackTitleSourcePrivate);
|
|
|
|
|
2011-01-06 11:04:53 +00:00
|
|
|
self->priv->text = NULL;
|
|
|
|
self->priv->font_desc = NULL;
|
|
|
|
self->priv->text_el = NULL;
|
|
|
|
self->priv->halign = DEFAULT_HALIGNMENT;
|
|
|
|
self->priv->valign = DEFAULT_VALIGNMENT;
|
2011-08-09 17:13:37 +00:00
|
|
|
self->priv->color = G_MAXUINT32;
|
2011-08-09 17:15:18 +00:00
|
|
|
self->priv->xpos = 0.5;
|
|
|
|
self->priv->ypos = 0.5;
|
2011-01-06 11:04:53 +00:00
|
|
|
self->priv->background_el = NULL;
|
2010-06-14 13:34:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-12-15 12:27:39 +00:00
|
|
|
ges_track_title_source_dispose (GObject * object)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
2010-06-30 15:29:21 +00:00
|
|
|
GESTrackTitleSource *self = GES_TRACK_TITLE_SOURCE (object);
|
2011-01-06 11:04:53 +00:00
|
|
|
if (self->priv->text) {
|
|
|
|
g_free (self->priv->text);
|
2010-06-30 15:02:10 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 11:04:53 +00:00
|
|
|
if (self->priv->font_desc) {
|
|
|
|
g_free (self->priv->font_desc);
|
2010-06-30 15:02:10 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 11:04:53 +00:00
|
|
|
if (self->priv->text_el) {
|
|
|
|
g_object_unref (self->priv->text_el);
|
|
|
|
self->priv->text_el = NULL;
|
2010-06-30 15:02:10 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 11:04:53 +00:00
|
|
|
if (self->priv->background_el) {
|
|
|
|
g_object_unref (self->priv->background_el);
|
|
|
|
self->priv->background_el = NULL;
|
2010-06-30 15:02:10 +00:00
|
|
|
}
|
|
|
|
|
2010-12-15 12:27:39 +00:00
|
|
|
G_OBJECT_CLASS (ges_track_title_source_parent_class)->dispose (object);
|
2010-06-14 13:34:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-12-15 12:27:39 +00:00
|
|
|
ges_track_title_source_get_property (GObject * object,
|
2010-06-30 15:02:10 +00:00
|
|
|
guint property_id, GValue * value, GParamSpec * pspec)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
|
|
|
switch (property_id) {
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-12-15 12:27:39 +00:00
|
|
|
ges_track_title_source_set_property (GObject * object,
|
2010-06-30 15:02:10 +00:00
|
|
|
guint property_id, const GValue * value, GParamSpec * pspec)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
|
|
|
switch (property_id) {
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-30 15:02:10 +00:00
|
|
|
static GstElement *
|
2010-12-15 12:27:39 +00:00
|
|
|
ges_track_title_source_create_element (GESTrackObject * object)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
2010-06-30 15:29:21 +00:00
|
|
|
GESTrackTitleSource *self = GES_TRACK_TITLE_SOURCE (object);
|
2011-01-06 11:04:53 +00:00
|
|
|
GESTrackTitleSourcePrivate *priv = self->priv;
|
2010-06-30 15:02:10 +00:00
|
|
|
GstElement *topbin, *background, *text;
|
|
|
|
GstPad *src;
|
|
|
|
|
|
|
|
topbin = gst_bin_new ("titlesrc-bin");
|
|
|
|
background = gst_element_factory_make ("videotestsrc", "titlesrc-bg");
|
|
|
|
|
|
|
|
text = gst_element_factory_make ("textoverlay", "titlsrc-text");
|
2011-01-06 11:04:53 +00:00
|
|
|
if (priv->text) {
|
|
|
|
g_object_set (text, "text", priv->text, NULL);
|
2010-06-30 15:02:10 +00:00
|
|
|
}
|
2011-01-06 11:04:53 +00:00
|
|
|
if (priv->font_desc) {
|
|
|
|
g_object_set (text, "font-desc", priv->font_desc, NULL);
|
2010-06-30 15:02:10 +00:00
|
|
|
}
|
2011-01-06 11:04:53 +00:00
|
|
|
g_object_set (text, "valignment", (gint) priv->valign, "halignment",
|
|
|
|
(gint) priv->halign, NULL);
|
2010-06-30 15:02:10 +00:00
|
|
|
|
2010-07-02 10:48:11 +00:00
|
|
|
g_object_set (background, "pattern", (gint) GES_VIDEO_TEST_PATTERN_BLACK,
|
2010-06-30 15:02:10 +00:00
|
|
|
NULL);
|
2011-08-09 17:13:37 +00:00
|
|
|
g_object_set (text, "color", (guint32) self->priv->color, NULL);
|
2011-08-09 17:15:18 +00:00
|
|
|
g_object_set (text, "xpos", (gdouble) self->priv->xpos, NULL);
|
|
|
|
g_object_set (text, "ypos", (gdouble) self->priv->ypos, NULL);
|
2010-06-30 15:02:10 +00:00
|
|
|
|
|
|
|
gst_bin_add_many (GST_BIN (topbin), background, text, NULL);
|
|
|
|
|
2010-07-23 16:22:31 +00:00
|
|
|
gst_element_link_pads_full (background, "src", text, "video_sink",
|
2010-07-14 11:29:23 +00:00
|
|
|
GST_PAD_LINK_CHECK_NOTHING);
|
2010-06-30 15:02:10 +00:00
|
|
|
|
|
|
|
src = gst_ghost_pad_new ("src", gst_element_get_static_pad (text, "src"));
|
|
|
|
gst_element_add_pad (topbin, src);
|
|
|
|
|
|
|
|
g_object_ref (text);
|
|
|
|
g_object_ref (background);
|
|
|
|
|
2011-01-06 11:04:53 +00:00
|
|
|
priv->text_el = text;
|
|
|
|
priv->background_el = background;
|
2010-06-30 15:02:10 +00:00
|
|
|
|
|
|
|
return topbin;
|
2010-06-14 13:34:08 +00:00
|
|
|
}
|
|
|
|
|
2010-06-30 15:02:10 +00:00
|
|
|
/**
|
2010-06-30 15:29:21 +00:00
|
|
|
* ges_track_title_source_set_text:
|
|
|
|
* @self: the #GESTrackTitleSource* to set text on
|
2010-06-30 15:02:10 +00:00
|
|
|
* @text: the text to render. an internal copy of this text will be
|
|
|
|
* made.
|
|
|
|
*
|
|
|
|
* Sets the text this track object will render.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_source_set_text (GESTrackTitleSource * self, const gchar * text)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
2011-01-06 11:04:53 +00:00
|
|
|
if (self->priv->text)
|
|
|
|
g_free (self->priv->text);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2011-08-09 17:13:37 +00:00
|
|
|
GST_DEBUG ("self:%p, text:%s", self, text);
|
|
|
|
|
2011-01-06 11:04:53 +00:00
|
|
|
self->priv->text = g_strdup (text);
|
|
|
|
if (self->priv->text_el)
|
|
|
|
g_object_set (self->priv->text_el, "text", text, NULL);
|
2010-06-30 15:02:10 +00:00
|
|
|
}
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2010-06-30 15:02:10 +00:00
|
|
|
/**
|
2010-06-30 15:29:21 +00:00
|
|
|
* ges_track_title_source_set_font_desc:
|
|
|
|
* @self: the #GESTrackTitleSource
|
2010-06-30 15:02:10 +00:00
|
|
|
* @font_desc: the pango font description
|
|
|
|
*
|
2011-01-06 11:04:53 +00:00
|
|
|
* Set the pango font description this source will use to render
|
|
|
|
* the text.
|
2010-06-30 15:02:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_source_set_font_desc (GESTrackTitleSource * self,
|
2010-06-30 15:02:10 +00:00
|
|
|
const gchar * font_desc)
|
|
|
|
{
|
2011-01-06 11:04:53 +00:00
|
|
|
if (self->priv->font_desc)
|
|
|
|
g_free (self->priv->font_desc);
|
2010-06-14 13:34:08 +00:00
|
|
|
|
2011-08-09 17:13:37 +00:00
|
|
|
GST_DEBUG ("self:%p, font_dec:%s", self, font_desc);
|
|
|
|
|
2011-01-06 11:04:53 +00:00
|
|
|
self->priv->font_desc = g_strdup (font_desc);
|
|
|
|
if (self->priv->text_el)
|
|
|
|
g_object_set (self->priv->text_el, "font-desc", font_desc, NULL);
|
2010-06-14 13:34:08 +00:00
|
|
|
}
|
|
|
|
|
2010-06-30 15:02:10 +00:00
|
|
|
/**
|
2011-01-06 11:04:53 +00:00
|
|
|
* ges_track_title_source_set_valignment:
|
2010-06-30 15:29:21 +00:00
|
|
|
* @self: the #GESTrackTitleSource* to set text on
|
2010-07-02 10:25:58 +00:00
|
|
|
* @valign: #GESTextVAlign
|
2010-06-30 15:02:10 +00:00
|
|
|
*
|
|
|
|
* Sets the vertical aligment of the text.
|
|
|
|
*/
|
|
|
|
void
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_source_set_valignment (GESTrackTitleSource * self,
|
2010-07-02 10:25:58 +00:00
|
|
|
GESTextVAlign valign)
|
2010-06-30 15:02:10 +00:00
|
|
|
{
|
2011-08-09 17:13:37 +00:00
|
|
|
GST_DEBUG ("self:%p, valign:%d", self, valign);
|
|
|
|
|
2011-01-06 11:04:53 +00:00
|
|
|
self->priv->valign = valign;
|
|
|
|
if (self->priv->text_el)
|
|
|
|
g_object_set (self->priv->text_el, "valignment", valign, NULL);
|
2010-06-30 15:02:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-01-06 11:04:53 +00:00
|
|
|
* ges_track_title_source_set_halignment:
|
2010-06-30 15:29:21 +00:00
|
|
|
* @self: the #GESTrackTitleSource* to set text on
|
2010-07-02 10:25:58 +00:00
|
|
|
* @halign: #GESTextHAlign
|
2010-06-30 15:02:10 +00:00
|
|
|
*
|
|
|
|
* Sets the vertical aligment of the text.
|
|
|
|
*/
|
|
|
|
void
|
2010-06-30 15:29:21 +00:00
|
|
|
ges_track_title_source_set_halignment (GESTrackTitleSource * self,
|
2010-07-02 10:25:58 +00:00
|
|
|
GESTextHAlign halign)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
2011-08-09 17:13:37 +00:00
|
|
|
GST_DEBUG ("self:%p, halign:%d", self, halign);
|
|
|
|
|
2011-01-06 11:04:53 +00:00
|
|
|
self->priv->halign = halign;
|
|
|
|
if (self->priv->text_el)
|
|
|
|
g_object_set (self->priv->text_el, "halignment", halign, NULL);
|
|
|
|
}
|
|
|
|
|
2011-08-09 17:13:37 +00:00
|
|
|
/**
|
|
|
|
* ges_track_title_source_set_color:
|
|
|
|
* @self: the #GESTrackTitleSource* to set
|
|
|
|
* @color: the color @self is being set to
|
|
|
|
*
|
|
|
|
* Sets the color of the text.
|
2011-08-13 15:51:48 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.2
|
2011-08-09 17:13:37 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
ges_track_title_source_set_color (GESTrackTitleSource * self, guint32 color)
|
|
|
|
{
|
|
|
|
GST_DEBUG ("self:%p, color:%d", self, color);
|
|
|
|
|
|
|
|
self->priv->color = color;
|
|
|
|
if (self->priv->text_el)
|
|
|
|
g_object_set (self->priv->text_el, "color", color, NULL);
|
|
|
|
}
|
|
|
|
|
2011-08-09 17:15:18 +00:00
|
|
|
/**
|
|
|
|
* ges_track_title_source_set_xpos:
|
|
|
|
* @self: the #GESTrackTitleSource* to set
|
|
|
|
* @position: the horizontal position @self is being set to
|
|
|
|
*
|
|
|
|
* Sets the horizontal position of the text.
|
2011-08-13 15:51:48 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.2
|
2011-08-09 17:15:18 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
ges_track_title_source_set_xpos (GESTrackTitleSource * self, gdouble position)
|
|
|
|
{
|
|
|
|
GST_DEBUG ("self:%p, xpos:%f", self, position);
|
|
|
|
|
|
|
|
self->priv->xpos = position;
|
|
|
|
if (self->priv->text_el)
|
|
|
|
g_object_set (self->priv->text_el, "xpos", position, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ges_track_title_source_set_ypos:
|
|
|
|
* @self: the #GESTrackTitleSource* to set
|
|
|
|
* @position: the color @self is being set to
|
|
|
|
*
|
|
|
|
* Sets the vertical position of the text.
|
2011-08-13 15:51:48 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.2
|
2011-08-09 17:15:18 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
ges_track_title_source_set_ypos (GESTrackTitleSource * self, gdouble position)
|
|
|
|
{
|
|
|
|
GST_DEBUG ("self:%p, ypos:%d", self, position);
|
|
|
|
|
|
|
|
self->priv->ypos = position;
|
|
|
|
if (self->priv->text_el)
|
|
|
|
g_object_set (self->priv->text_el, "ypos", position, NULL);
|
|
|
|
}
|
|
|
|
|
2011-01-06 11:04:53 +00:00
|
|
|
/**
|
|
|
|
* ges_track_title_source_get_text:
|
|
|
|
* @source: a #GESTrackTitleSource
|
|
|
|
*
|
2011-01-10 13:28:35 +00:00
|
|
|
* Get the text currently set on the @source.
|
|
|
|
*
|
2011-01-06 11:04:53 +00:00
|
|
|
* Returns: (transfer none): The text currently set on the @source.
|
|
|
|
*/
|
|
|
|
const gchar *
|
|
|
|
ges_track_title_source_get_text (GESTrackTitleSource * source)
|
|
|
|
{
|
|
|
|
return source->priv->text;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ges_track_title_source_get_font_desc:
|
|
|
|
* @source: a #GESTrackTitleSource
|
|
|
|
*
|
2011-01-10 13:28:35 +00:00
|
|
|
* Get the pango font description used by @source.
|
|
|
|
*
|
2011-01-06 11:04:53 +00:00
|
|
|
* Returns: (transfer none): The pango font description used by this
|
|
|
|
* @source.
|
|
|
|
*/
|
|
|
|
const gchar *
|
|
|
|
ges_track_title_source_get_font_desc (GESTrackTitleSource * source)
|
|
|
|
{
|
|
|
|
return source->priv->font_desc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ges_track_title_source_get_halignment:
|
|
|
|
* @source: a #GESTrackTitleSource
|
|
|
|
*
|
2011-08-09 17:13:37 +00:00
|
|
|
* Get the horizontal aligment used by @source.
|
2011-01-10 13:28:35 +00:00
|
|
|
*
|
2011-08-09 17:13:37 +00:00
|
|
|
* Returns: The horizontal aligment used by @source.
|
2011-01-06 11:04:53 +00:00
|
|
|
*/
|
|
|
|
GESTextHAlign
|
|
|
|
ges_track_title_source_get_halignment (GESTrackTitleSource * source)
|
|
|
|
{
|
|
|
|
return source->priv->halign;
|
2010-06-14 13:34:08 +00:00
|
|
|
}
|
|
|
|
|
2011-01-06 11:04:53 +00:00
|
|
|
/**
|
|
|
|
* ges_track_title_source_get_valignment:
|
|
|
|
* @source: a #GESTrackTitleSource
|
|
|
|
*
|
2011-08-09 17:13:37 +00:00
|
|
|
* Get the vertical aligment used by @source.
|
2011-01-10 13:28:35 +00:00
|
|
|
*
|
2011-08-09 17:13:37 +00:00
|
|
|
* Returns: The vertical aligment used by @source.
|
2011-01-06 11:04:53 +00:00
|
|
|
*/
|
|
|
|
GESTextVAlign
|
|
|
|
ges_track_title_source_get_valignment (GESTrackTitleSource * source)
|
|
|
|
{
|
|
|
|
return source->priv->valign;
|
|
|
|
}
|
|
|
|
|
2011-08-09 17:13:37 +00:00
|
|
|
/**
|
|
|
|
* ges_track_title_source_get_color:
|
|
|
|
* @source: a #GESTrackTitleSource
|
|
|
|
*
|
|
|
|
* Get the color used by @source.
|
|
|
|
*
|
|
|
|
* Returns: The color used by @source.
|
2011-08-13 15:51:48 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.2
|
2011-08-09 17:13:37 +00:00
|
|
|
*/
|
|
|
|
const guint32
|
|
|
|
ges_track_title_source_get_color (GESTrackTitleSource * source)
|
|
|
|
{
|
|
|
|
return source->priv->color;
|
|
|
|
}
|
|
|
|
|
2011-08-09 17:15:18 +00:00
|
|
|
/**
|
|
|
|
* ges_track_title_source_get_xpos:
|
|
|
|
* @source: a #GESTrackTitleSource
|
|
|
|
*
|
|
|
|
* Get the horizontal position used by @source.
|
|
|
|
*
|
|
|
|
* Returns: The horizontal position used by @source.
|
2011-08-13 15:51:48 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.2
|
2011-08-09 17:15:18 +00:00
|
|
|
*/
|
|
|
|
const gdouble
|
|
|
|
ges_track_title_source_get_xpos (GESTrackTitleSource * source)
|
|
|
|
{
|
|
|
|
return source->priv->xpos;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ges_track_title_source_get_ypos:
|
|
|
|
* @source: a #GESTrackTitleSource
|
|
|
|
*
|
|
|
|
* Get the vertical position used by @source.
|
|
|
|
*
|
|
|
|
* Returns: The vertical position used by @source.
|
2011-08-13 15:51:48 +00:00
|
|
|
*
|
|
|
|
* Since: 0.10.2
|
2011-08-09 17:15:18 +00:00
|
|
|
*/
|
|
|
|
const gdouble
|
|
|
|
ges_track_title_source_get_ypos (GESTrackTitleSource * source)
|
|
|
|
{
|
|
|
|
return source->priv->ypos;
|
|
|
|
}
|
2011-01-06 11:04:53 +00:00
|
|
|
|
2011-01-10 13:28:35 +00:00
|
|
|
/**
|
|
|
|
* ges_track_title_source_new:
|
|
|
|
*
|
|
|
|
* Creates a new #GESTrackTitleSource.
|
|
|
|
*
|
|
|
|
* Returns: The newly created #GESTrackTitleSource, or %NULL if there was an
|
|
|
|
* error.
|
|
|
|
*/
|
2010-06-30 15:29:21 +00:00
|
|
|
GESTrackTitleSource *
|
|
|
|
ges_track_title_source_new (void)
|
2010-06-14 13:34:08 +00:00
|
|
|
{
|
2010-06-30 15:29:21 +00:00
|
|
|
return g_object_new (GES_TYPE_TRACK_TITLE_SOURCE, NULL);
|
2010-06-14 13:34:08 +00:00
|
|
|
}
|