]> git.saurik.com Git - wxWidgets.git/blame - src/generic/dirdlgg.cpp
construct icon from wxIconLocation, not just the file name without index: this fixes...
[wxWidgets.git] / src / generic / dirdlgg.cpp
CommitLineData
d7a15103
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: dirdlg.cpp
3// Purpose: wxDirDialog
748fcded 4// Author: Harm van der Heijden, Robert Roebling & Julian Smart
d7a15103
JS
5// Modified by:
6// Created: 12/12/98
8b17ba72 7// RCS-ID: $Id$
748fcded 8// Copyright: (c) Harm van der Heijden, Robert Roebling, Julian Smart
65571936 9// Licence: wxWindows licence
d7a15103
JS
10/////////////////////////////////////////////////////////////////////////////
11
14f355c2 12#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
d7a15103
JS
13#pragma implementation "dirdlgg.h"
14#endif
15
748fcded 16
1e6d9499
JS
17// For compilers that support precompilation, includes "wx.h".
18#include "wx/wxprec.h"
19
20#ifdef __BORLANDC__
21#pragma hdrstop
22#endif
23
d7a15103 24#include "wx/defs.h"
ce4169a4
RR
25
26#if wxUSE_DIRDLG
27
748fcded
VS
28#ifndef WX_PRECOMP
29 #include "wx/textctrl.h"
30 #include "wx/button.h"
42dcacf0 31 #include "wx/checkbox.h"
748fcded 32 #include "wx/sizer.h"
748fcded
VS
33 #include "wx/intl.h"
34 #include "wx/log.h"
35 #include "wx/msgdlg.h"
dc6c62a9 36#endif
d7a15103 37
d7d17624 38#include "wx/statline.h"
e78d4a23 39#include "wx/dirctrl.h"
bf2cac26 40#include "wx/generic/dirdlgg.h"
2a0951be
VS
41#include "wx/artprov.h"
42#include "wx/bmpbuttn.h"
d7a15103 43
0d1f53ca
WS
44// ----------------------------------------------------------------------------
45// constants
46// ----------------------------------------------------------------------------
d6379fa3 47
d7a15103
JS
48static const int ID_DIRCTRL = 1000;
49static const int ID_TEXTCTRL = 1001;
50static const int ID_OK = 1002;
51static const int ID_CANCEL = 1003;
52static const int ID_NEW = 1004;
42dcacf0 53static const int ID_SHOW_HIDDEN = 1005;
2a0951be 54static const int ID_GO_HOME = 1006;
d7a15103 55
0d1f53ca
WS
56// ---------------------------------------------------------------------------
57// macros
58// ---------------------------------------------------------------------------
59
60/* Macro for avoiding #ifdefs when value have to be different depending on size of
9a357011 61 device we display on - take it from something like wxDesktopPolicy in the future
0d1f53ca
WS
62 */
63
64#if defined(__SMARTPHONE__)
65 #define wxLARGESMALL(large,small) small
66#else
67 #define wxLARGESMALL(large,small) large
68#endif
69
70//-----------------------------------------------------------------------------
71// wxGenericDirDialog
72//-----------------------------------------------------------------------------
73
74IMPLEMENT_DYNAMIC_CLASS(wxGenericDirDialog, wxDialog)
75
748fcded 76BEGIN_EVENT_TABLE(wxGenericDirDialog, wxDialog)
748fcded 77 EVT_CLOSE (wxGenericDirDialog::OnCloseWindow)
42dcacf0
RR
78 EVT_BUTTON (wxID_OK, wxGenericDirDialog::OnOK)
79 EVT_BUTTON (ID_NEW, wxGenericDirDialog::OnNew)
e13ea14e 80 EVT_BUTTON (ID_GO_HOME, wxGenericDirDialog::OnGoHome)
ca65c044
WS
81 EVT_TREE_KEY_DOWN (wxID_ANY, wxGenericDirDialog::OnTreeKeyDown)
82 EVT_TREE_SEL_CHANGED (wxID_ANY, wxGenericDirDialog::OnTreeSelected)
42dcacf0
RR
83 EVT_TEXT_ENTER (ID_TEXTCTRL, wxGenericDirDialog::OnOK)
84 EVT_CHECKBOX (ID_SHOW_HIDDEN, wxGenericDirDialog::OnShowHidden)
d7a15103
JS
85END_EVENT_TABLE()
86
748fcded
VS
87wxGenericDirDialog::wxGenericDirDialog(wxWindow* parent, const wxString& title,
88 const wxString& defaultPath, long style,
ca65c044 89 const wxPoint& pos, const wxSize& sz,
748fcded
VS
90 const wxString& name):
91 wxDialog(parent, ID_DIRCTRL, title, pos, sz, style, name)
d7a15103 92{
748fcded 93 wxBusyCursor cursor;
e90c1d2a 94
dc6c62a9 95 m_path = defaultPath;
748fcded 96 if (m_path == wxT("~"))
ab8d2b02
VS
97 wxGetHomeDir(&m_path);
98 if (m_path == wxT("."))
99 m_path = wxGetCwd();
e90c1d2a 100
dc6c62a9
RR
101 wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL );
102
9a357011 103 // smart phones does not support or do not waste space for wxButtons
0d1f53ca
WS
104#if defined(__SMARTPHONE__)
105
d2cdad17
WS
106 wxMenu *dirMenu = new wxMenu;
107 dirMenu->Append(ID_GO_HOME, _("Home"));
108
109 if (style & wxDD_NEW_DIR_BUTTON)
110 {
111 dirMenu->Append(ID_NEW, _("New directory"));
112 }
113
114 dirMenu->AppendCheckItem(ID_SHOW_HIDDEN, _("Show hidden directories"));
115 dirMenu->AppendSeparator();
116 dirMenu->Append(wxID_CANCEL, _("Cancel"));
117
118 SetRightMenu(wxID_ANY, _("Options"), dirMenu);
0d1f53ca
WS
119
120#else
121
2a0951be
VS
122 // 0) 'New' and 'Home' Buttons
123 wxSizer* buttonsizer = new wxBoxSizer( wxHORIZONTAL );
124
e13ea14e 125 // VS: 'Home directory' concept is unknown to MS-DOS
0d1f53ca 126#if !defined(__DOS__)
ca65c044 127 wxBitmapButton* homeButton =
2a0951be 128 new wxBitmapButton(this, ID_GO_HOME,
36668b35 129 wxArtProvider::GetBitmap(wxART_GO_HOME, wxART_BUTTON));
2a0951be 130 buttonsizer->Add( homeButton, 0, wxLEFT|wxRIGHT, 10 );
e13ea14e 131#endif
ca65c044 132
2a0951be
VS
133 // I'm not convinced we need a New button, and we tend to get annoying
134 // accidental-editing with label editing enabled.
dabd1377
JS
135 if (style & wxDD_NEW_DIR_BUTTON)
136 {
ca65c044 137 wxBitmapButton* newButton =
dabd1377 138 new wxBitmapButton(this, ID_NEW,
36668b35 139 wxArtProvider::GetBitmap(wxART_NEW_DIR, wxART_BUTTON));
dabd1377
JS
140 buttonsizer->Add( newButton, 0, wxRIGHT, 10 );
141#if wxUSE_TOOLTIPS
142 newButton->SetToolTip(_("Create new directory"));
ca65c044 143#endif
dabd1377 144 }
2a0951be
VS
145
146#if wxUSE_TOOLTIPS
147 homeButton->SetToolTip(_("Go to home directory"));
2a0951be
VS
148#endif
149
150 topsizer->Add( buttonsizer, 0, wxTOP | wxALIGN_RIGHT, 10 );
151
0d1f53ca
WS
152#endif // __SMARTPHONE__/!__SMARTPHONE__
153
dc6c62a9 154 // 1) dir ctrl
ca65c044 155 m_dirCtrl = NULL; // this is neccessary, event handler called from
748fcded 156 // wxGenericDirCtrl would crash otherwise!
dabd1377 157 long dirStyle = wxDIRCTRL_DIR_ONLY|wxSUNKEN_BORDER;
ca65c044 158
dabd1377
JS
159#ifdef __WXMSW__
160 if (style & wxDD_NEW_DIR_BUTTON)
161 {
162 // Only under Windows do we need the wxTR_EDIT_LABEL tree control style
163 // before we can call EditLabel (required for "New directory")
164 dirStyle |= wxDIRCTRL_EDIT_LABELS;
165 }
ca65c044 166#endif
dabd1377 167
748fcded 168 m_dirCtrl = new wxGenericDirCtrl(this, ID_DIRCTRL,
488eb04e 169 m_path, wxDefaultPosition,
ca65c044 170 wxSize(300, 200),
dabd1377 171 dirStyle);
748fcded 172
0d1f53ca 173 topsizer->Add( m_dirCtrl, 1, wxTOP|wxLEFT|wxRIGHT | wxEXPAND, wxLARGESMALL(10,0) );
e90c1d2a 174
0d1f53ca 175#ifndef __SMARTPHONE__
ead95817
VS
176 // Make the an option depending on a flag?
177 wxCheckBox* check = new wxCheckBox( this, ID_SHOW_HIDDEN, _("Show hidden directories") );
488eb04e 178 topsizer->Add( check, 0, wxLEFT|wxRIGHT|wxTOP | wxALIGN_RIGHT, 10 );
0d1f53ca 179#endif // !__SMARTPHONE__
ead95817 180
dc6c62a9 181 // 2) text ctrl
e90c1d2a 182 m_input = new wxTextCtrl( this, ID_TEXTCTRL, m_path, wxDefaultPosition );
0d1f53ca
WS
183 topsizer->Add( m_input, 0, wxTOP|wxLEFT|wxRIGHT | wxEXPAND, wxLARGESMALL(10,0) );
184
d2cdad17 185#ifndef __SMARTPHONE__
e90c1d2a 186
dc6c62a9 187#if wxUSE_STATLINE
748fcded 188 // 3) Static line
ca65c044 189 topsizer->Add( new wxStaticLine( this, wxID_ANY ), 0, wxEXPAND | wxLEFT|wxRIGHT|wxTOP, 10 );
dc6c62a9 190#endif
d7a15103 191
748fcded 192 // 4) Buttons
2a0951be 193 buttonsizer = new wxBoxSizer( wxHORIZONTAL );
ca65c044 194
42dcacf0 195 // OK and Cancel button should be at the right bottom
5f7bcb48 196 wxButton* okButton = new wxButton(this, wxID_OK);
42dcacf0 197 buttonsizer->Add( okButton, 0, wxLEFT|wxRIGHT, 10 );
5f7bcb48 198 wxButton* cancelButton = new wxButton(this, wxID_CANCEL);
42dcacf0
RR
199 buttonsizer->Add( cancelButton, 0, wxLEFT|wxRIGHT, 10 );
200
488eb04e 201 topsizer->Add( buttonsizer, 0, wxLEFT|wxTOP|wxBOTTOM | wxALIGN_RIGHT, 10 );
dc6c62a9 202
748fcded 203 okButton->SetDefault();
0d1f53ca
WS
204
205#endif // !__SMARTPHONE__
206
9026d6fd 207 m_input->SetFocus();
e90c1d2a 208
ca65c044 209 SetAutoLayout( true );
dc6c62a9 210 SetSizer( topsizer );
e90c1d2a 211
dc6c62a9
RR
212 topsizer->SetSizeHints( this );
213 topsizer->Fit( this );
214
215 Centre( wxBOTH );
748fcded 216}
dc6c62a9 217
748fcded
VS
218void wxGenericDirDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
219{
220 EndModal(wxID_CANCEL);
221}
2a4dbd81 222
748fcded
VS
223void wxGenericDirDialog::OnOK(wxCommandEvent& WXUNUSED(event))
224{
225 m_path = m_input->GetValue();
226 // Does the path exist? (User may have typed anything in m_input)
227 if (wxPathExists(m_path)) {
228 // OK, path exists, we're done.
229 EndModal(wxID_OK);
230 return;
f6bcfd97 231 }
748fcded
VS
232 // Interact with user, find out if the dir is a typo or to be created
233 wxString msg;
ca65c044 234 msg.Printf(_("The directory '%s' does not exist\nCreate it now?"),
748fcded 235 m_path.c_str());
ca65c044 236 wxMessageDialog dialog(this, msg, _("Directory does not exist"),
748fcded
VS
237 wxYES_NO | wxICON_WARNING);
238
239 if ( dialog.ShowModal() == wxID_YES ) {
240 // Okay, let's make it
241 wxLogNull log;
242 if (wxMkdir(m_path)) {
243 // The new dir was created okay.
244 EndModal(wxID_OK);
245 return;
246 }
247 else {
248 // Trouble...
ca65c044 249 msg.Printf(_("Failed to create directory '%s'\n(Do you have the required permissions?)"),
748fcded
VS
250 m_path.c_str());
251 wxMessageDialog errmsg(this, msg, _("Error creating directory"), wxOK | wxICON_ERROR);
252 errmsg.ShowModal();
253 // We still don't have a valid dir. Back to the main dialog.
f6bcfd97 254 }
f6bcfd97 255 }
748fcded
VS
256 // User has answered NO to create dir.
257}
f6bcfd97 258
748fcded
VS
259void wxGenericDirDialog::SetPath(const wxString& path)
260{
261 m_dirCtrl->SetPath(path);
262 m_path = path;
263}
f6bcfd97 264
748fcded
VS
265wxString wxGenericDirDialog::GetPath(void) const
266{
267 return m_path;
d7a15103
JS
268}
269
748fcded 270int wxGenericDirDialog::ShowModal()
d7a15103 271{
dc6c62a9
RR
272 m_input->SetValue( m_path );
273 return wxDialog::ShowModal();
d7a15103
JS
274}
275
748fcded 276void wxGenericDirDialog::OnTreeSelected( wxTreeEvent &event )
d7a15103 277{
748fcded
VS
278 if (!m_dirCtrl)
279 return;
280
281 wxDirItemData *data = (wxDirItemData*)m_dirCtrl->GetTreeCtrl()->GetItemData(event.GetItem());
e90c1d2a 282 if (data)
dc6c62a9 283 m_input->SetValue( data->m_path );
d7a15103
JS
284};
285
748fcded 286void wxGenericDirDialog::OnTreeKeyDown( wxTreeEvent &WXUNUSED(event) )
d7a15103 287{
748fcded
VS
288 if (!m_dirCtrl)
289 return;
290
291 wxDirItemData *data = (wxDirItemData*)m_dirCtrl->GetTreeCtrl()->GetItemData(m_dirCtrl->GetTreeCtrl()->GetSelection());
e90c1d2a 292 if (data)
dc6c62a9 293 m_input->SetValue( data->m_path );
d7a15103
JS
294};
295
42dcacf0
RR
296void wxGenericDirDialog::OnShowHidden( wxCommandEvent& event )
297{
298 if (!m_dirCtrl)
299 return;
300
2b5f62a0 301 m_dirCtrl->ShowHidden( event.GetInt() != 0 );
42dcacf0
RR
302}
303
748fcded 304void wxGenericDirDialog::OnNew( wxCommandEvent& WXUNUSED(event) )
d7a15103 305{
748fcded
VS
306 wxTreeItemId id = m_dirCtrl->GetTreeCtrl()->GetSelection();
307 if ((id == m_dirCtrl->GetTreeCtrl()->GetRootItem()) ||
99006e44 308 (m_dirCtrl->GetTreeCtrl()->GetItemParent(id) == m_dirCtrl->GetTreeCtrl()->GetRootItem()))
dc6c62a9 309 {
e90c1d2a
VZ
310 wxMessageDialog msg(this, _("You cannot add a new directory to this section."),
311 _("Create directory"), wxOK | wxICON_INFORMATION );
dc6c62a9
RR
312 msg.ShowModal();
313 return;
314 }
d7a15103 315
99006e44 316 wxTreeItemId parent = id ; // m_dirCtrl->GetTreeCtrl()->GetItemParent( id );
748fcded 317 wxDirItemData *data = (wxDirItemData*)m_dirCtrl->GetTreeCtrl()->GetItemData( parent );
dc6c62a9 318 wxASSERT( data );
e90c1d2a 319
748fcded 320 wxString new_name( _("NewName") );
dc6c62a9 321 wxString path( data->m_path );
083f7497 322 if (!wxEndsWithPathSeparator(path))
748fcded 323 path += wxFILE_SEP_PATH;
dc6c62a9
RR
324 path += new_name;
325 if (wxFileExists(path))
326 {
327 // try NewName0, NewName1 etc.
328 int i = 0;
f6bcfd97 329 do {
748fcded 330 new_name = _("NewName");
f6bcfd97
BP
331 wxString num;
332 num.Printf( wxT("%d"), i );
333 new_name += num;
e90c1d2a 334
dc6c62a9 335 path = data->m_path;
083f7497 336 if (!wxEndsWithPathSeparator(path))
748fcded 337 path += wxFILE_SEP_PATH;
dc6c62a9 338 path += new_name;
f6bcfd97
BP
339 i++;
340 } while (wxFileExists(path));
d7a15103 341 }
e90c1d2a 342
dc6c62a9 343 wxLogNull log;
e90c1d2a 344 if (!wxMkdir(path))
dc6c62a9
RR
345 {
346 wxMessageDialog dialog(this, _("Operation not permitted."), _("Error"), wxOK | wxICON_ERROR );
f6bcfd97 347 dialog.ShowModal();
dc6c62a9
RR
348 return;
349 }
350
ca65c044 351 wxDirItemData *new_data = new wxDirItemData( path, new_name, true );
d7a15103 352
748fcded
VS
353 // TODO: THIS CODE DOESN'T WORK YET. We need to avoid duplication of the first child
354 // of the parent.
355 wxTreeItemId new_id = m_dirCtrl->GetTreeCtrl()->AppendItem( parent, new_name, 0, 0, new_data );
356 m_dirCtrl->GetTreeCtrl()->EnsureVisible( new_id );
357 m_dirCtrl->GetTreeCtrl()->EditLabel( new_id );
d7a15103 358}
ce4169a4 359
e13ea14e
VS
360void wxGenericDirDialog::OnGoHome(wxCommandEvent& WXUNUSED(event))
361{
362 SetPath(wxGetUserHome());
363}
364
f6bcfd97 365#endif // wxUSE_DIRDLG