summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2011-01-31 18:04:09 +0000
committerManolo Gouy <Manolo>2011-01-31 18:04:09 +0000
commit7531d0e95f9ca3db359d51471976f32ac1d1f562 (patch)
treee596731c2238370247296e656ccd8a3b95341868 /src
parentcaef04e0579f261964b475d6574537d2281bd23d (diff)
Some Doxygen doc fine tuning.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8345 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/fl_file_dir.cxx14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/fl_file_dir.cxx b/src/fl_file_dir.cxx
index 591b54c5c..062592f78 100644
--- a/src/fl_file_dir.cxx
+++ b/src/fl_file_dir.cxx
@@ -45,25 +45,27 @@ static void callback(Fl_File_Chooser *, void*) {
/** \addtogroup group_comdlg
@{ */
-/** \relates Fl_File_Chooser
+/**
Set the file chooser callback
\note \#include <FL/Fl_File_Chooser.H>
+ \relates Fl_File_Chooser
*/
void fl_file_chooser_callback(void (*cb)(const char*)) {
current_callback = cb;
}
-/** \relates Fl_File_Chooser
+/**
Set the "OK" button label
\note \#include <FL/Fl_File_Chooser.H>
+ \relates Fl_File_Chooser
*/
void fl_file_chooser_ok_label(const char *l) {
if (l) current_label = l;
else current_label = fl_ok;
}
-/** \relates Fl_File_Chooser
+/**
Shows a file chooser dialog and gets a filename.
\note \#include <FL/Fl_File_Chooser.H>
\image html Fl_File_Chooser.jpg
@@ -74,6 +76,7 @@ void fl_file_chooser_ok_label(const char *l) {
\param[in] relative 0 for absolute path name, relative path name otherwise
\return the user selected filename, in absolute or relative format
or NULL if user cancels
+ \relates Fl_File_Chooser
*/
char * // O - Filename or NULL
fl_file_chooser(const char *message, // I - Message in titlebar
@@ -149,15 +152,14 @@ fl_file_chooser(const char *message, // I - Message in titlebar
else return 0;
}
-/** \relates Fl_File_Chooser
- Shows a file chooser dialog and gets a directory.
+/** Shows a file chooser dialog and gets a directory.
\note \#include <FL/Fl_File_Chooser.H>
\param[in] message title bar text
\param[in] fname initial/default directory name
\param[in] relative 0 for absolute path return, relative otherwise
\return the directory path string chosen by the user or NULL if user cancels
+ \relates Fl_File_Chooser
*/
-
char * // O - Directory or NULL
fl_dir_chooser(const char *message, // I - Message for titlebar
const char *fname, // I - Initial directory name