[longomatch/redesign: 29/82] Add support for drawings in the playlist
- From: Andoni Morales Alastruey <amorales src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [longomatch/redesign: 29/82] Add support for drawings in the playlist
- Date: Mon, 14 Mar 2011 00:19:16 +0000 (UTC)
commit c99ba31cb2aa4c3e4ac9ac384ccfd0a3849c9981
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date: Sun Dec 19 22:08:42 2010 +0100
Add support for drawings in the playlist
LongoMatch/Time/PlayListPlay.cs | 26 ++++++++++++--------------
1 files changed, 12 insertions(+), 14 deletions(-)
---
diff --git a/LongoMatch/Time/PlayListPlay.cs b/LongoMatch/Time/PlayListPlay.cs
index b6e8e72..27aac2a 100644
--- a/LongoMatch/Time/PlayListPlay.cs
+++ b/LongoMatch/Time/PlayListPlay.cs
@@ -19,6 +19,7 @@
//
using System;
+using System.Collections.Generic;
using Gdk;
using LongoMatch.Video.Utils;
@@ -29,25 +30,14 @@ namespace LongoMatch.TimeNodes
/// It stores the information of the video file so that it can be used outside a project.
/// </summary>
[Serializable]
- public class PlayListPlay : TimeNode
+ public class PlayListPlay : PixbufTimeNode
{
- private PreviewMediaFile mediaFile;
-
#region Constructors
public PlayListPlay()
{
}
#endregion
- #region Properties
- /// <summary>
- /// Video file with snapshot preview
- /// </value>
- public PreviewMediaFile MediaFile {
- set;
- get;
- }
-
/// <summary>
/// Play rate
/// </summary>
@@ -56,13 +46,21 @@ namespace LongoMatch.TimeNodes
set;
}
- //// <value>
+ //// <summary>
/// Defines it the file exists and thus, it can be used in the playlist
- /// </value>
+ /// </summary>
public bool Valid {
get;
set;
}
+
+ /// <summary>
+ /// List of drawings to be displayed
+ /// </summary>
+ public DrawingsList Drawings {
+ get;
+ set;
+ }
#endregion
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]