diff options
| author | tmzullinger <tmzullinger@f01d2545-417e-4e96-918e-98f8d0dbbcb6> | 2007-01-15 02:12:04 +0000 |
|---|---|---|
| committer | tmzullinger <tmzullinger@f01d2545-417e-4e96-918e-98f8d0dbbcb6> | 2007-01-15 02:12:04 +0000 |
| commit | 528d93bfede7399ccd2ba7f12cd7f368ac81bd21 (patch) | |
| tree | cfe2fc1ddbff341d32720873c46baeaf770bc8d9 /bindings/python/gpod_doc.i.in | |
| parent | a4d3fbe97259d6f0fd2abbfaf291699fd909b8b4 (diff) | |
add support files for converting gtk-docs to python docstrings
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1372 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'bindings/python/gpod_doc.i.in')
| -rw-r--r-- | bindings/python/gpod_doc.i.in | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/bindings/python/gpod_doc.i.in b/bindings/python/gpod_doc.i.in new file mode 100644 index 0000000..fa25c12 --- /dev/null +++ b/bindings/python/gpod_doc.i.in @@ -0,0 +1,86 @@ +%feature("autodoc", "1"); + +%feature("autodoc", "sw_get_tracks(Itdb_iTunesDB itdb) -> [Itdb_Track, ...]") sw_get_tracks; +%feature("docstring", " +Get tracks in itdb. + +Parameters +itdb: an Itdb_iTunesDB +Returns: a list of Itdb_Track objects +") sw_get_tracks; + +%feature("autodoc", "sw_get_track(GList list, gint index) -> Itdb_Track") sw_get_track; +%feature("docstring", " +Get a track + +Parameters +list: a GList +index: position of the track +Returns: an Itdb_Track +") sw_get_track; + +%feature("autodoc", "sw_get_rule(GList list, gint index) -> SPLRule") sw_get_rule; +%feature("docstring", " +Get a rule + +Parameters +list: a GList +index: position of the rule +Returns: an SPLRule +") sw_get_rule; + +%feature("autodoc", "sw_get_playlist(GList list, gint index) -> Itdb_Playlist") sw_get_playlist; +%feature("docstring", " +Get a playlist + +Parameters +list: a GList +index: position of the playlist +Returns: an Itdb_Playlist +") sw_get_playlist; + +%feature("autodoc", "sw_get_list_len(GList list) -> Int") sw_get_list_len; +%feature("docstring", " +Get the length of list + +Parameters +list: a GList +Returns: length of list +") sw_get_list_len; + +%feature("autodoc", "sw_get_playlists(Itdb_iTunesDB itdb) -> [Itdb_Playlist, ...]") sw_get_playlists; +%feature("docstring", " +Get playlists + +Parameters +itdb: an Itdb_iTunesDB +Returns: a list of Itdb_Playlist objects +") sw_get_playlists; + +%feature("autodoc", "sw_get_playlist_tracks(Itdb_Playlist pl) -> [Itdb_Track, ...]") sw_get_playlist_tracks; +%feature("docstring", " +Get tracks in playlist + +pl: an Itdb_Playlist +Returns: a list of Itdb_Track objects +") sw_get_playlist_tracks; + +%feature("autodoc", "sw_set_track_userdata(Itdb_Track track, Dictionary userdata)") sw_set_track_userdata; +%feature("docstring", " +Set a tracks userdata + +Parameters +track: an Itdb_Track +userdata: a dictionary. Note that userdata can be None, in order to +clear all userdata. +") sw_set_track_userdata; + +%feature("autodoc", "sw_get_track_userdata(Itdb_Track track) -> Dictionary") sw_get_track_userdata; +%feature("docstring", " +Get track userdata + +Parameters +track: an Itdb_Track +Returns: a dictionary containing any userdata for track +") sw_get_track_userdata; + |
