diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-05-02 15:24:34 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-05-02 15:24:34 +0000 |
| commit | b010bc55c4ed22e8cbede27d5fe56b0ea843aef2 (patch) | |
| tree | dc767f9aef3a543a13231da1769edf173a03d9d4 /src/Fl_File_Chooser2.cxx | |
| parent | e80eb3ebeb1db95d10b044b0519b166b5143b1ea (diff) | |
Add sort function to file chooser.
Document sort function and label strings for chooser.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2179 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_File_Chooser2.cxx')
| -rw-r--r-- | src/Fl_File_Chooser2.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Fl_File_Chooser2.cxx b/src/Fl_File_Chooser2.cxx index 9a08dbb01..f3efbdcb0 100644 --- a/src/Fl_File_Chooser2.cxx +++ b/src/Fl_File_Chooser2.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_File_Chooser2.cxx,v 1.1.2.11 2002/05/01 12:41:21 easysw Exp $" +// "$Id: Fl_File_Chooser2.cxx,v 1.1.2.12 2002/05/02 15:24:34 easysw Exp $" // // More Fl_File_Chooser routines. // @@ -68,6 +68,7 @@ const char *Fl_File_Chooser::directory_label = "Directory:"; const char *Fl_File_Chooser::filename_label = "Filename:"; const char *Fl_File_Chooser::filter_label = "New Filter?"; +Fl_File_Sort_F *Fl_File_Chooser::sort = fl_numericsort; // @@ -427,7 +428,7 @@ Fl_File_Chooser::rescan() okButton->deactivate(); // Build the file list... - fileList->load(directory_); + fileList->load(directory_, sort); } @@ -701,5 +702,5 @@ Fl_File_Chooser::fileNameCB() // -// End of "$Id: Fl_File_Chooser2.cxx,v 1.1.2.11 2002/05/01 12:41:21 easysw Exp $". +// End of "$Id: Fl_File_Chooser2.cxx,v 1.1.2.12 2002/05/02 15:24:34 easysw Exp $". // |
