]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/wince/filedlgwce.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/wince/filedlgwce.cpp
3 // Purpose: wxFileDialog implementation for smart phones driven by WinCE
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 // Only use this for MS SmartPhone. Use standard file dialog
30 #if wxUSE_FILEDLG && defined(__SMARTPHONE__) && defined(__WXWINCE__)
34 #include "wx/msgdlg.h"
35 #include "wx/dialog.h"
36 #include "wx/filedlg.h"
37 #include "wx/filefn.h"
43 #include "wx/msw/private.h"
48 #include "wx/filename.h"
50 // ============================================================================
52 // ============================================================================
54 // ----------------------------------------------------------------------------
56 // ----------------------------------------------------------------------------
58 IMPLEMENT_CLASS(wxFileDialog
, wxDialog
)
60 // ----------------------------------------------------------------------------
62 // ----------------------------------------------------------------------------
64 wxFileDialog::wxFileDialog(wxWindow
*parent
,
65 const wxString
& message
,
66 const wxString
& defaultDir
,
67 const wxString
& defaultFileName
,
68 const wxString
& wildCard
,
70 const wxPoint
& WXUNUSED(pos
))
73 m_dialogStyle
= style
;
74 if ( ( m_dialogStyle
& wxMULTIPLE
) && ( m_dialogStyle
& wxSAVE
) )
75 m_dialogStyle
&= ~wxMULTIPLE
;
77 m_path
= wxEmptyString
;
78 m_fileName
= defaultFileName
;
80 m_wildCard
= wildCard
;
84 void wxFileDialog::GetPaths(wxArrayString
& paths
) const
89 if ( m_dir
.Last() != _T('\\') )
92 size_t count
= m_fileNames
.GetCount();
93 for ( size_t n
= 0; n
< count
; n
++ )
95 if (wxFileName(m_fileNames
[n
]).IsAbsolute())
96 paths
.Add(m_fileNames
[n
]);
98 paths
.Add(dir
+ m_fileNames
[n
]);
102 void wxFileDialog::SetPath(const wxString
& path
)
105 wxSplitPath(path
, &m_dir
, &m_fileName
, &ext
);
107 m_fileName
<< _T('.') << ext
;
110 int wxFileDialog::ShowModal()
112 wxWindow
* parentWindow
= GetParent();
114 parentWindow
= wxTheApp
->GetTopWindow();
116 wxString str
= wxGetTextFromUser(m_message
, _("File"), m_fileName
, parentWindow
);
121 m_fileNames
.Add(str
);
125 void wxFileDialog::GetFilenames(wxArrayString
& files
) const
130 #endif // wxUSE_FILEDLG && __SMARTPHONE__ && __WXWINCE__