diff options
author | Thibault Saunier <thibault.saunier@collabora.com> | 2012-07-01 19:57:30 -0400 |
---|---|---|
committer | Thibault Saunier <thibault.saunier@collabora.com> | 2012-07-01 20:07:46 -0400 |
commit | b13942c5b51f93226c058aab90ffda401fd6829b (patch) | |
tree | c4397187c7323323a39eef75c2b96a5138d397fa /ges/ges-formatter.h | |
parent | 2d13b12878eec52251e4af4a78d3f743f6f2fbc0 (diff) |
formatter: Make the emit_loaded a real method and not a virtual method
+ Modify formatter subclasses accordingly
API:ges_formatter_emit_loaded
This API wasn't released so it could still be changed
Diffstat (limited to 'ges/ges-formatter.h')
-rw-r--r-- | ges/ges-formatter.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ges/ges-formatter.h b/ges/ges-formatter.h index bc2b7232..80d18546 100644 --- a/ges/ges-formatter.h +++ b/ges/ges-formatter.h @@ -140,7 +140,6 @@ typedef gboolean (*GESFormatterLoadedMethod) (GESFormatter *formatter, * @save_to_uri: class method to serialize data to a URI * @update_source_uri: virtual method to specify that a source has moved, and thus its URI * must be set to its new location (specified by the user) - * @project_loaded: Must be called by subclasses when done loading a project * * GES Formatter class. Override the vmethods to implement the formatter functionnality. */ @@ -153,7 +152,6 @@ struct _GESFormatterClass { GESFormatterLoadFromURIMethod load_from_uri; GESFormatterSaveToURIMethod save_to_uri; GESFormatterSourceMovedMethod update_source_uri; - GESFormatterLoadedMethod project_loaded; /*< private >*/ /* FIXME : formatter name */ @@ -188,6 +186,10 @@ gboolean ges_formatter_update_source_uri (GESFormatter * formatter, GESTimelineFileSource * source, gchar * new_uri); +/*< protected >*/ +gboolean +ges_formatter_emit_loaded (GESFormatter * formatter); + /* Non-standard methods. WILL BE DEPRECATED */ gboolean ges_formatter_load (GESFormatter * formatter, GESTimeline * timeline); |