diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2016-04-14 21:29:02 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2016-04-14 21:29:02 +0000 |
| commit | 130a0ef8daa24bf1b14392615e067940f6c5d035 (patch) | |
| tree | 4f63959ff503f1bc399e102fe4d64eeca0b1eabf /src/Fl_File_Chooser2.cxx | |
| parent | 03e87bb2704155bd45b1eb9f8207ff660bea16d1 (diff) | |
PicoSDL fixes - not working!
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11607 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_File_Chooser2.cxx')
| -rw-r--r-- | src/Fl_File_Chooser2.cxx | 220 |
1 files changed, 161 insertions, 59 deletions
diff --git a/src/Fl_File_Chooser2.cxx b/src/Fl_File_Chooser2.cxx index 001b95c14..b5b5df3f8 100644 --- a/src/Fl_File_Chooser2.cxx +++ b/src/Fl_File_Chooser2.cxx @@ -356,6 +356,33 @@ #include <stdlib.h> #include "flstring.h" #include <errno.h> +#include <sys/types.h> + +#if defined(WIN32) || defined(__APPLE__) // PORTME: Fl_Screen_Driver - platform file browser +#elif defined(FL_PORTING) +# pragma message "FL_PORTING: implement the internals of your filechooser here" +// Ouch: this must be in the system driver! +int mkdir(const char *, unsigned int); +#else +#endif + +#if defined(WIN32) && ! defined (__CYGWIN__) +# include <direct.h> +# include <io.h> +// Visual C++ 2005 incorrectly displays a warning about the use of POSIX APIs +// on Windows, which is supposed to be POSIX compliant... +# define access _access +# define mkdir _mkdir +// Apparently Borland C++ defines DIRECTORY in <direct.h>, which +// interfers with the Fl_File_Icon enumeration of the same name. +# ifdef DIRECTORY +# undef DIRECTORY +# endif // DIRECTORY +#else +# include <unistd.h> +# include <pwd.h> +#endif /* WIN32 */ + // // File chooser label strings and sort function... @@ -369,7 +396,11 @@ const char *Fl_File_Chooser::custom_filter_label = "Custom Filter"; const char *Fl_File_Chooser::existing_file_label = "Please choose an existing file!"; const char *Fl_File_Chooser::favorites_label = "Favorites"; const char *Fl_File_Chooser::filename_label = "Filename:"; -const char *Fl_File_Chooser::filesystems_label = Fl::system_driver()->filesystems_label(); +#ifdef WIN32 +const char *Fl_File_Chooser::filesystems_label = "My Computer"; +#else +const char *Fl_File_Chooser::filesystems_label = "File Systems"; +#endif // WIN32 const char *Fl_File_Chooser::manage_favorites_label = "Manage Favorites"; const char *Fl_File_Chooser::new_directory_label = "New Directory?"; const char *Fl_File_Chooser::new_directory_tooltip = "Create a new directory."; @@ -388,6 +419,9 @@ static int compare_dirnames(const char *a, const char *b); static void quote_pathname(char *, const char *, int); static void unquote_pathname(char *, const char *, int); +// use platform dependent getenv() to get the home directory (STR #3166) +static const char* get_homedir(); + // // 'Fl_File_Chooser::count()' - Return the number of selected files. // @@ -441,25 +475,29 @@ Fl_File_Chooser::directory(const char *d)// I - Directory to change to if (d == NULL) d = "."; - if (Fl::system_driver()->backslash_as_slash()) { - // See if the filename contains backslashes... - char *slash; // Pointer to slashes - char fixpath[FL_PATH_MAX]; // Path with slashes converted - if (strchr(d, '\\')) { - // Convert backslashes to slashes... - strlcpy(fixpath, d, sizeof(fixpath)); - - for (slash = strchr(fixpath, '\\'); slash; slash = strchr(slash + 1, '\\')) - *slash = '/'; - - d = fixpath; - } +#ifdef WIN32 + // See if the filename contains backslashes... + char *slash; // Pointer to slashes + char fixpath[FL_PATH_MAX]; // Path with slashes converted + if (strchr(d, '\\')) { + // Convert backslashes to slashes... + strlcpy(fixpath, d, sizeof(fixpath)); + + for (slash = strchr(fixpath, '\\'); slash; slash = strchr(slash + 1, '\\')) + *slash = '/'; + + d = fixpath; } +#endif // WIN32 if (d[0] != '\0') { // Make the directory absolute... - if (d[0] != '/' && d[0] != '\\' && ( !Fl::system_driver()->colon_is_drive() || d[1] != ':' ) ) +#if (defined(WIN32) && ! defined(__CYGWIN__))|| defined(__EMX__) + if (d[0] != '/' && d[0] != '\\' && d[1] != ':') +#else + if (d[0] != '/' && d[0] != '\\') +#endif /* WIN32 || __EMX__ */ fl_filename_absolute(directory_, d); else strlcpy(directory_, d, sizeof(directory_)); @@ -512,7 +550,7 @@ Fl_File_Chooser::favoritesButtonCB() if (!v) { // Add current directory to favorites... - if (Fl::system_driver()->home_directory_name()) v = favoritesButton->size() - 5; + if (get_homedir()) v = favoritesButton->size() - 5; else v = favoritesButton->size() - 4; sprintf(menuname, "favorite%02d", v); @@ -687,11 +725,13 @@ Fl_File_Chooser::fileListCB() } if (Fl::event_clicks()) { - int condition = 0; - if (Fl::system_driver()->colon_is_drive() && strlen(pathname) == 2 && pathname[1] == ':') condition = 1; - if (!condition) condition = Fl::system_driver()->filename_isdir_quick(pathname); - if (condition) - { +#if (defined(WIN32) && ! defined(__CYGWIN__)) || defined(__EMX__) + if ((strlen(pathname) == 2 && pathname[1] == ':') || + Fl::system_driver()->filename_isdir_quick(pathname)) +#else + if (Fl::system_driver()->filename_isdir_quick(pathname)) +#endif /* WIN32 || __EMX__ */ + { // Change directories... directory(pathname); @@ -798,9 +838,13 @@ Fl_File_Chooser::fileNameCB() } // Make sure we have an absolute path... - int condition = directory_[0] != '\0' && filename[0] != '/'; - if (condition && Fl::system_driver()->colon_is_drive()) condition = !(isalpha(filename[0] & 255) && (!filename[1] || filename[1] == ':')); - if (condition) { +#if (defined(WIN32) && !defined(__CYGWIN__)) || defined(__EMX__) + if (directory_[0] != '\0' && filename[0] != '/' && + filename[0] != '\\' && + !(isalpha(filename[0] & 255) && (!filename[1] || filename[1] == ':'))) { +#else + if (directory_[0] != '\0' && filename[0] != '/') { +#endif /* WIN32 || __EMX__ */ fl_filename_absolute(pathname, sizeof(pathname), filename); value(pathname); fileName->mark(fileName->position()); // no selection after expansion @@ -814,12 +858,16 @@ Fl_File_Chooser::fileNameCB() // Now process things according to the key pressed... if (Fl::event_key() == FL_Enter || Fl::event_key() == FL_KP_Enter) { // Enter pressed - select or change directory... - int condition = 0; - if (Fl::system_driver()->colon_is_drive()) condition = isalpha(pathname[0] & 255) && pathname[1] == ':' && !pathname[2]; - if (!condition) condition = ( Fl::system_driver()->filename_isdir_quick(pathname) && compare_dirnames(pathname, directory_) ); - if (condition) { +#if (defined(WIN32) && ! defined(__CYGWIN__)) || defined(__EMX__) + if ((isalpha(pathname[0] & 255) && pathname[1] == ':' && !pathname[2]) || + (Fl::system_driver()->filename_isdir_quick(pathname) && + compare_dirnames(pathname, directory_))) { +#else + if (Fl::system_driver()->filename_isdir_quick(pathname) && + compare_dirnames(pathname, directory_)) { +#endif /* WIN32 || __EMX__ */ directory(pathname); - } else if ((type_ & CREATE) || fl_access(pathname, 0) == 0) { + } else if ((type_ & CREATE) || access(pathname, 0) == 0) { if (!Fl::system_driver()->filename_isdir_quick(pathname) || (type_ & DIRECTORY)) { // Update the preview box... update_preview(); @@ -847,9 +895,13 @@ Fl_File_Chooser::fileNameCB() *slash++ = '\0'; filename = slash; - int condition = Fl::system_driver()->case_insensitive_filenames() ? - strcasecmp(pathname, directory_) : strcmp(pathname, directory_); - if (condition && (pathname[0] || strcmp("/", directory_))) { +#if defined(WIN32) || defined(__EMX__) + if (strcasecmp(pathname, directory_) && + (pathname[0] || strcasecmp("/", directory_))) { +#else + if (strcmp(pathname, directory_) && + (pathname[0] || strcasecmp("/", directory_))) { +#endif // WIN32 || __EMX__ int p = fileName->position(); int m = fileName->mark(); @@ -875,8 +927,11 @@ Fl_File_Chooser::fileNameCB() for (i = 1; i <= num_files && max_match > min_match; i ++) { file = fileList->text(i); - if ( (Fl::system_driver()->case_insensitive_filenames()? - strncasecmp(filename, file, min_match) : strncmp(filename, file, min_match)) == 0) { +#if (defined(WIN32) && ! defined(__CYGWIN__)) || defined(__EMX__) + if (strncasecmp(filename, file, min_match) == 0) { +#else + if (strncmp(filename, file, min_match) == 0) { +#endif // WIN32 || __EMX__ // OK, this one matches; check against the previous match if (!first_line) { // First match; copy stuff over... @@ -895,8 +950,11 @@ Fl_File_Chooser::fileNameCB() } else { // Succeeding match; compare to find maximum string match... while (max_match > min_match) - if ( (Fl::system_driver()->case_insensitive_filenames()? - strncasecmp(file, matchname, max_match) : strncmp(file, matchname, max_match)) == 0) +#if (defined(WIN32) && ! defined(__CYGWIN__)) || defined(__EMX__) + if (strncasecmp(file, matchname, max_match) == 0) +#else + if (strncmp(file, matchname, max_match) == 0) +#endif // WIN32 || __EMX__ break; else max_match --; @@ -933,7 +991,7 @@ Fl_File_Chooser::fileNameCB() } // See if we need to enable the OK button... - if (((type_ & CREATE) || !fl_access(fileName->value(), 0)) && + if (((type_ & CREATE) || !access(fileName->value(), 0)) && (!fl_filename_isdir(fileName->value()) || (type_ & DIRECTORY))) { okButton->activate(); } else { @@ -943,7 +1001,7 @@ Fl_File_Chooser::fileNameCB() // FL_Delete or FL_BackSpace fileList->deselect(0); fileList->redraw(); - if (((type_ & CREATE) || !fl_access(fileName->value(), 0)) && + if (((type_ & CREATE) || !access(fileName->value(), 0)) && (!fl_filename_isdir(fileName->value()) || (type_ & DIRECTORY))) { okButton->activate(); } else { @@ -1017,13 +1075,21 @@ Fl_File_Chooser::newdir() return; // Make it relative to the current directory as needed... - if (dir[0] != '/' && dir[0] != '\\' && (!Fl::system_driver()->colon_is_drive() || dir[1] != ':') ) +#if (defined(WIN32) && ! defined (__CYGWIN__)) || defined(__EMX__) + if (dir[0] != '/' && dir[0] != '\\' && dir[1] != ':') +#else + if (dir[0] != '/' && dir[0] != '\\') +#endif /* WIN32 || __EMX__ */ snprintf(pathname, sizeof(pathname), "%s/%s", directory_, dir); else strlcpy(pathname, dir, sizeof(pathname)); // Create the directory; ignore EEXIST errors... - if (fl_mkdir(pathname, 0777)) +#if defined(WIN32) && ! defined (__CYGWIN__) + if (mkdir(pathname)) +#else + if (mkdir(pathname, 0777)) +#endif /* WIN32 */ if (errno != EEXIST) { fl_alert("%s", strerror(errno)); @@ -1100,7 +1166,9 @@ Fl_File_Chooser::rescan() // Build the file list... fileList->load(directory_, sort); - if (Fl::system_driver()->dot_file_hidden() && !showHiddenButton->value()) remove_hidden_files(); +#ifndef WIN32 + if (!showHiddenButton->value()) remove_hidden_files(); +#endif // Update the preview box... update_preview(); } @@ -1125,7 +1193,9 @@ void Fl_File_Chooser::rescan_keep_filename() // Build the file list... fileList->load(directory_, sort); - if (Fl::system_driver()->dot_file_hidden() && !showHiddenButton->value()) remove_hidden_files(); +#ifndef WIN32 + if (!showHiddenButton->value()) remove_hidden_files(); +#endif // Update the preview box... update_preview(); @@ -1137,7 +1207,11 @@ void Fl_File_Chooser::rescan_keep_filename() else slash = pathname; for (i = 1; i <= fileList->size(); i ++) - if ( (Fl::system_driver()->case_insensitive_filenames() ? strcasecmp(fileList->text(i), slash) : strcmp(fileList->text(i), slash)) == 0) { +#if defined(WIN32) || defined(__EMX__) + if (strcasecmp(fileList->text(i), slash) == 0) { +#else + if (strcmp(fileList->text(i), slash) == 0) { +#endif // WIN32 || __EMX__ fileList->topline(i); fileList->select(i); found = 1; @@ -1211,7 +1285,7 @@ Fl_File_Chooser::update_favorites() favoritesButton->add(manage_favorites_label, FL_ALT + 'm', 0, 0, FL_MENU_DIVIDER); favoritesButton->add(filesystems_label, FL_ALT + 'f', 0); - if ((home = Fl::system_driver()->home_directory_name()) != NULL) { + if ((home = get_homedir()) != NULL) { quote_pathname(menuname, home, sizeof(menuname)); favoritesButton->add(menuname, FL_ALT + 'h', 0); } @@ -1475,19 +1549,19 @@ Fl_File_Chooser::value(const char *filename) return; } - if (Fl::system_driver()->backslash_as_slash()) { - // See if the filename contains backslashes... - char fixpath[FL_PATH_MAX]; // Path with slashes converted - if (strchr(filename, '\\')) { - // Convert backslashes to slashes... - strlcpy(fixpath, filename, sizeof(fixpath)); - - for (slash = strchr(fixpath, '\\'); slash; slash = strchr(slash + 1, '\\')) - *slash = '/'; - - filename = fixpath; - } +#ifdef WIN32 + // See if the filename contains backslashes... + char fixpath[FL_PATH_MAX]; // Path with slashes converted + if (strchr(filename, '\\')) { + // Convert backslashes to slashes... + strlcpy(fixpath, filename, sizeof(fixpath)); + + for (slash = strchr(fixpath, '\\'); slash; slash = strchr(slash + 1, '\\')) + *slash = '/'; + + filename = fixpath; } +#endif // WIN32 // See if there is a directory in there... fl_filename_absolute(pathname, sizeof(pathname), filename); @@ -1517,7 +1591,11 @@ Fl_File_Chooser::value(const char *filename) fileList->redraw(); for (i = 1; i <= fcount; i ++) - if ( ( Fl::system_driver()->case_insensitive_filenames() ? strcasecmp(fileList->text(i), slash) : strcmp(fileList->text(i), slash)) == 0) { +#if defined(WIN32) || defined(__EMX__) + if (strcasecmp(fileList->text(i), slash) == 0) { +#else + if (strcmp(fileList->text(i), slash) == 0) { +#endif // WIN32 || __EMX__ // printf("Selecting line %d...\n", i); fileList->topline(i); fileList->select(i); @@ -1534,7 +1612,9 @@ void Fl_File_Chooser::show() rescan_keep_filename(); fl_cursor(FL_CURSOR_DEFAULT); fileName->take_focus(); - if (!Fl::system_driver()->dot_file_hidden()) showHiddenButton->hide(); +#ifdef WIN32 + showHiddenButton->hide(); +#endif } void Fl_File_Chooser::showHidden(int value) @@ -1580,7 +1660,11 @@ compare_dirnames(const char *a, const char *b) { if (alen != blen) return alen - blen; // Do a comparison of the first N chars (alen == blen at this point)... - return Fl::system_driver()->case_insensitive_filenames() ? strncasecmp(a, b, alen) : strncmp(a, b, alen); +#ifdef WIN32 + return strncasecmp(a, b, alen); +#else + return strncmp(a, b, alen); +#endif // WIN32 } @@ -1637,5 +1721,23 @@ unquote_pathname(char *dst, // O - Destination string } // +// 'get_homedir()' - Try to find the home directory (platform dependent). + +static const char* +get_homedir() { + + const char *home = fl_getenv("HOME"); + +#ifdef WIN32 + + if (!home) home = fl_getenv("UserProfile"); + +#endif // WIN32 + + return home; +} + + +// // End of "$Id$". // |
