GESTimeline: start more documentation

This commit is contained in:
Edward Hervey 2009-09-14 17:00:13 +02:00
parent 89429a9225
commit 15aba65202

View file

@ -43,11 +43,17 @@ G_BEGIN_DECLS
#define GES_TIMELINE_GET_CLASS(obj) \ #define GES_TIMELINE_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS ((obj), GES_TYPE_TIMELINE, GESTimelineClass)) (G_TYPE_INSTANCE_GET_CLASS ((obj), GES_TYPE_TIMELINE, GESTimelineClass))
/**
* GESTimeline:
* @tracks: a list of #GESTrack
*/
struct _GESTimeline { struct _GESTimeline {
GstBin parent; GstBin parent;
GList *layers; /* TimelineLayer(s) ordered by priority */ /*< private >*/
GList *tracks; /* TimelineTrack(s) */ GList *layers; /* A list of GESTimelineLayer sorted by priority */
/*< public >*/
GList *tracks;
}; };
struct _GESTimelineClass { struct _GESTimelineClass {