Revision 773,
428 bytes
checked in by gumbau, 19 years ago
(diff) |
FLTK imported to SVN repository to be linked agains the GeoTool? application
|
Line | |
---|
1 | #ifndef Fl_File_Chooser_H |
---|
2 | #define Fl_File_Chooser_H |
---|
3 | |
---|
4 | #include "Fl_Widget.H" |
---|
5 | |
---|
6 | #include <fltk/FileChooser.h> |
---|
7 | typedef fltk::FileChooser Fl_File_Chooser; |
---|
8 | |
---|
9 | #include <fltk/file_chooser.h> |
---|
10 | |
---|
11 | //char *fl_dir_chooser(const char *message,const char *fname,int relative=0); |
---|
12 | inline char *fl_file_chooser(const char *message,const char *pat,const char *fname,int /*relative*/ = 0) { |
---|
13 | return fltk::file_chooser(message, pat, fname); |
---|
14 | } |
---|
15 | |
---|
16 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.