1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFileDialog
4 // Author: Robert Roebling
7 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_FILEDLGG_H_
13 #define _WX_FILEDLGG_H_
16 #pragma interface "filedlgg.h"
21 #include "wx/dialog.h"
22 #include "wx/checkbox.h"
23 #include "wx/listctrl.h"
24 #include "wx/textctrl.h"
25 #include "wx/choice.h"
26 #include "wx/checkbox.h"
27 #include "wx/stattext.h"
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 WXDLLEXPORT_DATA(extern const wxChar
*)wxFileSelectorPromptStr
;
34 WXDLLEXPORT_DATA(extern const wxChar
*)wxFileSelectorDefaultWildcardStr
;
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
44 //-----------------------------------------------------------------------------
46 //-----------------------------------------------------------------------------
48 class wxFileData
: public wxObject
59 wxString m_permissions
;
66 wxFileData( const wxString
&name
, const wxString
&fname
);
67 wxString
GetName() const;
68 wxString
GetFullName() const;
69 wxString
GetHint() const;
70 wxString
GetEntry( int num
);
75 void MakeItem( wxListItem
&item
);
76 void SetNewName( const wxString
&name
, const wxString
&fname
);
79 DECLARE_DYNAMIC_CLASS(wxFileData
);
82 //-----------------------------------------------------------------------------
84 //-----------------------------------------------------------------------------
86 class wxFileCtrl
: public wxListCtrl
95 wxFileCtrl( wxWindow
*win
,
97 const wxString
&dirName
,
99 const wxPoint
&pos
= wxDefaultPosition
,
100 const wxSize
&size
= wxDefaultSize
,
101 long style
= wxLC_LIST
,
102 const wxValidator
&validator
= wxDefaultValidator
,
103 const wxString
&name
= wxT("filelist") );
104 void ChangeToListMode();
105 void ChangeToReportMode();
106 void ChangeToIconMode();
107 void ShowHidden( bool show
= TRUE
);
108 long Add( wxFileData
*fd
, wxListItem
&item
);
110 virtual void StatusbarText( char *WXUNUSED(text
) ) {};
112 void GoToParentDir();
114 void GoToDir( const wxString
&dir
);
115 void SetWild( const wxString
&wild
);
116 void GetDir( wxString
&dir
);
117 void OnListDeleteItem( wxListEvent
&event
);
118 void OnListEndLabelEdit( wxListEvent
&event
);
121 DECLARE_DYNAMIC_CLASS(wxFileCtrl
);
122 DECLARE_EVENT_TABLE()
125 //-------------------------------------------------------------------------
127 //-------------------------------------------------------------------------
129 class wxFileDialog
: public wxDialog
134 wxFileDialog(wxWindow
*parent
,
135 const wxString
& message
= wxFileSelectorPromptStr
,
136 const wxString
& defaultDir
= "",
137 const wxString
& defaultFile
= "",
138 const wxString
& wildCard
= wxFileSelectorDefaultWildcardStr
,
140 const wxPoint
& pos
= wxDefaultPosition
);
143 void SetMessage(const wxString
& message
) { m_message
= message
; }
144 void SetPath(const wxString
& path
);
145 void SetDirectory(const wxString
& dir
) { m_dir
= dir
; }
146 void SetFilename(const wxString
& name
) { m_fileName
= name
; }
147 void SetWildcard(const wxString
& wildCard
) { m_wildCard
= wildCard
; }
148 void SetStyle(long style
) { m_dialogStyle
= style
; }
149 void SetFilterIndex(int filterIndex
) { m_filterIndex
= filterIndex
; }
151 wxString
GetMessage() const { return m_message
; }
152 wxString
GetPath() const { return m_path
; }
153 wxString
GetDirectory() const { return m_dir
; }
154 wxString
GetFilename() const { return m_fileName
; }
155 wxString
GetWildcard() const { return m_wildCard
; }
156 long GetStyle() const { return m_dialogStyle
; }
157 int GetFilterIndex() const { return m_filterIndex
; }
159 // for multiple file selection
160 void GetPaths(wxArrayString
& paths
) const;
161 void GetFilenames(wxArrayString
& files
) const;
163 void OnSelected( wxListEvent
&event
);
164 void OnActivated( wxListEvent
&event
);
165 void OnList( wxCommandEvent
&event
);
166 void OnReport( wxCommandEvent
&event
);
167 void OnUp( wxCommandEvent
&event
);
168 void OnHome( wxCommandEvent
&event
);
169 void OnListOk( wxCommandEvent
&event
);
170 void OnNew( wxCommandEvent
&event
);
171 void OnChoice( wxCommandEvent
&event
);
172 void OnTextEnter( wxCommandEvent
&event
);
173 void OnCheck( wxCommandEvent
&event
);
175 void HandleAction( const wxString
&fn
);
181 wxString m_path
; // Full path
189 wxStaticText
*m_static
;
192 DECLARE_DYNAMIC_CLASS(wxFileDialog
)
193 DECLARE_EVENT_TABLE()
196 // File selector - backward compatibility
198 wxFileSelector(const wxChar
*message
= wxFileSelectorPromptStr
,
199 const wxChar
*default_path
= NULL
,
200 const wxChar
*default_filename
= NULL
,
201 const wxChar
*default_extension
= NULL
,
202 const wxChar
*wildcard
= wxFileSelectorDefaultWildcardStr
,
204 wxWindow
*parent
= NULL
,
205 int x
= -1, int y
= -1);
207 // An extended version of wxFileSelector
209 wxFileSelectorEx(const wxChar
*message
= wxFileSelectorPromptStr
,
210 const wxChar
*default_path
= NULL
,
211 const wxChar
*default_filename
= NULL
,
212 int *indexDefaultExtension
= NULL
,
213 const wxChar
*wildcard
= wxFileSelectorDefaultWildcardStr
,
215 wxWindow
*parent
= NULL
,
216 int x
= -1, int y
= -1);
218 // Ask for filename to load
220 wxLoadFileSelector(const wxChar
*what
,
221 const wxChar
*extension
,
222 const wxChar
*default_name
= (const wxChar
*)NULL
,
223 wxWindow
*parent
= (wxWindow
*) NULL
);
225 // Ask for filename to save
227 wxSaveFileSelector(const wxChar
*what
,
228 const wxChar
*extension
,
229 const wxChar
*default_name
= (const wxChar
*) NULL
,
230 wxWindow
*parent
= (wxWindow
*) NULL
);