]>
Commit | Line | Data |
---|---|---|
449110cd JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/msw/wince/filedlgwce.cpp | |
8300f815 | 3 | // Purpose: wxFileDialog implementation for smart phones driven by WinCE |
449110cd JS |
4 | // Author: Julian Smart |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
449110cd JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
449110cd JS |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | // Only use this for MS SmartPhone. Use standard file dialog | |
28 | // for Pocket PC. | |
29 | ||
8300f815 | 30 | #if wxUSE_FILEDLG && defined(__SMARTPHONE__) && defined(__WXWINCE__) |
449110cd | 31 | |
949c9f74 WS |
32 | #include "wx/filedlg.h" |
33 | ||
449110cd JS |
34 | #ifndef WX_PRECOMP |
35 | #include "wx/utils.h" | |
36 | #include "wx/msgdlg.h" | |
37 | #include "wx/dialog.h" | |
449110cd JS |
38 | #include "wx/filefn.h" |
39 | #include "wx/intl.h" | |
40 | #include "wx/log.h" | |
41 | #include "wx/app.h" | |
42 | #endif | |
43 | ||
44 | #include "wx/msw/private.h" | |
45 | ||
46 | #include <stdlib.h> | |
47 | #include <string.h> | |
48 | ||
49 | #include "wx/filename.h" | |
50 | ||
51 | // ============================================================================ | |
52 | // implementation | |
53 | // ============================================================================ | |
54 | ||
55 | // ---------------------------------------------------------------------------- | |
56 | // wxWin macros | |
57 | // ---------------------------------------------------------------------------- | |
58 | ||
59 | IMPLEMENT_CLASS(wxFileDialog, wxDialog) | |
60 | ||
61 | // ---------------------------------------------------------------------------- | |
62 | // wxFileDialog | |
63 | // ---------------------------------------------------------------------------- | |
64 | ||
65 | wxFileDialog::wxFileDialog(wxWindow *parent, | |
66 | const wxString& message, | |
67 | const wxString& defaultDir, | |
68 | const wxString& defaultFileName, | |
69 | const wxString& wildCard, | |
70 | long style, | |
4c9a69c1 WS |
71 | const wxPoint& WXUNUSED(pos), |
72 | const wxSize& WXUNUSED(sz), | |
73 | const wxString& WXUNUSED(name)) | |
449110cd JS |
74 | { |
75 | m_message = message; | |
ff3e84ff | 76 | m_windowStyle = style; |
e031f1df WS |
77 | if ( ( m_windowStyle & wxFD_MULTIPLE ) && ( m_windowStyle & wxFD_SAVE ) ) |
78 | m_windowStyle &= ~wxFD_MULTIPLE; | |
449110cd JS |
79 | m_parent = parent; |
80 | m_path = wxEmptyString; | |
81 | m_fileName = defaultFileName; | |
82 | m_dir = defaultDir; | |
83 | m_wildCard = wildCard; | |
84 | m_filterIndex = 0; | |
85 | } | |
86 | ||
87 | void wxFileDialog::GetPaths(wxArrayString& paths) const | |
88 | { | |
89 | paths.Empty(); | |
90 | ||
91 | wxString dir(m_dir); | |
9a83f860 VZ |
92 | if ( m_dir.Last() != wxT('\\') ) |
93 | dir += wxT('\\'); | |
449110cd JS |
94 | |
95 | size_t count = m_fileNames.GetCount(); | |
96 | for ( size_t n = 0; n < count; n++ ) | |
97 | { | |
98 | if (wxFileName(m_fileNames[n]).IsAbsolute()) | |
99 | paths.Add(m_fileNames[n]); | |
100 | else | |
101 | paths.Add(dir + m_fileNames[n]); | |
102 | } | |
103 | } | |
104 | ||
105 | void wxFileDialog::SetPath(const wxString& path) | |
106 | { | |
107 | wxString ext; | |
bd365871 | 108 | wxFileName::SplitPath(path, &m_dir, &m_fileName, &ext); |
449110cd | 109 | if ( !ext.empty() ) |
9a83f860 | 110 | m_fileName << wxT('.') << ext; |
449110cd JS |
111 | } |
112 | ||
113 | int wxFileDialog::ShowModal() | |
114 | { | |
115 | wxWindow* parentWindow = GetParent(); | |
116 | if (!parentWindow) | |
117 | parentWindow = wxTheApp->GetTopWindow(); | |
39fc096d | 118 | |
449110cd | 119 | wxString str = wxGetTextFromUser(m_message, _("File"), m_fileName, parentWindow); |
caae22fb | 120 | if (str.empty()) |
449110cd | 121 | return wxID_CANCEL; |
caae22fb WS |
122 | |
123 | m_fileName = str; | |
124 | m_fileNames.Add(str); | |
125 | return wxID_OK; | |
449110cd JS |
126 | } |
127 | ||
7933c2d4 VS |
128 | void wxFileDialog::GetFilenames(wxArrayString& files) const |
129 | { | |
130 | files = m_fileNames; | |
131 | } | |
132 | ||
8300f815 | 133 | #endif // wxUSE_FILEDLG && __SMARTPHONE__ && __WXWINCE__ |