]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/filedlgg.cpp
Remove unnecessary TranslateBookFlag() from the notebook sample.
[wxWidgets.git] / src / generic / filedlgg.cpp
index ad39eb36b639a26c5d0a15629c769727bb4141cd..a2a370d862fed7f76af7e71bdf2b782209b116b3 100644 (file)
-/////////////////////////////////////////////////////////////////////////////
-// Name:        filedlgg.cpp
-// Purpose:     wxFileDialog
+//////////////////////////////////////////////////////////////////////////////
+// Name:        src/generic/filedlgg.cpp
+// Purpose:     wxGenericFileDialog
 // Author:      Robert Roebling
 // Modified by:
 // Created:     12/12/98
 // RCS-ID:      $Id$
 // Copyright:   (c) Robert Roebling
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-#pragma implementation "filedlgg.h"
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
-#pragma hdrstop
+    #pragma hdrstop
 #endif
 
-#ifndef __UNIX__
-#error wxFileDialog currently only supports unix
-#endif
-
-#include "wx/filedlg.h"
-#include "wx/dnd.h"
-#include "wx/debug.h"
-#include "wx/log.h"
-#include "wx/intl.h"
-#include "wx/msgdlg.h"
-#include "wx/sizer.h"
-
-#include "sys/types.h"
-#include "sys/stat.h"
-#include "dirent.h"
-#include "pwd.h"
-#include "grp.h"
-#include "time.h"
-
-#include "wx/generic/folder.xpm"
-#include "wx/generic/txt.xpm"
-#include "wx/generic/list.xpm"
-#include "wx/generic/find.xpm"
+#if wxUSE_FILEDLG
 
-//-----------------------------------------------------------------------------
-//  wxFileData
-//-----------------------------------------------------------------------------
-
-IMPLEMENT_DYNAMIC_CLASS(wxFileData,wxObject);
+// NOTE : it probably also supports MAC, untested
+#if !defined(__UNIX__) && !defined(__DOS__) && !defined(__WIN32__) && !defined(__OS2__)
+#error wxGenericFileDialog currently only supports Unix, win32 and DOS
+#endif
 
-wxFileData::wxFileData( const wxString &name, const wxString &fname )
-{
-    m_name = name;
-    m_fileName = fname;
-
-    struct stat buff;
-    stat( m_fileName.GetData(), &buff );
-    struct stat lbuff;
-    lstat( m_fileName.GetData(), &lbuff );
-
-    struct tm *t = localtime( &lbuff.st_mtime );
-//  struct passwd *user = getpwuid( buff.st_uid );
-//  struct group *grp = getgrgid( buff.st_gid );
-
-    m_isDir = S_ISDIR( buff.st_mode );
-    m_isLink = S_ISLNK( lbuff.st_mode );
-    m_isExe = ((buff.st_mode & S_IXUSR ) == S_IXUSR );
-
-    m_size = buff.st_size;
-
-    m_hour = t->tm_hour;
-    m_minute = t->tm_min;
-    m_month = t->tm_mon+1;
-    m_day = t->tm_mday;
-    m_year = t->tm_year;
-
-    m_permissions.sprintf( "%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' : '-') );
-}
+#ifndef WX_PRECOMP
+    #ifdef __WXMSW__
+        #include "wx/msw/wrapwin.h"
+    #endif
+    #include "wx/hash.h"
+    #include "wx/intl.h"
+    #include "wx/settings.h"
+    #include "wx/log.h"
+    #include "wx/msgdlg.h"
+    #include "wx/bmpbuttn.h"
+    #include "wx/checkbox.h"
+    #include "wx/choice.h"
+    #include "wx/stattext.h"
+    #include "wx/textctrl.h"
+    #include "wx/sizer.h"
+    #include "wx/filedlg.h"     // wxFD_OPEN, wxFD_SAVE...
+#endif
 
-wxString wxFileData::GetName() const
-{
-    return m_name;
-}
+#include "wx/longlong.h"
+#include "wx/config.h"
+#include "wx/imaglist.h"
+#include "wx/artprov.h"
+#include "wx/filefn.h"
+#include "wx/filectrl.h"
+#include "wx/generic/filedlgg.h"
+#include "wx/debug.h"
 
-wxString wxFileData::GetFullName() const
-{
-    return m_fileName;
-}
+#if wxUSE_TOOLTIPS
+    #include "wx/tooltip.h"
+#endif
+#if wxUSE_CONFIG
+    #include "wx/config.h"
+#endif
 
-wxString wxFileData::GetHint() const
-{
-    wxString s = m_fileName;
-    s += "  ";
-    if (m_isDir) s += _("<DIR> ");
-    else if (m_isLink) s += _("<LINK> ");
-    else
-    {
-        s += LongToString( m_size );
-        s += _(" bytes ");
-    }
-    s += IntToString( m_day );
-    s += _T(".");
-    s += IntToString( m_month );
-    s += _T(".");
-    s += IntToString( m_year );
-    s += _T("  ");
-    s += IntToString( m_hour );
-    s += _T(":");
-    s += IntToString( m_minute );
-    s += _T("  ");
-    s += m_permissions;
-    return s;
-};
-
-wxString wxFileData::GetEntry( const int num )
-{
-    wxString s;
-    switch (num)
-    {
-        case 0:
-            s = m_name;
-            break;
-        case 1:
-            if (m_isDir) s = _("<DIR>");
-            else if (m_isLink) s = _("<LINK>");
-            else s = LongToString( m_size );
-            break;
-        case 2:
-            if (m_day < 10) s = _T("0"); else s = _T("");
-            s += IntToString( m_day );
-            s += _T(".");
-            if (m_month < 10) s += _T("0"); 
-            s += IntToString( m_month );
-            s += _T(".");
-            if (m_year < 10) s += _T("0"); // this should happen real soon...
-            s += IntToString( m_year );
-            break;
-        case 3:
-            if (m_hour < 10) s = _T("0"); else s = _T("");
-            s += IntToString( m_hour );
-            s += _T(":");
-            if (m_minute < 10) s += _T("0");
-            s += IntToString( m_minute );
-            break;
-        case 4:
-            s = m_permissions;
-            break;
-        default:
-            s = _T("No entry");
-            break;
-    }
-    return s;
-}
+#ifndef __WXWINCE__
+    #include <sys/types.h>
+    #include <sys/stat.h>
+#endif
 
-bool wxFileData::IsDir()
-{
-    return m_isDir;
-}
+#ifdef __UNIX__
+    #include <dirent.h>
+    #include <pwd.h>
+    #ifndef __VMS
+    # include <grp.h>
+    #endif
+#endif
 
-bool wxFileData::IsExe()
-{
-    return m_isExe;
-}
+#ifdef __WINDOWS__
+    #include "wx/msw/mslu.h"
+#endif
 
-bool wxFileData::IsLink()
-{
-    return m_isLink;
-}
+#ifdef __WATCOMC__
+    #include <direct.h>
+#endif
 
-long wxFileData::GetSize()
-{
-    return m_size;
-}
+#ifndef __WXWINCE__
+#include <time.h>
+#endif
 
-bool wxFileData::NewNameIsLegal( const wxString &s )
-{
-    wxString fileName = wxPathOnly( m_fileName );
-    fileName += _T("/");
-    fileName += s;
-    return (!wxFileExists( fileName ));
-}
+#if defined(__UNIX__) || defined(__DOS__)
+#include <unistd.h>
+#endif
 
-bool wxFileData::Rename( const wxString &s )
-{
-    wxString fileName = wxPathOnly( m_fileName );
-    fileName += _T("/");
-    fileName += s;
-    bool ret = wxRenameFile( m_fileName, fileName );
-    if (ret)
-    {
-        m_fileName = fileName;
-        m_name = s;
-    }
-    return ret;
-}
+#if defined(__WXWINCE__)
+#define IsTopMostDir(dir) (dir == wxT("\\") || dir == wxT("/"))
+#elif (defined(__DOS__) || defined(__WINDOWS__) || defined (__OS2__))
+#define IsTopMostDir(dir)   (dir.empty())
+#else
+#define IsTopMostDir(dir)   (dir == wxT("/"))
+#endif
 
-void wxFileData::MakeItem( wxListItem &item )
-{
-    item.m_text = m_name;
-    item.m_colour = wxBLACK;
-    if (IsExe()) item.m_colour = wxRED;
-    if (IsDir()) item.m_colour = wxBLUE;
-    if (IsLink())
-    {
-        wxColour *dg = wxTheColourDatabase->FindColour( "MEDIUM GREY" );
-        item.m_colour = dg;
-    }
-    item.m_data = (long)this;
-}
-  
 //-----------------------------------------------------------------------------
-//  wxFileCtrl
+// wxGenericFileDialog
 //-----------------------------------------------------------------------------
 
-IMPLEMENT_DYNAMIC_CLASS(wxFileCtrl,wxListCtrl);
-
-BEGIN_EVENT_TABLE(wxFileCtrl,wxListCtrl)
+#define  ID_LIST_MODE     (wxID_FILEDLGG    )
+#define  ID_REPORT_MODE   (wxID_FILEDLGG + 1)
+#define  ID_UP_DIR        (wxID_FILEDLGG + 2)
+#define  ID_HOME_DIR      (wxID_FILEDLGG + 3)
+#define  ID_NEW_DIR       (wxID_FILEDLGG + 4)
+#define  ID_FILE_CTRL     (wxID_FILEDLGG + 5)
+
+IMPLEMENT_DYNAMIC_CLASS(wxGenericFileDialog, wxFileDialogBase)
+
+BEGIN_EVENT_TABLE(wxGenericFileDialog,wxDialog)
+    EVT_BUTTON(ID_LIST_MODE, wxGenericFileDialog::OnList)
+    EVT_BUTTON(ID_REPORT_MODE, wxGenericFileDialog::OnReport)
+    EVT_BUTTON(ID_UP_DIR, wxGenericFileDialog::OnUp)
+    EVT_BUTTON(ID_HOME_DIR, wxGenericFileDialog::OnHome)
+    EVT_BUTTON(ID_NEW_DIR, wxGenericFileDialog::OnNew)
+    EVT_BUTTON(wxID_OK, wxGenericFileDialog::OnOk)
+    EVT_FILECTRL_FILEACTIVATED(ID_FILE_CTRL, wxGenericFileDialog::OnFileActivated)
+
+    EVT_UPDATE_UI(ID_UP_DIR, wxGenericFileDialog::OnUpdateButtonsUI)
+#if defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
+    EVT_UPDATE_UI(ID_NEW_DIR, wxGenericFileDialog::OnUpdateButtonsUI)
+#endif // defined(__DOS__) || defined(__WINDOWS__) || defined(__OS2__)
 END_EVENT_TABLE()
 
-wxFileCtrl::wxFileCtrl()
-{
-    m_dirName = _T("/");
-    m_showHidden = FALSE;
-}
-
-wxFileCtrl::wxFileCtrl( wxWindow *win, wxWindowID id, const wxString &dirName,
-    const wxPoint &pos, const wxSize &size,
-    long style, const wxValidator &validator, const wxString &name ) :
-  wxListCtrl( win, id, pos, size, style, validator, name )
-{
-    SetItemSpacing( 40 );
-    wxImageList *imageList = new wxImageList( 30, 30 );
-    imageList->Add( wxBitmap( folder_xpm ) );
-    imageList->Add( wxBitmap( txt_xpm ) );
-    imageList->Add( wxBitmap( list_xpm ) );
-    imageList->Add( wxBitmap( find_xpm ) );
-  
-    SetImageList( imageList, wxIMAGE_LIST_NORMAL );
-  
-    m_dirName = dirName;
-    m_showHidden = FALSE;
-    Update();
-  
-//  SetDropTarget( new wxFileDropTarget() );
-}
+long wxGenericFileDialog::ms_lastViewStyle = wxLC_LIST;
+bool wxGenericFileDialog::ms_lastShowHidden = false;
 
-void wxFileCtrl::ChangeToListMode()
+void wxGenericFileDialog::Init()
 {
-    SetSingleStyle( wxLC_LIST );
-    Update();
-}
+    m_bypassGenericImpl = false;
 
-void wxFileCtrl::ChangeToReportMode()
-{
-    SetSingleStyle( wxLC_REPORT );
-    Update();
+    m_filectrl   = NULL;
+    m_upDirButton  = NULL;
+    m_newDirButton = NULL;
 }
 
-void wxFileCtrl::ChangeToIconMode()
+wxGenericFileDialog::wxGenericFileDialog(wxWindow *parent,
+                           const wxString& message,
+                           const wxString& defaultDir,
+                           const wxString& defaultFile,
+                           const wxString& wildCard,
+                           long  style,
+                           const wxPoint& pos,
+                           const wxSize& sz,
+                           const wxString& name,
+                           bool  bypassGenericImpl ) : wxFileDialogBase()
 {
-    SetSingleStyle( wxLC_ICON );
-    Update();
+    Init();
+    Create( parent, message, defaultDir, defaultFile, wildCard, style, pos, sz, name, bypassGenericImpl );
 }
 
-void wxFileCtrl::ShowHidden( bool show )
+bool wxGenericFileDialog::Create( wxWindow *parent,
+                                  const wxString& message,
+                                  const wxString& defaultDir,
+                                  const wxString& defaultFile,
+                                  const wxString& wildCard,
+                                  long  style,
+                                  const wxPoint& pos,
+                                  const wxSize& sz,
+                                  const wxString& name,
+                                  bool  bypassGenericImpl )
 {
-    m_showHidden = show;
-    Update();
-}
+    m_bypassGenericImpl = bypassGenericImpl;
 
-int ListCompare( const long data1, const long data2, const long WXUNUSED(data) )
-{
-     wxFileData *fd1 = (wxFileData*)data1 ;
-     wxFileData *fd2 = (wxFileData*)data2 ;
-     if (fd1->IsDir() && !fd2->IsDir()) return -1;
-     if (fd2->IsDir() && !fd1->IsDir()) return 1;
-     return strcmp( fd1->GetName(), fd2->GetName() );
-}
+    parent = GetParentForModalDialog(parent, style);
 
-void wxFileCtrl::Update()
-{ 
-    ClearAll();
-    long my_style = GetWindowStyleFlag();
-    if (my_style & wxLC_REPORT)
+    if (!wxFileDialogBase::Create(parent, message, defaultDir, defaultFile,
+                                  wildCard, style, pos, sz, name))
     {
-        InsertColumn( 0, _("Name"), wxLIST_FORMAT_LEFT, 110 );
-        InsertColumn( 1, _("Size"), wxLIST_FORMAT_LEFT, 60 );
-        InsertColumn( 2, _("Date"), wxLIST_FORMAT_LEFT, 55 );
-        InsertColumn( 3, _("Time"), wxLIST_FORMAT_LEFT, 50 );
-        InsertColumn( 4, _("Permissions"), wxLIST_FORMAT_LEFT, 120 );
+        return false;
     }
-    wxFileData *fd = (wxFileData *) NULL;
-    wxListItem item;
-    item.m_mask = wxLIST_MASK_TEXT + wxLIST_MASK_DATA;
-    if (my_style & wxLC_ICON) item.m_mask += wxLIST_MASK_IMAGE;
-    item.m_itemId = 0;
-    item.m_col = 0;
-    wxString s;
-    wxString res = m_dirName + _T("/*");
-    wxString f( wxFindFirstFile( res.GetData(), 0 ) );
-    while (!f.IsEmpty())
+
+    if (m_bypassGenericImpl)
+        return true;
+
+    if (!wxDialog::Create( parent, wxID_ANY, message, pos, sz,
+                           wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | style, name
+                           ))
     {
-        res = wxFileNameFromPath( f );
-        fd = new wxFileData( res, f );
-        s = fd->GetName();
-        if (m_showHidden || (s[0] != '.'))
-        {
-            fd->MakeItem( item );
-            if (my_style & wxLC_REPORT)
-            {
-                InsertItem( item );
-                for (int i = 1; i < 5; i++) SetItem( item.m_itemId, i, fd->GetEntry( i) );
-            }
-            else if (my_style & wxLC_LIST)
-            {
-                InsertItem( item );
-            } 
-            else if (my_style & wxLC_ICON)
-            {
-                if (fd->IsDir()) item.m_image = 0; else item.m_image = 1;
-                InsertItem( item );
-            } 
-            item.m_itemId++;
-        }
-        f = wxFindNextFile();
+        return false;
     }
-    SortItems( ListCompare, 0 );
-}
 
-int wxFileCtrl::FillList( wxStringList &list )
-{
-    long index = -1;
-    int count = 0;
-    wxString s;
-    for (;;)
+#if wxUSE_CONFIG
+    if (wxConfig::Get(false))
     {
-        index = GetNextItem( index, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED );
-        if (index == -1) break;
-        wxListItem item;
-        item.m_itemId = index;
-        GetItem( item );
-        wxFileData *fd = (wxFileData*)item.m_data;
-        list.Add( fd->GetFullName() );
-        index++;
-        count++;
+        wxConfig::Get()->Read(wxT("/wxWindows/wxFileDialog/ViewStyle"),
+                              &ms_lastViewStyle);
+        wxConfig::Get()->Read(wxT("/wxWindows/wxFileDialog/ShowHidden"),
+                              &ms_lastShowHidden);
     }
-    if (count == 0)
+#endif
+
+    if ((m_dir.empty()) || (m_dir == wxT(".")))
     {
-        index = GetNextItem( -1, wxLIST_NEXT_ALL, wxLIST_STATE_FOCUSED );
-        if (index == -1) return 0;
-        wxListItem item;
-        item.m_itemId = index;
-        GetItem( item );
-        wxFileData *fd = (wxFileData*)item.m_data;
-        list.Add( fd->GetFullName() );
-        count = 1;
+        m_dir = wxGetCwd();
+        if (m_dir.empty())
+            m_dir = wxFILE_SEP_PATH;
     }
-    return count;
-}
 
-void wxFileCtrl::DeleteFiles()
-{
-/*
-  wxStringList list;
-  int count = FillList( list );
-  if (count > 0)
-  { 
-    wxString s = "Delete ";
-    s += wxIntToString( count );
-    s += " selected file";
-    if (count > 1) s += "s";
-    s += " or director";
-    if (count > 1) s += "ies?"; else s+= "y?";
-    if (wxYES == wxMessageBox( s, "Delete", wxYES_NO ))
-      wxDeleteStatusDia( NULL, &list );
-  };
-*/
-}
+    const size_t len = m_dir.length();
+    if ((len > 1) && (wxEndsWithPathSeparator(m_dir)))
+        m_dir.Remove( len-1, 1 );
 
-void wxFileCtrl::CopyFiles( char *WXUNUSED(dest) )
-{
-/*
-  wxStringList list;
-  int count = FillList( list );
-  wxString s = dest;
-  int ret = 0; // 0 = nix, 1 = copy, 2 = move
-  wxCopyMoveDia( (wxFrame*)GetParent(), count, &ret, &s );
-  if (ret == 1) 
-    wxCopyStatusDia( NULL, s, &list );
-*/
-}
-
-void wxFileCtrl::MoveFiles( char *WXUNUSED(dest) )
-{
-}
+    m_filterExtension = wxEmptyString;
 
-void wxFileCtrl::RenameFile()
-{
-}
+    // layout
 
-void wxFileCtrl::MakeDir()
-{
-/*
-  wxString s = wxGetTextFromUser( "Enter new directory name:", "Make directory" );
-  if (s.IsNull()) return;
-  if (s == "") return;
-  if ((s == ".") || (s == ".."))
-  {
-    wxMessageBox( "This was obviously an invalid directory name.", "Go away." );
-    return;
-  };
-  wxString dir;
-  GetDir( dir );
-  dir += "/";
-  dir += s;
-  if (wxFileExists( dir ))
-  {
-    wxMessageBox( "Filename exists already. Cannot create directoy.", "Make directory" );
-    return;
-  };
-  wxMkdir( dir );
-  Update();
-*/
-}
+    const bool is_pda = (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA);
 
-void wxFileCtrl::GoToParentDir()
-{
-    wxString s = m_dirName;
-    int pos = s.Last( _T('/') );  
-    if ((pos >= 0) && (s != _T("/")))
-    {
-        s.Remove( pos, s.Length()-pos );
-        if (s.Length() == 0) s = _T("/");
-        m_dirName = s;
-        Update();
-    }
-}
+    wxBoxSizer *mainsizer = new wxBoxSizer( wxVERTICAL );
 
-void wxFileCtrl::GoToHomeDir()
-{
-    wxString s = wxGetUserHome( wxString() );
-    m_dirName = s;
-    Update();
-}
+    wxBoxSizer *buttonsizer = new wxBoxSizer( wxHORIZONTAL );
+    AddBitmapButton( ID_LIST_MODE, wxART_LIST_VIEW,
+                     _("View files as a list view"), buttonsizer );
+    AddBitmapButton( ID_REPORT_MODE, wxART_REPORT_VIEW,
+                     _("View files as a detailed view"), buttonsizer );
+    buttonsizer->Add( 30, 5, 1 );
+    m_upDirButton = AddBitmapButton( ID_UP_DIR, wxART_GO_DIR_UP,
+                                     _("Go to parent directory"), buttonsizer );
+
+#ifndef __DOS__ // VS: Home directory is meaningless in MS-DOS...
+    AddBitmapButton( ID_HOME_DIR, wxART_GO_HOME,
+                     _("Go to home directory"), buttonsizer );
+    buttonsizer->Add( 20, 20 );
+#endif //!__DOS__
+
+    m_newDirButton = AddBitmapButton( ID_NEW_DIR, wxART_NEW_DIR,
+                                      _("Create new directory"), buttonsizer );
+
+    if (is_pda)
+        mainsizer->Add( buttonsizer, wxSizerFlags().Expand() );
+    else
+        mainsizer->Add( buttonsizer, wxSizerFlags().Expand()
+                                                   .Border( wxLEFT | wxRIGHT | wxTOP ) );
 
-void wxFileCtrl::GoToDir( const wxString &dir )
-{
-    m_dirName = dir;
-    Update();
-}
+    long style2 = 0;
+    if ( HasFdFlag(wxFD_MULTIPLE) )
+        style2 |= wxFC_MULTIPLE;
 
-void wxFileCtrl::GetDir( wxString &dir )
-{
-    dir = m_dirName;
-}
+    m_filectrl = new wxGenericFileCtrl( this, ID_FILE_CTRL,
+                                        m_dir, defaultFile,
+                                        wildCard,
+                                        style2,
+                                        wxDefaultPosition, wxSize(540,200)
+                                        );
 
-/*
-void wxFileCtrl::OnDropFiles( int WXUNUSED(n), char **WXUNUSED(data), int WXUNUSED(x), int WXUNUSED(y) )
-{
-  wxString destDir;
-  wxPoint pt( x, y );
-  int flag = wxLIST_HITTEST_ONITEM;
-  long hit = HitTest( pt, flag );
-  if (hit > -1)
-  {
-    wxListItem li;
-    li.m_itemId = hit;
-    GetItem( li );
-    wxFileData *fd = (wxFileData*)li.m_data;
-    if (fd->IsDir()) fd->GetFullName( destDir );
-  };
-  if (destDir.IsNull()) destDir = m_dirName;
-  int ret = 0; // 0 = nix, 1 = copy, 2 = move
-  wxCopyMoveDia( (wxFrame*)GetParent(), n, &ret, &destDir );
-  if (ret == 1)
-  {  
-     wxStringList slist;
-     for (int i = 0; i < n; i++) slist.Add( data[i] );
-     wxCopyStatusDia( NULL, destDir.GetData(), &slist );
-     Update();
-  };
-};
-*/
-
-void wxFileCtrl::OnListDeleteItem( wxListEvent &event )
-{
-    wxFileData *fd = (wxFileData*)event.m_item.m_data;
-    delete fd;
-}
+    m_filectrl->ShowHidden( ms_lastShowHidden );
 
-void wxFileCtrl::OnListKeyDown( wxListEvent &event )
-{
-    wxFileData *fd = (wxFileData*)event.m_item.m_data;
-    if (fd->IsDir())
+    if (ms_lastViewStyle == wxLC_LIST)
     {
-        m_dirName = fd->GetFullName();
-        Update();
-        Refresh();
-        return;
+        m_filectrl->ChangeToListMode();
     }
-    if (fd->IsExe())
+    else if (ms_lastViewStyle == wxLC_REPORT)
     {
-        wxExecute( fd->GetFullName() );
-        return;
+        m_filectrl->ChangeToReportMode();
     }
-}
 
-void wxFileCtrl::OnListEndLabelEdit( wxListEvent &event )
-{
-    wxFileData *fd = (wxFileData*)event.m_item.m_data;
-    wxString newName = event.m_item.m_text;
-    if (fd->NewNameIsLegal( newName ))
+    mainsizer->Add(m_filectrl, wxSizerFlags(1).Expand().HorzBorder());
+
+    wxSizer *bsizer = CreateButtonSizer(wxOK | wxCANCEL);
+    if ( bsizer )
     {
-        if (fd->Rename( newName ))
-        {
-            Update();
-        }
+        if (is_pda)
+            mainsizer->Add(bsizer, wxSizerFlags().Expand().Border());
         else
-        {
-            wxString s = _("Could not rename file to ");
-            s += newName;
-            s += ".";
-            wxMessageBox( s, _("File dialog"), wxOK );
-        }
+            mainsizer->Add(bsizer, wxSizerFlags().Expand().DoubleBorder());
     }
-    else
-    {
-        wxString s = "File name ";
-        s += newName;
-        s += " exists already or is invalid.\n";
-        s += "Could not rename file.";
-        wxMessageBox( s, _("File dialog"), wxOK );
-    }
-    return;
-}
 
-//-----------------------------------------------------------------------------
-// wxFileDialog
-//-----------------------------------------------------------------------------
+    SetSizer( mainsizer );
 
-/* **** */
-
-#define  ID_LIST_CTRL     5010
-#define  ID_LIST_MODE     5000
-#define  ID_REPORT_MODE   5001
-#define  ID_ICON_MODE     5002
-#define  ID_UP_DIR        5005
-#define  ID_PARENT_DIR    5006
-
-IMPLEMENT_DYNAMIC_CLASS(wxFileDialog,wxDialog)
-
-BEGIN_EVENT_TABLE(wxFileDialog,wxDialog)
-        EVT_BUTTON(ID_LIST_MODE, wxFileDialog::OnList)
-        EVT_BUTTON(ID_REPORT_MODE, wxFileDialog::OnReport)
-        EVT_BUTTON(ID_ICON_MODE, wxFileDialog::OnIcon)
-        EVT_BUTTON(ID_UP_DIR, wxFileDialog::OnUp)
-        EVT_BUTTON(ID_PARENT_DIR, wxFileDialog::OnHome)
-        EVT_BUTTON(wxID_OK, wxFileDialog::OnListOk)
-        EVT_LIST_ITEM_SELECTED(ID_LIST_CTRL, wxFileDialog::OnSelected)
-       EVT_LIST_ITEM_ACTIVATED(ID_LIST_CTRL, wxFileDialog::OnActivated)
-END_EVENT_TABLE()
+    if (!is_pda)
+    {
+        mainsizer->SetSizeHints( this );
 
-wxFileDialog::wxFileDialog(wxWindow *parent,
-                 const wxString& message,
-                 const wxString& defaultDir,
-                 const wxString& defaultFile,
-                 const wxString& wildCard,
-                 long style,
-                 const wxPoint& pos ) :
-  wxDialog( parent, -1, message )
-{
-    wxBeginBusyCursor();
-    
-    m_message = message;
-    m_dialogStyle = style;
-    m_dir = defaultDir;
-    if (m_dir.IsEmpty()) m_dir = wxGetUserHome();
-    m_path = defaultDir;
-    m_path += _T("/");
-    m_path += defaultFile;
-    m_fileName = defaultFile;
-    m_wildCard = wildCard;
-    m_filterIndex = 0;
-    
-    wxBoxSizer *mainsizer = new wxBoxSizer( wxVERTICAL );
-    
-    wxBoxSizer *buttonsizer = new wxBoxSizer( wxHORIZONTAL );
-    
-    buttonsizer->Add( new wxButton( this, ID_LIST_MODE, "List" ), 0, wxALL, 5 );
-    buttonsizer->Add( new wxButton( this, ID_REPORT_MODE, "Report" ), 0, wxALL, 5 );
-    buttonsizer->Add( new wxButton( this, ID_ICON_MODE, "Icon" ), 0, wxALL, 5 );
-    buttonsizer->Add( 30, 5 );
-    buttonsizer->Add( new wxButton( this, ID_UP_DIR, "Up" ), 0, wxALL, 5 );
-    buttonsizer->Add( new wxButton( this, ID_PARENT_DIR, "Home" ), 0, wxALL, 5 );
-    buttonsizer->Add( new wxButton( this, -1, "New..." ), 0, wxALL, 5 );
-    mainsizer->Add( buttonsizer, 0, wxALL | wxALIGN_RIGHT, 5 );
-    
-    m_list = new wxFileCtrl( this, ID_LIST_CTRL, "/", wxDefaultPosition, wxSize(200,180), 
-      wxLC_LIST | wxSUNKEN_BORDER | wxLC_SINGLE_SEL );
-    mainsizer->Add( m_list, 1, wxEXPAND | wxALL, 10 );
-    
-    wxBoxSizer *textsizer = new wxBoxSizer( wxHORIZONTAL );
-    m_text = new wxTextCtrl( this, -1, m_fileName );
-    textsizer->Add( m_text, 1, wxCENTER|wxALL, 10 );
-    textsizer->Add( new wxButton( this, wxID_OK, _("OK") ), 0, wxCENTER | wxLEFT|wxRIGHT|wxTOP, 10 );
-    mainsizer->Add( textsizer, 0, wxEXPAND );
-
-    wxBoxSizer *choicesizer = new wxBoxSizer( wxHORIZONTAL );
-    m_choice = new wxChoice( this, -1 );
-    m_choice->Append( "*.txt" );
-    choicesizer->Add( m_choice, 1, wxCENTER|wxALL, 10 );
-    choicesizer->Add( new wxButton( this, wxID_CANCEL, _("Cancel") ), 0, wxCENTER | wxALL, 10 );
-    mainsizer->Add( choicesizer, 0, wxEXPAND );
-
-    SetAutoLayout( TRUE );
-    SetSizer( mainsizer );
-    
-    mainsizer->Fit( this );
-    mainsizer->SetSizeHints( this );
-    
-    Centre( wxBOTH );
-    
-    wxEndBusyCursor();
+        Centre( wxBOTH );
+    }
+
+    return true;
 }
 
-void wxFileDialog::OnActivated( wxListEvent &WXUNUSED(event) )
+wxGenericFileDialog::~wxGenericFileDialog()
 {
-    wxCommandEvent cevent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK);
-    cevent.SetEventObject( this );
-    GetEventHandler()->ProcessEvent( cevent );
+    if (!m_bypassGenericImpl)
+    {
+#if wxUSE_CONFIG
+        if (wxConfig::Get(false))
+        {
+            wxConfig::Get()->Write(wxT("/wxWindows/wxFileDialog/ViewStyle"),
+                                   ms_lastViewStyle);
+            wxConfig::Get()->Write(wxT("/wxWindows/wxFileDialog/ShowHidden"),
+                                   ms_lastShowHidden);
+        }
+#endif
+    }
 }
 
-void wxFileDialog::OnSelected( wxListEvent &event )
+wxBitmapButton* wxGenericFileDialog::AddBitmapButton( wxWindowID winId,
+                                                      const wxArtID& artId,
+                                                      const wxString& tip,
+                                                      wxSizer *sizer)
 {
-    m_text->SetValue( event.m_item.m_text );
+    wxBitmapButton *but = new wxBitmapButton(this, winId,
+                                         wxArtProvider::GetBitmap(artId, wxART_BUTTON));
+    but->SetToolTip(tip);
+    sizer->Add(but, wxSizerFlags().Border());
+    return but;
 }
 
-void wxFileDialog::OnListOk( wxCommandEvent &event )
+int wxGenericFileDialog::ShowModal()
 {
-    wxString filename( m_text->GetValue() );
-    wxString dir;
-    m_list->GetDir( dir );
-    if (filename.IsEmpty()) return;
-    
-    dir += _T("/");
-    dir += filename;
-    filename = dir;
-    
-    if (wxDirExists(filename))
+    if (CreateExtraControl())
     {
-        m_list->GoToDir( filename );
-       m_text->SetValue( _T("") );
-       return;
+        wxSizer *sizer = GetSizer();
+        sizer->Insert(2 /* after m_filectrl */, m_extraControl,
+                      wxSizerFlags().Expand().HorzBorder());
+        sizer->Fit(this);
     }
-    
-    if ( (m_dialogStyle & wxSAVE) && (m_dialogStyle & wxOVERWRITE_PROMPT) )
-    {
-        if (wxFileExists( filename ))
-        {
-            wxString msg;
-            msg.Printf( _("File '%s' already exists, do you really want to "
-                         "overwrite it?"), filename.c_str() );
 
-            if (wxMessageBox(msg, _("Confirm"), wxYES_NO) != wxYES)
-                return;
-        }
-    }
-    else if ( (m_dialogStyle & wxOPEN) && (m_dialogStyle & wxFILE_MUST_EXIST) )
-    {
-        if ( !wxFileExists( filename ) )
-        {
-            wxMessageBox(_("Please choose an existing file."), _("Error"), wxOK);
+    m_filectrl->SetDirectory(m_dir);
 
-            return;
-        }
-    }
-
-    SetPath( filename );
-    event.Skip();
+    return wxDialog::ShowModal();
 }
 
-void wxFileDialog::OnList( wxCommandEvent &WXUNUSED(event) )
+bool wxGenericFileDialog::Show( bool show )
 {
-    m_list->ChangeToListMode();
-}
+    // Called by ShowModal, so don't repeate the update
+#ifndef __WIN32__
+    if (show)
+    {
+        m_filectrl->SetDirectory(m_dir);
+    }
+#endif
 
-void wxFileDialog::OnReport( wxCommandEvent &WXUNUSED(event) )
-{
-    m_list->ChangeToReportMode();
+    return wxDialog::Show( show );
 }
 
-void wxFileDialog::OnIcon( wxCommandEvent &WXUNUSED(event) )
+void wxGenericFileDialog::OnOk( wxCommandEvent &WXUNUSED(event) )
 {
-    m_list->ChangeToIconMode();
+    wxArrayString selectedFiles;
+    m_filectrl->GetFilenames(selectedFiles);
+
+    if (selectedFiles.Count() == 0)
+        return;
+
+    if (selectedFiles.Count() == 1)
+    {
+        SetPath( selectedFiles[0] );
+    }
+
+    EndModal(wxID_OK);
 }
 
-void wxFileDialog::OnUp( wxCommandEvent &WXUNUSED(event) )
+void wxGenericFileDialog::OnList( wxCommandEvent &WXUNUSED(event) )
 {
-    m_list->GoToParentDir();
+    m_filectrl->ChangeToListMode();
+    ms_lastViewStyle = wxLC_LIST;
+    m_filectrl->GetFileList()->SetFocus();
 }
 
-void wxFileDialog::OnHome( wxCommandEvent &WXUNUSED(event) )
+void wxGenericFileDialog::OnReport( wxCommandEvent &WXUNUSED(event) )
 {
-    m_list->GoToHomeDir();
+    m_filectrl->ChangeToReportMode();
+    ms_lastViewStyle = wxLC_REPORT;
+    m_filectrl->GetFileList()->SetFocus();
 }
 
-void wxFileDialog::SetPath( const wxString& path )
+void wxGenericFileDialog::OnUp( wxCommandEvent &WXUNUSED(event) )
 {
-    // not only set the full path but also update filename and dir
-    m_path = path;
-    if ( !!path )
-    {
-        wxString ext;
-        wxSplitPath(path, &m_dir, &m_fileName, &ext);
-       if (!ext.IsEmpty())
-       {
-           m_fileName += _T(".");
-            m_fileName += ext;
-       }
-    }
+    m_filectrl->GoToParentDir();
+    m_filectrl->GetFileList()->SetFocus();
 }
-    
-// ----------------------------------------------------------------------------
-// global functions
-// ----------------------------------------------------------------------------
-
-wxString
-wxFileSelectorEx(const wxChar *message,
-                 const wxChar *default_path,
-                 const wxChar *default_filename,
-                 int *indexDefaultExtension,
-                 const wxChar *wildcard,
-                 int flags,
-                 wxWindow *parent,
-                 int x, int y)
+
+void wxGenericFileDialog::OnHome( wxCommandEvent &WXUNUSED(event) )
 {
-    // TODO: implement this somehow
-    return wxFileSelector(message, default_path, default_filename, _T(""),
-                          wildcard, flags, parent, x, y);
+    m_filectrl->GoToHomeDir();
+    m_filectrl->SetFocus();
 }
 
-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 )
+void wxGenericFileDialog::OnNew( wxCommandEvent &WXUNUSED(event) )
 {
-    wxString filter2;
-    if ( defaultExtension && !filter )
-        filter2 = wxString(_T("*.")) + 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;
-    }
+    m_filectrl->GetFileList()->MakeDir();
 }
 
-wxString wxLoadFileSelector( const wxChar *what, const wxChar *extension, const wxChar *default_name, wxWindow *parent )
+void wxGenericFileDialog::OnFileActivated( wxFileCtrlEvent &WXUNUSED(event) )
 {
-    wxChar *ext = (wxChar *)extension;
-
-    wxChar prompt[50];
-    wxString str = _("Load %s file");
-    wxSprintf(prompt, str, what);
-
-    if (*ext == _T('.')) ext++;
-    wxChar wild[60];
-    wxSprintf(wild, _T("*.%s"), ext);
-
-    return wxFileSelector (prompt, (const wxChar *) NULL, default_name, ext, wild, 0, parent);
+    wxCommandEvent dummy;
+    OnOk( dummy );
 }
 
-wxString wxSaveFileSelector(const wxChar *what, const wxChar *extension, const wxChar *default_name,
-         wxWindow *parent )
+void wxGenericFileDialog::OnUpdateButtonsUI(wxUpdateUIEvent& event)
 {
-    wxChar *ext = (wxChar *)extension;
+    // surprisingly, we can be called before m_filectrl is set in Create() as
+    // wxFileCtrl ctor itself can generate idle events, so we need this test
+    if ( m_filectrl )
+        event.Enable( !IsTopMostDir(m_filectrl->GetShownDirectory()) );
+}
 
-    wxChar prompt[50];
-    wxString str = _("Save %s file");
-    wxSprintf(prompt, str, what);
+#ifdef wxHAS_GENERIC_FILEDIALOG
 
-    if (*ext == _T('.')) ext++;
-    wxChar wild[60];
-    wxSprintf(wild, _T("*.%s"), ext);
+IMPLEMENT_DYNAMIC_CLASS(wxFileDialog, wxGenericFileDialog)
 
-    return wxFileSelector (prompt, (const wxChar *) NULL, default_name, ext, wild, 0, parent);
-}
+#endif // wxHAS_GENERIC_FILEDIALOG
 
+#endif // wxUSE_FILEDLG