summaryrefslogtreecommitdiff
path: root/src/totem-video-list.h
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2009-02-07 18:21:31 +0000
committerPhilip Withnall <pwithnall@src.gnome.org>2009-02-07 18:21:31 +0000
commit1c6e8289704a0f4df2afa9f8f8487107aa3e0e93 (patch)
tree8a05694286d49861a2523aece011aa22305aea66 /src/totem-video-list.h
parentb9d500a7e4d5f45b56b0f33207d3b9472599e881 (diff)
downloadtotem-1c6e8289704a0f4df2afa9f8f8487107aa3e0e93.tar.gz
Documentation updates and fixes: all documented and plugin-visible API is
2009-02-07 Philip Withnall <philip@tecnocode.co.uk> * configure.in: * docs/reference/Makefile.am: * docs/reference/totem-docs.sgml: * docs/reference/totem-docs.xml: * docs/reference/totem-sections.txt: * src/plugins/totem-plugin.c: * src/plugins/totem-plugin.h: * src/totem-cell-renderer-video.c (totem_cell_renderer_video_class_init): * src/totem-cell-renderer-video.h: * src/totem-interface.c: * src/totem-object.c (totem_object_class_init): * src/totem-video-list.c (totem_video_list_class_init): * src/totem-video-list.h: * src/totem.h: Documentation updates and fixes: all documented and plugin-visible API is now listed in the documentation, and the section titles/descriptions have all been updated. The documentation layout has been tidied up, and recent gtk-doc features have been taken advantage of (http://live.gnome.org/DocumentationProject/GtkDocGnomeGoal). svn path=/trunk/; revision=5950
Diffstat (limited to 'src/totem-video-list.h')
-rw-r--r--src/totem-video-list.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/totem-video-list.h b/src/totem-video-list.h
index 4194457c2..7468edc7f 100644
--- a/src/totem-video-list.h
+++ b/src/totem-video-list.h
@@ -43,11 +43,24 @@ G_BEGIN_DECLS
typedef struct _TotemVideoListPrivate TotemVideoListPrivate;
+/**
+ * TotemVideoList:
+ *
+ * All the fields in the #TotemVideoList structure are private and should never be accessed directly.
+ **/
typedef struct {
GtkTreeView parent;
TotemVideoListPrivate *priv;
} TotemVideoList;
+/**
+ * TotemVideoListClass:
+ * @parent: the parent class
+ * @starting_video: the generic signal handler for the #TotemVideoList::starting-video signal,
+ * which can be overridden by inheriting classes
+ *
+ * The class structure for the #TotemVideoList type.
+ **/
typedef struct {
GtkTreeViewClass parent;
gboolean (*starting_video) (TotemVideoList *video_list, GtkTreePath *path);