]> git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/filedlgg.h
Applied patch [ 832096 ] Final separation for GUI and console for Open Watcom
[wxWidgets.git] / include / wx / generic / filedlgg.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: filedlgg.h
3 // Purpose: wxGenericFileDialog
4 // Author: Robert Roebling
5 // Modified by:
6 // Created: 8/17/99
7 // Copyright: (c) Robert Roebling
8 // RCS-ID: $Id$
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_FILEDLGG_H_
13 #define _WX_FILEDLGG_H_
14
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "filedlgg.h"
17 #endif
18
19 #include "wx/listctrl.h"
20 #include "wx/datetime.h"
21
22 //-----------------------------------------------------------------------------
23 // classes
24 //-----------------------------------------------------------------------------
25
26 class WXDLLEXPORT wxBitmapButton;
27 class WXDLLEXPORT wxCheckBox;
28 class WXDLLEXPORT wxChoice;
29 class WXDLLEXPORT wxFileData;
30 class WXDLLEXPORT wxFileCtrl;
31 class WXDLLEXPORT wxGenericFileDialog;
32 class WXDLLEXPORT wxListEvent;
33 class WXDLLEXPORT wxListItem;
34 class WXDLLEXPORT wxStaticText;
35 class WXDLLEXPORT wxTextCtrl;
36
37 #if defined(__WXUNIVERSAL__)||defined(__WXGTK__)||defined(__WXX11__)||defined(__WXMGL__)||defined(__WXCOCOA__)
38 #define USE_GENERIC_FILEDIALOG
39 #endif
40
41 //-------------------------------------------------------------------------
42 // wxGenericFileDialog
43 //-------------------------------------------------------------------------
44
45 class WXDLLEXPORT wxGenericFileDialog: public wxFileDialogBase
46 {
47 public:
48 wxGenericFileDialog();
49
50 wxGenericFileDialog(wxWindow *parent,
51 const wxString& message = wxFileSelectorPromptStr,
52 const wxString& defaultDir = wxEmptyString,
53 const wxString& defaultFile = wxEmptyString,
54 const wxString& wildCard = wxFileSelectorDefaultWildcardStr,
55 long style = 0,
56 const wxPoint& pos = wxDefaultPosition);
57 virtual ~wxGenericFileDialog();
58
59 virtual void SetMessage(const wxString& message) { SetTitle(message); }
60 virtual void SetPath(const wxString& path);
61 virtual void SetFilterIndex(int filterIndex);
62
63 // for multiple file selection
64 virtual void GetPaths(wxArrayString& paths) const;
65 virtual void GetFilenames(wxArrayString& files) const;
66
67 // implementation only from now on
68 // -------------------------------
69
70 virtual int ShowModal();
71
72 void OnSelected( wxListEvent &event );
73 void OnActivated( wxListEvent &event );
74 void OnList( wxCommandEvent &event );
75 void OnReport( wxCommandEvent &event );
76 void OnUp( wxCommandEvent &event );
77 void OnHome( wxCommandEvent &event );
78 void OnListOk( wxCommandEvent &event );
79 void OnNew( wxCommandEvent &event );
80 void OnChoiceFilter( wxCommandEvent &event );
81 void OnTextEnter( wxCommandEvent &event );
82 void OnTextChange( wxCommandEvent &event );
83 void OnCheck( wxCommandEvent &event );
84
85 virtual void HandleAction( const wxString &fn );
86
87 virtual void UpdateControls();
88
89 protected:
90 // use the filter with the given index
91 void DoSetFilterIndex(int filterindex);
92
93 wxString m_filterExtension;
94 wxChoice *m_choice;
95 wxTextCtrl *m_text;
96 wxFileCtrl *m_list;
97 wxCheckBox *m_check;
98 wxStaticText *m_static;
99 wxBitmapButton *m_upDirButton;
100 wxBitmapButton *m_newDirButton;
101
102 private:
103 DECLARE_DYNAMIC_CLASS(wxGenericFileDialog)
104 DECLARE_EVENT_TABLE()
105
106 // these variables are preserved between wxGenericFileDialog calls
107 static long ms_lastViewStyle; // list or report?
108 static bool ms_lastShowHidden; // did we show hidden files?
109 };
110
111 #ifdef USE_GENERIC_FILEDIALOG
112
113 class WXDLLEXPORT wxFileDialog: public wxGenericFileDialog
114 {
115 DECLARE_DYNAMIC_CLASS(wxFileDialog)
116
117 public:
118 wxFileDialog();
119
120 wxFileDialog(wxWindow *parent,
121 const wxString& message = wxFileSelectorPromptStr,
122 const wxString& defaultDir = _T(""),
123 const wxString& defaultFile = _T(""),
124 const wxString& wildCard = wxFileSelectorDefaultWildcardStr,
125 long style = 0,
126 const wxPoint& pos = wxDefaultPosition);
127 };
128
129 #endif // USE_GENERIC_FILEDIALOG
130
131 //-----------------------------------------------------------------------------
132 // wxFileData - a class to hold the file info for the wxFileCtrl
133 //-----------------------------------------------------------------------------
134
135 class WXDLLEXPORT wxFileData
136 {
137 public:
138 enum fileType
139 {
140 is_file = 0x0000,
141 is_dir = 0x0001,
142 is_link = 0x0002,
143 is_exe = 0x0004,
144 is_drive = 0x0008
145 };
146
147 // Full copy constructor
148 wxFileData( const wxFileData& fileData );
149 // Create a filedata from this information
150 wxFileData( const wxString &filePath, const wxString &fileName,
151 fileType type, int image_id );
152
153 // (re)read the extra data about the file from the system
154 void ReadData();
155
156 // get the name of the file, dir, drive
157 wxString GetFileName() const { return m_fileName; }
158 // get the full path + name of the file, dir, path
159 wxString GetFilePath() const { return m_filePath; }
160 // Set the path + name and name of the item
161 void SetNewName( const wxString &filePath, const wxString &fileName );
162
163 // Get the size of the file in bytes
164 long GetSize() const { return m_size; }
165 // Get the type of file, either file extension or <DIR>, <LINK>, <DRIVE>
166 wxString GetFileType() const;
167 // get the last modification time
168 wxDateTime GetDateTime() const { return m_dateTime; }
169 // Get the time as a formatted string
170 wxString GetModificationTime() const;
171 // in UNIX get rwx for file, in MSW get attributes ARHS
172 wxString GetPermissions() const { return m_permissions; }
173 // Get the id of the image used in a wxImageList
174 int GetImageId() const { return m_image; }
175
176 bool IsFile() const { return !IsDir() && !IsLink() && !IsDrive(); }
177 bool IsDir() const { return (m_type & is_dir ) != 0; }
178 bool IsLink() const { return (m_type & is_link ) != 0; }
179 bool IsExe() const { return (m_type & is_exe ) != 0; }
180 bool IsDrive() const { return (m_type & is_drive) != 0; }
181
182 // Get/Set the type of file, file/dir/drive/link
183 int GetType() const { return m_type; }
184
185 // the wxFileCtrl fields in report view
186 enum fileListFieldType
187 {
188 FileList_Name,
189 FileList_Size,
190 FileList_Type,
191 FileList_Time,
192 #if defined(__UNIX__) || defined(__WIN32__)
193 FileList_Perm,
194 #endif // defined(__UNIX__) || defined(__WIN32__)
195 FileList_Max
196 };
197
198 // Get the entry for report view of wxFileCtrl
199 wxString GetEntry( fileListFieldType num ) const;
200
201 // Get a string representation of the file info
202 wxString GetHint() const;
203 // initialize a wxListItem attributes
204 void MakeItem( wxListItem &item );
205
206 private:
207 wxString m_fileName;
208 wxString m_filePath;
209 long m_size;
210 wxDateTime m_dateTime;
211 wxString m_permissions;
212 int m_type;
213 int m_image;
214 };
215
216 //-----------------------------------------------------------------------------
217 // wxFileCtrl
218 //-----------------------------------------------------------------------------
219
220 class WXDLLEXPORT wxFileCtrl : public wxListCtrl
221 {
222 public:
223 wxFileCtrl();
224 wxFileCtrl( wxWindow *win,
225 wxWindowID id,
226 const wxString &wild,
227 bool showHidden,
228 const wxPoint &pos = wxDefaultPosition,
229 const wxSize &size = wxDefaultSize,
230 long style = wxLC_LIST,
231 const wxValidator &validator = wxDefaultValidator,
232 const wxString &name = wxT("filelist") );
233 virtual ~wxFileCtrl();
234
235 virtual void ChangeToListMode();
236 virtual void ChangeToReportMode();
237 virtual void ChangeToSmallIconMode();
238 virtual void ShowHidden( bool show = TRUE );
239 bool GetShowHidden() const { return m_showHidden; }
240
241 virtual long Add( wxFileData *fd, wxListItem &item );
242 virtual void UpdateItem(const wxListItem &item);
243 virtual void UpdateFiles();
244 virtual void MakeDir();
245 virtual void GoToParentDir();
246 virtual void GoToHomeDir();
247 virtual void GoToDir( const wxString &dir );
248 virtual void SetWild( const wxString &wild );
249 wxString GetWild() const { return m_wild; }
250 wxString GetDir() const { return m_dirName; }
251
252 void OnListDeleteItem( wxListEvent &event );
253 void OnListEndLabelEdit( wxListEvent &event );
254 void OnListColClick( wxListEvent &event );
255
256 virtual void SortItems(wxFileData::fileListFieldType field, bool foward);
257 bool GetSortDirection() const { return m_sort_foward; }
258 wxFileData::fileListFieldType GetSortField() const { return m_sort_field; }
259
260 protected:
261 void FreeItemData(const wxListItem& item);
262 void FreeAllItemsData();
263
264 wxString m_dirName;
265 bool m_showHidden;
266 wxString m_wild;
267
268 bool m_sort_foward;
269 wxFileData::fileListFieldType m_sort_field;
270
271 private:
272 DECLARE_DYNAMIC_CLASS(wxFileCtrl);
273 DECLARE_EVENT_TABLE()
274 };
275
276 #endif // _WX_FILEDLGG_H_
277