]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/filedlgg.cpp
added copy arrow cursor macos specific
[wxWidgets.git] / src / generic / filedlgg.cpp
index 1bb598fe6c7a30e63b259f9792e44be141e80e6f..611fcf0a0424523f99644e29f90060e7e970e7d5 100644 (file)
@@ -55,6 +55,7 @@
 #include "wx/imaglist.h"
 #include "wx/dir.h"
 #include "wx/artprov.h"
+#include "wx/hash.h"
 
 #if wxUSE_TOOLTIPS
     #include "wx/tooltip.h"
@@ -254,7 +255,7 @@ wxFileIconsTable::wxFileIconsTable() :
 
 static wxBitmap CreateAntialiasedBitmap(const wxImage& img)
 {
-    wxImage small(16, 16);
+    wxImage smallimg (16, 16);
     unsigned char *p1, *p2, *ps;
     unsigned char mr = img.GetMaskRed(),
                   mg = img.GetMaskGreen(),
@@ -263,8 +264,8 @@ static wxBitmap CreateAntialiasedBitmap(const wxImage& img)
     unsigned x, y;
     unsigned sr, sg, sb, smask;
 
-    p1 = img.GetData(), p2 = img.GetData() + 3 * 32, ps = small.GetData();
-    small.SetMaskColour(mr, mr, mr);
+    p1 = img.GetData(), p2 = img.GetData() + 3 * 32, ps = smallimg.GetData();
+    smallimg.SetMaskColour(mr, mr, mr);
 
     for (y = 0; y < 16; y++)
     {
@@ -297,7 +298,7 @@ static wxBitmap CreateAntialiasedBitmap(const wxImage& img)
         p1 += 32 * 3, p2 += 32 * 3;
     }
 
-    return wxBitmap(small);
+    return wxBitmap(smallimg);
 }
 
 // finds empty borders and return non-empty area of image:
@@ -366,16 +367,11 @@ int wxFileIconsTable::GetIconID(const wxString& extension, const wxString& mime)
         m_HashTable.Put(extension, new wxFileIconEntry(newid));
         return newid;
     }
-#ifdef __WIN32__
-    wxBitmap myBitmap (ic.GetWidth(), ic.GetHeight() ) ;
-    wxMemoryDC memDC;
-    memDC.SelectObject( myBitmap );
-    memDC.DrawIcon(ic,0,0);
-    memDC.SelectObject( wxNullBitmap );
-    wxImage img = myBitmap.ConvertToImage();
-#else
-    wxImage img = ic.ConvertToImage();
-#endif
+    
+    wxBitmap tmpBmp;
+    tmpBmp.CopyFromIcon(ic);
+    wxImage img = tmpBmp.ConvertToImage();
+    
     delete ft;
 
     int id = m_ImageList.GetImageCount();
@@ -445,33 +441,29 @@ wxFileData::wxFileData( const wxString &name, const wxString &fname )
     if (name.length() == 2 && name[1u] == wxT(':'))
     {
         m_isDir = TRUE;
-        m_isExe = m_isLink = FALSE;
+        m_isExe =
+        m_isLink = FALSE;
         m_size = 0;
         return;
     }
-#endif
+#endif // __DOS__ || __WINDOWS__
 
     wxStructStat buff;
-    wxStat( m_fileName, &buff );
 
 #if defined(__UNIX__) && (!defined( __EMX__ ) && !defined(__VMS))
-    struct stat lbuff;
-    lstat( m_fileName.fn_str(), &lbuff );
-    m_isLink = S_ISLNK( lbuff.st_mode );
-    struct tm *t = localtime( &lbuff.st_mtime );
-#else
+    lstat( m_fileName.fn_str(), &buff );
+    m_isLink = S_ISLNK( buff.st_mode );
+#else // no lstat()
+    wxStat( m_fileName, &buff );
     m_isLink = FALSE;
-    struct tm *t = localtime( &buff.st_mtime );
 #endif
 
-//  struct passwd *user = getpwuid( buff.st_uid );
-//  struct group *grp = getgrgid( buff.st_gid );
-
-    m_isDir = S_ISDIR( buff.st_mode );
-    m_isExe = ((buff.st_mode & S_IXUSR ) == S_IXUSR );
+    m_isDir = (buff.st_mode & S_IFDIR) != 0;
+    m_isExe = (buff.st_mode & wxS_IXUSR) != 0;
 
     m_size = buff.st_size;
 
+    const struct tm * const t = localtime( &buff.st_mtime );
     m_hour = t->tm_hour;
     m_minute = t->tm_min;
     m_month = t->tm_mon+1;
@@ -479,21 +471,10 @@ wxFileData::wxFileData( const wxString &name, const wxString &fname )
     m_year = t->tm_year;
     m_year += 1900;
 
-    char buffer[10];
-    sprintf( buffer, "%c%c%c",
-     ((( buff.st_mode & S_IRUSR ) == S_IRUSR ) ? 'r' : '-'),
-     ((( buff.st_mode & S_IWUSR ) == S_IWUSR ) ? 'w' : '-'),
-     ((( buff.st_mode & S_IXUSR ) == S_IXUSR ) ? 'x' : '-') );
-#if wxUSE_UNICODE
-    m_permissions = wxConvUTF8.cMB2WC( buffer );
-#else
-    m_permissions = buffer;
-#endif
-
-//    m_permissions.sprintf( wxT("%c%c%c"),
-//     ((( buff.st_mode & S_IRUSR ) == S_IRUSR ) ? wxT('r') : wxT('-')),
-//     ((( buff.st_mode & S_IWUSR ) == S_IWUSR ) ? wxT('w') : wxT('-')),
-//     ((( buff.st_mode & S_IXUSR ) == S_IXUSR ) ? wxT('x') : wxT('-')) );
+    m_permissions.Printf(_T("%c%c%c"),
+                         buff.st_mode & wxS_IRUSR ? _T('r') : _T('-'),
+                         buff.st_mode & wxS_IWUSR ? _T('w') : _T('-'),
+                         buff.st_mode & wxS_IXUSR ? _T('x') : _T('-'));
 }
 
 wxString wxFileData::GetName() const
@@ -1258,8 +1239,8 @@ void wxFileDialog::DoSetFilterIndex(int filterindex)
     m_filterIndex = filterindex;
     if ( str->Left(2) == wxT("*.") )
     {
-        m_filterExtension = str->Mid(2);
-        if (m_filterExtension == _T("*"))
+        m_filterExtension = str->Mid(1);
+        if (m_filterExtension == _T(".*"))
             m_filterExtension.clear();
     }
     else
@@ -1307,13 +1288,13 @@ void wxFileDialog::OnTextChange( wxCommandEvent &WXUNUSED(event) )
         // not get the file whose name they typed.
         if (m_list->GetSelectedItemCount() > 0)
         {
-           long item = m_list->GetNextItem(-1, wxLIST_NEXT_ALL,
+            long item = m_list->GetNextItem(-1, wxLIST_NEXT_ALL,
                 wxLIST_STATE_SELECTED);
             while ( item != -1 )
-           {
+            {
                 m_list->SetItemState(item,0, wxLIST_STATE_SELECTED);
                 item = m_list->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
-           }
+            }
         }
     }
 }
@@ -1560,50 +1541,98 @@ void wxFileDialog::GetFilenames(wxArrayString& files) const
 // global functions
 // ----------------------------------------------------------------------------
 
+// common part of both wxFileSelectorEx() and wxFileSelector()
+static wxString
+DoSelectFile(const wxChar *title,
+             const wxChar *defaultDir,
+             const wxChar *defaultFileName,
+             const wxChar *defaultExtension,
+             int *indexDefaultExtension,
+             const wxChar *filter,
+             int flags,
+             wxWindow *parent,
+             int x,
+             int y)
+{
+    // the filter may be either given explicitly or created automatically from
+    // the default extension
+    wxString filterReal;
+    if ( filter )
+    {
+        // the user has specified the filter explicitly, use it
+        filterReal = filter;
+    }
+    else if ( !wxIsEmpty(defaultExtension) )
+    {
+        // create the filter to match the given extension
+        filterReal << wxT("*.") << defaultExtension;
+    }
+
+    wxFileDialog fileDialog(parent,
+                            title,
+                            defaultDir,
+                            defaultFileName,
+                            filterReal,
+                            flags,
+                            wxPoint(x, y));
+
+    wxString path;
+    if ( fileDialog.ShowModal() == wxID_OK )
+    {
+        path = fileDialog.GetPath();
+        if ( indexDefaultExtension )
+        {
+            *indexDefaultExtension = fileDialog.GetFilterIndex();
+        }
+    }
+
+    return path;
+}
+
 wxString
-wxFileSelectorEx(const wxChar *message,
-                 const wxChar *default_path,
-                 const wxChar *default_filename,
-                 int *WXUNUSED(indexDefaultExtension),
-                 const wxChar *wildcard,
+wxFileSelectorEx(const wxChar *title,
+                 const wxChar *defaultDir,
+                 const wxChar *defaultFileName,
+                 int *indexDefaultExtension,
+                 const wxChar *filter,
                  int flags,
                  wxWindow *parent,
-                 int x, int y)
+                 int x,
+                 int y)
 {
-    // TODO: implement this somehow
-    return wxFileSelector(message, default_path, default_filename, wxT(""),
-                          wildcard, flags, parent, x, y);
+    return DoSelectFile(title,
+                        defaultDir,
+                        defaultFileName,
+                        wxT(""),                // def ext determined by index
+                        indexDefaultExtension,
+                        filter,
+                        flags,
+                        parent,
+                        x,
+                        y);
 }
 
-wxString wxFileSelector( const wxChar *title,
-                      const wxChar *defaultDir, const wxChar *defaultFileName,
-                      const wxChar *defaultExtension, const wxChar *filter, int flags,
-                      wxWindow *parent, int x, int y )
+wxString
+wxFileSelector(const wxChar *title,
+               const wxChar *defaultDir,
+               const wxChar *defaultFileName,
+               const wxChar *defaultExtension,
+               const wxChar *filter,
+               int flags,
+               wxWindow *parent,
+               int x,
+               int y)
 {
-    wxString filter2;
-    if ( defaultExtension && !filter )
-        filter2 = wxString(wxT("*.")) + wxString(defaultExtension) ;
-    else if ( filter )
-        filter2 = filter;
-
-    wxString defaultDirString;
-    if (defaultDir)
-        defaultDirString = defaultDir;
-
-    wxString defaultFilenameString;
-    if (defaultFileName)
-        defaultFilenameString = defaultFileName;
-
-    wxFileDialog fileDialog( parent, title, defaultDirString, defaultFilenameString, filter2, flags, wxPoint(x, y) );
-
-    if ( fileDialog.ShowModal() == wxID_OK )
-    {
-        return fileDialog.GetPath();
-    }
-    else
-    {
-        return wxEmptyString;
-    }
+    return DoSelectFile(title,
+                        defaultDir,
+                        defaultFileName,
+                        defaultExtension,
+                        NULL,               // not interested in filter index
+                        filter,
+                        flags,
+                        parent,
+                        x,
+                        y);
 }
 
 static wxString GetWildcardString(const wxChar *ext)