Mercurial > audlegacy
changeset 2058:2618fcfb3bcf trunk
[svn] - a directory browser widget
author | nenolod |
---|---|
date | Mon, 04 Dec 2006 18:21:39 -0800 |
parents | a55ad33d882e |
children | 8aaf0f145578 |
files | ChangeLog doc/libaudacious/tmpl/dirbrowser.sgml libaudacious/dirbrowser.c |
diffstat | 3 files changed, 52 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Dec 04 18:08:15 2006 -0800 +++ b/ChangeLog Mon Dec 04 18:21:39 2006 -0800 @@ -1,3 +1,13 @@ +2006-12-05 02:08:15 +0000 William Pitcock <nenolod@nenolod.net> + revision [3117] + - document rcfile + + trunk/doc/libaudacious/libaudacious-undocumented.txt | 23 -- + trunk/doc/libaudacious/tmpl/rcfile.sgml | 4 + trunk/libaudacious/rcfile.c | 149 ++++++++++++++++++- + 3 files changed, 151 insertions(+), 25 deletions(-) + + 2006-12-04 23:24:14 +0000 William Pitcock <nenolod@nenolod.net> revision [3115] - document xconvert
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/libaudacious/tmpl/dirbrowser.sgml Mon Dec 04 18:21:39 2006 -0800 @@ -0,0 +1,31 @@ +<!-- ##### SECTION Title ##### --> +Directory Browser + +<!-- ##### SECTION Short_Description ##### --> +A directory browser widget. + +<!-- ##### SECTION Long_Description ##### --> +<para> + +</para> + +<!-- ##### SECTION See_Also ##### --> +<para> + +</para> + +<!-- ##### SECTION Stability_Level ##### --> + + +<!-- ##### FUNCTION xmms_create_dir_browser ##### --> +<para> + +</para> + +@title: +@current_path: +@mode: +@handler: +@Returns: + +
--- a/libaudacious/dirbrowser.c Mon Dec 04 18:08:15 2006 -0800 +++ b/libaudacious/dirbrowser.c Mon Dec 04 18:21:39 2006 -0800 @@ -268,6 +268,17 @@ } +/** + * xmms_create_dir_browser: + * @title: The title of the dir browser. + * @current_path: The path that the dir browser should represent. + * @mode: The GtkSelectionMode that should be used. + * @handler: A handler to execute upon a selection. + * + * Creates a directory browser. + * + * Return value: A GtkWidget containing the directory browser. + **/ GtkWidget * xmms_create_dir_browser(gchar * title, gchar * current_path, GtkSelectionMode mode, void (*handler) (gchar *))