2002-05-02 18:15:46 +04:00
|
|
|
/*
|
2002-06-26 16:03:28 +04:00
|
|
|
* "$Id: filename.H,v 1.11.2.4.2.9 2002/06/26 12:03:28 easysw Exp $"
|
2002-05-02 18:15:46 +04:00
|
|
|
*
|
|
|
|
* Filename header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
*
|
|
|
|
* Copyright 1998-2002 by Bill Spitzak and others.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "fltk-bugs@fltk.org".
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
|
1999-02-17 01:00:04 +03:00
|
|
|
#ifndef FL_FILENAME_H
|
2001-11-29 03:24:43 +03:00
|
|
|
# define FL_FILENAME_H
|
1999-02-17 01:00:04 +03:00
|
|
|
|
2001-08-04 16:21:34 +04:00
|
|
|
# include "Fl_Export.H"
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2002-05-02 18:15:46 +04:00
|
|
|
# define FL_PATH_MAX 256 /* all buffers are this length */
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2002-05-02 18:15:46 +04:00
|
|
|
FL_EXPORT const char *fl_filename_name(const char *);
|
|
|
|
FL_EXPORT const char *fl_filename_ext(const char *);
|
|
|
|
FL_EXPORT char *fl_filename_setext(char *to, int tolen, const char *ext);
|
|
|
|
FL_EXPORT int fl_filename_expand(char *to, int tolen, const char *from);
|
|
|
|
FL_EXPORT int fl_filename_absolute(char *to, int tolen, const char *from);
|
|
|
|
FL_EXPORT int fl_filename_relative(char *to, int tolen, const char *from);
|
|
|
|
FL_EXPORT int fl_filename_match(const char *name, const char *pattern);
|
2002-03-26 00:08:42 +03:00
|
|
|
FL_EXPORT int fl_filename_isdir(const char *name);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-11-29 03:24:43 +03:00
|
|
|
# ifdef __cplusplus
|
2002-05-02 18:15:46 +04:00
|
|
|
/*
|
|
|
|
* Under WIN32, we include filename.H from numericsort.c; this should probably change...
|
|
|
|
*/
|
|
|
|
|
2002-03-26 00:08:42 +03:00
|
|
|
inline char *fl_filename_setext(char *to, const char *ext) { return fl_filename_setext(to, FL_PATH_MAX, ext); }
|
|
|
|
inline int fl_filename_expand(char *to, const char *from) { return fl_filename_expand(to, FL_PATH_MAX, from); }
|
|
|
|
inline int fl_filename_absolute(char *to, const char *from) { return fl_filename_absolute(to, FL_PATH_MAX, from); }
|
|
|
|
inline int fl_filename_relative(char *to, const char *from) { return fl_filename_relative(to, FL_PATH_MAX, from); }
|
2002-05-02 18:15:46 +04:00
|
|
|
# endif /* __cplusplus */
|
2001-11-29 03:24:43 +03:00
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2001-11-29 03:24:43 +03:00
|
|
|
# if defined(WIN32) && !defined(__CYGWIN__)
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
struct dirent {char d_name[1];};
|
|
|
|
|
2001-11-29 03:24:43 +03:00
|
|
|
# else
|
2002-05-02 18:15:46 +04:00
|
|
|
/*
|
|
|
|
* WARNING: on some systems (very few nowadays?) <dirent.h> may not exist.
|
|
|
|
* The correct information is in one of these files:
|
|
|
|
*
|
|
|
|
* #include <sys/ndir.h>
|
|
|
|
* #include <sys/dir.h>
|
|
|
|
* #include <ndir.h>
|
|
|
|
*
|
|
|
|
* plus you must do the following #define:
|
|
|
|
*
|
|
|
|
* #define dirent direct
|
|
|
|
*
|
|
|
|
* It would be best to create a <dirent.h> file that does this...
|
|
|
|
*/
|
2001-11-29 03:24:43 +03:00
|
|
|
# include <sys/types.h>
|
|
|
|
# include <dirent.h>
|
|
|
|
# endif
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2002-05-02 18:15:46 +04:00
|
|
|
# ifdef __cplusplus
|
2002-05-02 15:11:01 +04:00
|
|
|
extern "C" {
|
2002-05-02 18:15:46 +04:00
|
|
|
# endif /* __cplusplus */
|
2002-05-02 15:11:01 +04:00
|
|
|
|
2002-05-02 18:15:46 +04:00
|
|
|
FL_EXPORT int fl_alphasort(struct dirent **, struct dirent **);
|
|
|
|
FL_EXPORT int fl_casealphasort(struct dirent **, struct dirent **);
|
|
|
|
FL_EXPORT int fl_casenumericsort(struct dirent **, struct dirent **);
|
|
|
|
FL_EXPORT int fl_numericsort(struct dirent **, struct dirent **);
|
|
|
|
|
|
|
|
typedef int (Fl_File_Sort_F)(struct dirent **, struct dirent **);
|
|
|
|
|
|
|
|
# ifdef __cplusplus
|
2002-05-02 15:11:01 +04:00
|
|
|
}
|
|
|
|
|
2002-05-02 18:15:46 +04:00
|
|
|
/*
|
|
|
|
* Portable "scandir" function. Ugly but necessary...
|
|
|
|
*/
|
|
|
|
|
2002-05-02 15:11:01 +04:00
|
|
|
FL_EXPORT int fl_filename_list(const char *d, struct dirent ***list,
|
|
|
|
Fl_File_Sort_F *sort = fl_numericsort);
|
2002-05-02 18:15:46 +04:00
|
|
|
# endif /* __cplusplus */
|
2002-05-02 15:11:01 +04:00
|
|
|
|
2002-06-26 16:03:28 +04:00
|
|
|
/*
|
|
|
|
* FLTK 1.0.x compatibility definitions...
|
|
|
|
*/
|
|
|
|
|
2002-06-24 19:22:57 +04:00
|
|
|
# ifdef FLTK_1_0_COMPAT
|
|
|
|
# define filename_absolute fl_filename_absolute
|
|
|
|
# define filename_expand fl_filename_expand
|
|
|
|
# define filename_ext fl_filename_ext
|
|
|
|
# define filename_isdir fl_filename_isdir
|
|
|
|
# define filename_list fl_filename_list
|
|
|
|
# define filename_match fl_filename_match
|
|
|
|
# define filename_name fl_filename_name
|
|
|
|
# define filename_relative fl_filename_relative
|
|
|
|
# define numericsort fl_numericsort
|
2002-06-26 16:03:28 +04:00
|
|
|
# endif /* FLTK_1_0_COMPAT */
|
2002-06-24 19:22:57 +04:00
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2002-05-02 18:15:46 +04:00
|
|
|
#endif /* FL_FILENAME_H */
|
1998-10-20 01:39:29 +04:00
|
|
|
|
2002-05-02 18:15:46 +04:00
|
|
|
/*
|
2002-06-26 16:03:28 +04:00
|
|
|
* End of "$Id: filename.H,v 1.11.2.4.2.9 2002/06/26 12:03:28 easysw Exp $".
|
2002-05-02 18:15:46 +04:00
|
|
|
*/
|