diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-30 21:50:16 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-30 21:50:16 +0000 |
| commit | 8972642109ea98fd71bc83d7ffc0167958ae22bf (patch) | |
| tree | 59bdf6771be6984aca7ab5850071b55e0850413d /FL/Fl_File_Chooser.H | |
| parent | 1f5448409b34b28a38ac48ae47ce2f66731142ef (diff) | |
New Fl_File_Input widget, courtesy of Curtis Edwards old Fl_Input_File
widget (Fl_File_Input is much lighter-weight, and is simpler in function.)
Update file chooser dialog to use new Fl_File_Input widget and always
display absolute path.
Still need to do docos, new screenshots, and update FLUID to support the
new widget.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2145 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_File_Chooser.H')
| -rw-r--r-- | FL/Fl_File_Chooser.H | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/FL/Fl_File_Chooser.H b/FL/Fl_File_Chooser.H index a9ca0f824..702482618 100644 --- a/FL/Fl_File_Chooser.H +++ b/FL/Fl_File_Chooser.H @@ -11,7 +11,7 @@ #include <FL/Fl_Button.H> #include <FL/fl_ask.H> #include <FL/Fl_File_Browser.H> -#include <FL/Fl_Input.H> +#include <FL/Fl_File_Input.H> #include <FL/Fl_Return_Button.H> class Fl_File_Chooser { @@ -36,9 +36,9 @@ private: Fl_File_Browser *fileList; inline void cb_fileList_i(Fl_File_Browser*, void*); static void cb_fileList(Fl_File_Browser*, void*); - Fl_Input *fileName; - inline void cb_fileName_i(Fl_Input*, void*); - static void cb_fileName(Fl_Input*, void*); + Fl_File_Input *fileName; + inline void cb_fileName_i(Fl_File_Input*, void*); + static void cb_fileName(Fl_File_Input*, void*); Fl_Return_Button *okButton; inline void cb_okButton_i(Fl_Return_Button*, void*); static void cb_okButton(Fl_Return_Button*, void*); |
