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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
|
/* GStreamer Editing Services
* Copyright (C) 2009 Edward Hervey <edward.hervey@collabora.co.uk>
* 2009 Nokia Corporation
*
* 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., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
/**
* SECTION:gestitleclip
* @title: GESTitleClip
* @short_description: Render stand-alone titles in GESLayer.
*
* Renders the given text in the specified font, at specified position, and
* with the specified background pattern.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "ges-internal.h"
#include "ges-title-clip.h"
#include "ges-source-clip.h"
#include "ges-track-element.h"
#include "ges-title-source.h"
#include <string.h>
#define DEFAULT_TEXT ""
#define DEFAULT_FONT_DESC "Serif 36"
#define GES_TITLE_CLIP_VALIGN_TYPE (ges_title_clip_valign_get_type())
#define GES_TITLE_CLIP_HALIGN_TYPE (ges_title_clip_halign_get_type())
struct _GESTitleClipPrivate
{
GSList *track_titles;
};
enum
{
PROP_0,
PROP_TEXT,
PROP_FONT_DESC,
PROP_HALIGNMENT,
PROP_VALIGNMENT,
PROP_COLOR,
PROP_BACKGROUND,
PROP_XPOS,
PROP_YPOS,
};
G_DEFINE_TYPE_WITH_PRIVATE (GESTitleClip, ges_title_clip, GES_TYPE_SOURCE_CLIP);
static GESTrackElement
* ges_title_clip_create_track_element (GESClip * clip, GESTrackType type);
static void _child_added (GESContainer * container,
GESTimelineElement * element);
static void _child_removed (GESContainer * container,
GESTimelineElement * element);
static void
ges_title_clip_get_property (GObject * object, guint property_id,
GValue * value, GParamSpec * pspec)
{
GESTimelineElement *child, *tmpsrc = NULL;
GESTitleClipPrivate *priv = GES_TITLE_CLIP (object)->priv;
if (!priv->track_titles)
child = tmpsrc = GES_TIMELINE_ELEMENT (ges_title_source_new ());
else
child = priv->track_titles->data;
switch (property_id) {
/* Falltrough all over */
case PROP_TEXT:
case PROP_FONT_DESC:
case PROP_HALIGNMENT:
case PROP_VALIGNMENT:
case PROP_COLOR:
case PROP_BACKGROUND:
case PROP_XPOS:
case PROP_YPOS:
ges_timeline_element_get_child_property (child, pspec->name, value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}
if (tmpsrc)
g_object_unref (tmpsrc);
}
static void
ges_title_clip_set_property (GObject * object, guint property_id,
const GValue * value, GParamSpec * pspec)
{
switch (property_id) {
case PROP_TEXT:
case PROP_FONT_DESC:
case PROP_HALIGNMENT:
case PROP_VALIGNMENT:
case PROP_COLOR:
case PROP_BACKGROUND:
case PROP_XPOS:
case PROP_YPOS:
ges_timeline_element_set_child_property (GES_TIMELINE_ELEMENT (object),
pspec->name, value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}
}
static void
ges_title_clip_dispose (GObject * object)
{
G_OBJECT_CLASS (ges_title_clip_parent_class)->dispose (object);
}
static void
ges_title_clip_class_init (GESTitleClipClass * klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GESClipClass *clip_class = GES_CLIP_CLASS (klass);
GESContainerClass *container_class = GES_CONTAINER_CLASS (klass);
object_class->get_property = ges_title_clip_get_property;
object_class->set_property = ges_title_clip_set_property;
object_class->dispose = ges_title_clip_dispose;
/**
* GESTitleClip:text:
*
* The text to diplay
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
* #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
g_object_class_install_property (object_class, PROP_TEXT,
g_param_spec_string ("text", "Text", "The text to display",
DEFAULT_TEXT, G_PARAM_READWRITE | G_PARAM_CONSTRUCT |
GES_PARAM_NO_SERIALIZATION));
/**
* GESTitleClip:font-desc:
*
* Pango font description string
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
* #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_FONT_DESC,
g_param_spec_string ("font-desc", "font description",
"Pango font description of font to be used for rendering. "
"See documentation of pango_font_description_from_string "
"for syntax.", DEFAULT_FONT_DESC,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS |
GES_PARAM_NO_SERIALIZATION));
/**
* GESTitleClip:valignment:
*
* Vertical alignent of the text
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
* #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_VALIGNMENT,
g_param_spec_enum ("valignment", "vertical alignment",
"Vertical alignment of the text", GES_TEXT_VALIGN_TYPE,
DEFAULT_VALIGNMENT,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS |
GES_PARAM_NO_SERIALIZATION));
/**
* GESTitleClip:halignment:
*
* Horizontal alignment of the text
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
* #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_HALIGNMENT,
g_param_spec_enum ("halignment", "horizontal alignment",
"Horizontal alignment of the text",
GES_TEXT_HALIGN_TYPE, DEFAULT_HALIGNMENT,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS |
GES_PARAM_NO_SERIALIZATION));
clip_class->create_track_element = ges_title_clip_create_track_element;
container_class->child_added = _child_added;
container_class->child_removed = _child_removed;
/**
* GESTitleClip:color:
*
* The color of the text
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
* #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
g_object_class_install_property (object_class, PROP_COLOR,
g_param_spec_uint ("color", "Color", "The color of the text",
0, G_MAXUINT32, G_MAXUINT32, G_PARAM_READWRITE | G_PARAM_CONSTRUCT |
GES_PARAM_NO_SERIALIZATION));
/**
* GESTitleClip:background:
*
* The background of the text
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
* #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
g_object_class_install_property (object_class, PROP_BACKGROUND,
g_param_spec_uint ("background", "Background",
"The background of the text", 0, G_MAXUINT32, G_MAXUINT32,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | GES_PARAM_NO_SERIALIZATION));
/**
* GESTitleClip:xpos:
*
* The horizontal position of the text
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
* #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
g_object_class_install_property (object_class, PROP_XPOS,
g_param_spec_double ("xpos", "Xpos", "The horizontal position",
0, 1, 0.5, G_PARAM_READWRITE | G_PARAM_CONSTRUCT
| GES_PARAM_NO_SERIALIZATION));
/**
* GESTitleClip:ypos:
*
* The vertical position of the text
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties or
* #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
g_object_class_install_property (object_class, PROP_YPOS,
g_param_spec_double ("ypos", "Ypos", "The vertical position",
0, 1, 0.5, G_PARAM_READWRITE | G_PARAM_CONSTRUCT
| GES_PARAM_NO_SERIALIZATION));
}
static void
ges_title_clip_init (GESTitleClip * self)
{
self->priv = ges_title_clip_get_instance_private (self);
GES_TIMELINE_ELEMENT (self)->duration = 0;
/* Not 100% required since a new gobject's content will always be memzero'd */
}
/**
* ges_title_clip_set_text:
* @self: the #GESTitleClip* to set text on
* @text: (nullable): the text to render. an internal copy of this text will be
* made.
*
* Sets the text this clip will render.
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
void
ges_title_clip_set_text (GESTitleClip * self, const gchar * text)
{
GSList *tmp;
GST_DEBUG_OBJECT (self, "text:%s", text);
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
ges_timeline_element_set_child_properties (tmp->data, "text", text, NULL);
}
}
/**
* ges_title_clip_set_font_desc:
* @self: the #GESTitleClip*
* @font_desc: (nullable): the pango font description
*
* Sets the pango font description of the text.
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
void
ges_title_clip_set_font_desc (GESTitleClip * self, const gchar * font_desc)
{
GSList *tmp;
GST_DEBUG_OBJECT (self, "font_desc:%s", font_desc);
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
ges_timeline_element_set_child_properties (tmp->data,
"font-desc", font_desc, NULL);
}
}
/**
* ges_title_clip_set_halignment:
* @self: the #GESTitleClip* to set horizontal alignement of text on
* @halign: #GESTextHAlign
*
* Sets the horizontal aligment of the text.
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
void
ges_title_clip_set_halignment (GESTitleClip * self, GESTextHAlign halign)
{
GSList *tmp;
GST_DEBUG_OBJECT (self, "halign:%d", halign);
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
ges_timeline_element_set_child_properties (tmp->data,
"halignment", halign, NULL);
}
}
/**
* ges_title_clip_set_valignment:
* @self: the #GESTitleClip* to set vertical alignement of text on
* @valign: #GESTextVAlign
*
* Sets the vertical aligment of the text.
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
void
ges_title_clip_set_valignment (GESTitleClip * self, GESTextVAlign valign)
{
GSList *tmp;
GST_DEBUG_OBJECT (self, "valign:%d", valign);
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
ges_timeline_element_set_child_properties (tmp->data,
"valignment", valign, NULL);
}
}
/**
* ges_title_clip_set_color:
* @self: the #GESTitleClip* to set
* @color: The color @self is being set to
*
* Sets the color of the text.
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
void
ges_title_clip_set_color (GESTitleClip * self, guint32 color)
{
GSList *tmp;
GST_DEBUG_OBJECT (self, "color:%d", color);
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
ges_timeline_element_set_child_properties (tmp->data, "color", color, NULL);
}
}
/**
* ges_title_clip_set_background:
* @self: the #GESTitleClip* to set
* @background: The color @self is being set to
*
* Sets the background of the text.
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
void
ges_title_clip_set_background (GESTitleClip * self, guint32 background)
{
GSList *tmp;
GST_DEBUG_OBJECT (self, "background:%d", background);
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
ges_timeline_element_set_child_properties (tmp->data,
"foreground-color", background, NULL);
}
}
/**
* ges_title_clip_set_xpos:
* @self: the #GESTitleClip* to set
* @position: The horizontal position @self is being set to
*
* Sets the horizontal position of the text.
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
void
ges_title_clip_set_xpos (GESTitleClip * self, gdouble position)
{
GSList *tmp;
GST_DEBUG_OBJECT (self, "xpos:%f", position);
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
ges_timeline_element_set_child_properties (tmp->data, "xpos", position,
NULL);
}
}
/**
* ges_title_clip_set_ypos:
* @self: the #GESTitleClip* to set
* @position: The vertical position @self is being set to
*
* Sets the vertical position of the text.
*
* Deprecated:1.6: use #ges_timeline_element_set_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
void
ges_title_clip_set_ypos (GESTitleClip * self, gdouble position)
{
GSList *tmp;
GST_DEBUG_OBJECT (self, "ypos:%f", position);
for (tmp = self->priv->track_titles; tmp; tmp = tmp->next) {
ges_timeline_element_set_child_properties (tmp->data, "ypos", position,
NULL);
}
}
/**
* ges_title_clip_get_text:
* @self: a #GESTitleClip
*
* Get the text currently set on @self.
*
* Returns: (transfer full) (nullable): The text currently set on @self.
*
* Deprecated:1.6: use #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
const gchar *
ges_title_clip_get_text (GESTitleClip * self)
{
gchar *text;
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
"text", &text, NULL);
return text;
}
/**
* ges_title_clip_get_font_desc:
* @self: a #GESTitleClip
*
* Get the pango font description used by @self.
*
* Returns: (transfer full) (nullable): The pango font description used by @self.
*
* Deprecated:1.6: use #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
const char *
ges_title_clip_get_font_desc (GESTitleClip * self)
{
gchar *font_desc;
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
"font-desc", &font_desc, NULL);
return font_desc;
}
/**
* ges_title_clip_get_halignment:
* @self: a #GESTitleClip
*
* Get the horizontal aligment used by @self.
*
* Returns: The horizontal aligment used by @self.
*
* Deprecated:1.6: use #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
GESTextHAlign
ges_title_clip_get_halignment (GESTitleClip * self)
{
GESTextHAlign halign;
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
"halignment", &halign, NULL);
return halign;
}
/**
* ges_title_clip_get_valignment:
* @self: a #GESTitleClip
*
* Get the vertical aligment used by @self.
*
* Returns: The vertical aligment used by @self.
*
* Deprecated:1.6: use #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
GESTextVAlign
ges_title_clip_get_valignment (GESTitleClip * self)
{
GESTextVAlign valign;
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
"valignment", &valign, NULL);
return valign;
}
/**
* ges_title_clip_get_text_color:
* @self: a #GESTitleClip
*
* Get the color used by @self.
*
* Returns: The color used by @self.
*
* Deprecated:1.6: use #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
const guint32
ges_title_clip_get_text_color (GESTitleClip * self)
{
guint32 color;
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
"color", &color, NULL);
return color;
}
/**
* ges_title_clip_get_background_color:
* @self: a #GESTitleClip
*
* Get the background used by @self.
*
* Returns: The color used by @self.
*
* Deprecated:1.6: use #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
const guint32
ges_title_clip_get_background_color (GESTitleClip * self)
{
guint32 color;
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
"foreground-color", &color, NULL);
return color;
}
/**
* ges_title_clip_get_xpos:
* @self: a #GESTitleClip
*
* Get the horizontal position used by @self.
*
* Returns: The horizontal position used by @self.
*
* Deprecated:1.6: use #ges_timeline_element_get_children_properties instead.
* See #GESTitleSource for more information about exposed properties
*/
const gdouble
ges_title_clip_get_xpos (GESTitleClip * self)
{
gdouble xpos;
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
"xpos", &xpos, NULL);
return xpos;
}
/**
* ges_title_clip_get_ypos:
* @self: a #GESTitleClip
*
* Get the vertical position used by @self.
*
* Returns: The vertical position used by @self.
*
* Deprecated:1.6: use #ges_timeline_element_get_children_property instead
*/
const gdouble
ges_title_clip_get_ypos (GESTitleClip * self)
{
gdouble ypos;
ges_timeline_element_get_child_properties (self->priv->track_titles->data,
"ypos", &ypos, NULL);
return ypos;
}
static void
_child_removed (GESContainer * container, GESTimelineElement * element)
{
GESTitleClipPrivate *priv = GES_TITLE_CLIP (container)->priv;
/* If this is called, we should be sure the element exists */
if (GES_IS_TITLE_SOURCE (element)) {
GST_DEBUG_OBJECT (container, "%" GST_PTR_FORMAT " removed", element);
priv->track_titles = g_slist_remove (priv->track_titles, element);
gst_object_unref (element);
}
GES_CONTAINER_CLASS (ges_title_clip_parent_class)->child_removed (container,
element);
}
static void
_child_added (GESContainer * container, GESTimelineElement * element)
{
GESTitleClipPrivate *priv = GES_TITLE_CLIP (container)->priv;
if (GES_IS_TITLE_SOURCE (element)) {
GST_DEBUG_OBJECT (container, "%" GST_PTR_FORMAT " added", element);
priv->track_titles = g_slist_prepend (priv->track_titles,
gst_object_ref (element));
}
GES_CONTAINER_CLASS (ges_title_clip_parent_class)->child_added (container,
element);
}
static GESTrackElement *
ges_title_clip_create_track_element (GESClip * clip, GESTrackType type)
{
GESTrackElement *res = NULL;
GST_DEBUG_OBJECT (clip, "a GESTitleSource");
if (type == GES_TRACK_TYPE_VIDEO)
res = (GESTrackElement *) ges_title_source_new ();
return res;
}
/**
* ges_title_clip_new:
*
* Creates a new #GESTitleClip
*
* Returns: (transfer floating) (nullable): The newly created #GESTitleClip,
* or %NULL if there was an error.
*/
GESTitleClip *
ges_title_clip_new (void)
{
GESTitleClip *new_clip;
GESAsset *asset = ges_asset_request (GES_TYPE_TITLE_CLIP, NULL, NULL);
new_clip = GES_TITLE_CLIP (ges_asset_extract (asset, NULL));
gst_object_unref (asset);
return new_clip;
}
|