]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/dirdlgg.cpp
8ea3fa571ed1402726ecb97103e72ed69366b06d
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDirDialog
4 // Author: Harm van der Heijden and Robert Roebling
8 // Copyright: (c) Harm van der Heijden and Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "dirdlgg.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
28 #include "wx/dialog.h"
29 #include "wx/button.h"
30 #include "wx/layout.h"
31 #include "wx/msgdlg.h"
32 #include "wx/textdlg.h"
33 #include "wx/filefn.h"
34 #include "wx/cmndata.h"
35 #include "wx/gdicmn.h"
37 #include "wx/imaglist.h"
43 #include "wx/statline.h"
46 #include "wx/generic/dirdlgg.h"
48 // If compiled under Windows, this macro can cause problems
54 static char * icon1_xpm
[] = {
55 /* width height ncolors chars_per_pixel */
83 static char * icon2_xpm
[] = {
84 /* width height ncolors chars_per_pixel */
111 static const int ID_DIRCTRL
= 1000;
112 static const int ID_TEXTCTRL
= 1001;
113 static const int ID_OK
= 1002;
114 static const int ID_CANCEL
= 1003;
115 static const int ID_NEW
= 1004;
116 //static const int ID_CHECK = 1005;
118 //-----------------------------------------------------------------------------
120 //-----------------------------------------------------------------------------
122 wxDirItemData::wxDirItemData(wxString
& path
, wxString
& name
)
126 /* Insert logic to detect hidden files here
127 * In UnixLand we just check whether the first char is a dot
128 * For FileNameFromPath read LastDirNameInThisPath ;-) */
129 // m_isHidden = (bool)(wxFileNameFromPath(*m_path)[0] == '.');
131 m_hasSubDirs
= HasSubDirs();
134 wxDirItemData::~wxDirItemData()
138 void wxDirItemData::SetNewDirName( wxString path
)
141 m_name
= wxFileNameFromPath( path
);
144 bool wxDirItemData::HasSubDirs()
146 wxString search
= m_path
+ "/*";
148 wxString path
= wxFindFirstFile( search
, wxDIR
);
149 return (bool)(!path
.IsNull());
152 //-----------------------------------------------------------------------------
154 //-----------------------------------------------------------------------------
156 IMPLEMENT_DYNAMIC_CLASS(wxDirCtrl
,wxTreeCtrl
)
158 BEGIN_EVENT_TABLE(wxDirCtrl
,wxTreeCtrl
)
159 EVT_TREE_ITEM_EXPANDING (-1, wxDirCtrl::OnExpandItem
)
160 EVT_TREE_ITEM_COLLAPSED (-1, wxDirCtrl::OnCollapseItem
)
161 EVT_TREE_BEGIN_LABEL_EDIT (-1, wxDirCtrl::OnBeginEditItem
)
162 EVT_TREE_END_LABEL_EDIT (-1, wxDirCtrl::OnEndEditItem
)
165 wxDirCtrl::wxDirCtrl(void)
167 m_showHidden
= FALSE
;
170 wxDirCtrl::wxDirCtrl(wxWindow
*parent
, const wxWindowID id
, const wxString
&WXUNUSED(dir
),
171 const wxPoint
& pos
, const wxSize
& size
,
172 const long style
, const wxString
& name
)
174 wxTreeCtrl( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
)
176 m_imageListNormal
= new wxImageList(16, 16, TRUE
);
177 m_imageListNormal
->Add(wxICON(icon1
));
178 m_imageListNormal
->Add(wxICON(icon2
));
179 SetImageList(m_imageListNormal
);
181 m_showHidden
= FALSE
;
182 m_rootId
= AddRoot( _("Sections") );
183 SetItemHasChildren(m_rootId
);
184 Expand(m_rootId
); // automatically expand first level
187 /* Quick macro. Don't worry, I'll #undef it later */
188 #define ADD_SECTION(a,b) \
189 if (wxPathExists((a))) { m_paths.Add( (a) ); m_names.Add( (b) ); };
191 void wxDirCtrl::SetupSections()
197 ADD_SECTION(_T("/"), _("The Computer") )
199 ADD_SECTION(home
, _("My Home") )
200 ADD_SECTION(_T("/mnt"), _("Mounted Devices") )
201 ADD_SECTION(_T("/usr"), _("User") )
202 ADD_SECTION(_T("/usr/local"), _("User Local") )
203 ADD_SECTION(_T("/var"), _("Variables") )
204 ADD_SECTION(_T("/etc"), _("Etcetera") )
205 ADD_SECTION(_T("/tmp"), _("Temporary") )
209 void wxDirCtrl::CreateItems(const wxTreeItemId
&parent
)
212 wxDirItemData
*dir_item
;
214 // wxASSERT(m_paths.Count() == m_names.Count()); ?
216 for (unsigned int i
=0; i
<m_paths
.Count(); i
++)
218 dir_item
= new wxDirItemData(m_paths
[i
],m_names
[i
]);
219 id
= AppendItem( parent
, m_names
[i
], 0, 1, dir_item
);
220 if (dir_item
->m_hasSubDirs
) SetItemHasChildren(id
);
224 void wxDirCtrl::OnBeginEditItem(wxTreeEvent
&event
)
226 // don't rename the main entry "Sections"
227 if (event
.GetItem() == m_rootId
)
233 // don't rename the individual sections
234 if (GetParent( event
.GetItem() ) == m_rootId
)
241 void wxDirCtrl::OnEndEditItem(wxTreeEvent
&event
)
243 if ((event
.GetLabel().IsEmpty()) ||
244 (event
.GetLabel() == _(".")) ||
245 (event
.GetLabel() == _("..")) ||
246 (event
.GetLabel().First( _T("/") ) != wxNOT_FOUND
))
248 wxMessageDialog
dialog(this, _("Illegal directory name."), _("Error"), wxOK
| wxICON_ERROR
);
254 wxTreeItemId id
= event
.GetItem();
255 wxDirItemData
*data
= (wxDirItemData
*)GetItemData( id
);
258 wxString
new_name( wxPathOnly( data
->m_path
) );
260 new_name
+= event
.GetLabel();
264 if (wxFileExists(new_name
))
266 wxMessageDialog
dialog(this, _("File name exists already."), _("Error"), wxOK
| wxICON_ERROR
);
271 if (wxRenameFile(data
->m_path
,new_name
))
273 data
->SetNewDirName( new_name
);
277 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
283 void wxDirCtrl::OnExpandItem(wxTreeEvent
&event
)
285 if (event
.GetItem() == m_rootId
)
288 CreateItems(m_rootId
);
292 // This may take a longish time. Go to busy cursor
295 wxDirItemData
*data
= (wxDirItemData
*)GetItemData(event
.GetItem());
298 wxString search
,path
,filename
;
302 search
= data
->m_path
+ "/*";
303 for (path
= wxFindFirstFile( search
, wxDIR
); !path
.IsNull();
304 path
=wxFindNextFile() )
306 filename
= wxFileNameFromPath( path
);
307 /* Don't add "." and ".." to the tree. I think wxFindNextFile
308 * also checks this, but I don't quite understand what happens
309 * there. Also wxFindNextFile seems to swallow hidden dirs */
310 if ((filename
!= ".") && (filename
!= ".."))
313 m_names
.Add(filename
);
317 CreateItems( event
.GetItem() );
318 SortChildren( event
.GetItem() );
323 void wxDirCtrl::OnCollapseItem(wxTreeEvent
&event
)
325 wxTreeItemId child
, parent
= event
.GetItem();
327 /* Workaround because DeleteChildren has disapeared (why?) and
328 * CollapseAndReset doesn't work as advertised (deletes parent too) */
329 child
= GetFirstChild(parent
, cookie
);
333 /* Not GetNextChild below, because the cookie mechanism can't
334 * handle disappearing children! */
335 child
= GetFirstChild(parent
, cookie
);
339 //-----------------------------------------------------------------------------
341 //-----------------------------------------------------------------------------
344 #if !USE_SHARED_LIBRARY
345 IMPLEMENT_CLASS(wxDirDialog
, wxDialog
)
347 IMPLEMENT_DYNAMIC_CLASS( wxDirDialog
, wxDialog
)
350 BEGIN_EVENT_TABLE( wxDirDialog
, wxDialog
)
351 EVT_TREE_KEY_DOWN (ID_DIRCTRL
, wxDirDialog::OnTreeKeyDown
)
352 EVT_TREE_SEL_CHANGED (ID_DIRCTRL
, wxDirDialog::OnTreeSelected
)
353 EVT_SIZE ( wxDirDialog::OnSize
)
354 EVT_BUTTON (ID_OK
, wxDirDialog::OnOK
)
355 EVT_BUTTON (ID_CANCEL
, wxDirDialog::OnCancel
)
356 EVT_BUTTON (ID_NEW
, wxDirDialog::OnNew
)
357 EVT_TEXT_ENTER (ID_TEXTCTRL
, wxDirDialog::OnOK
)
358 // EVT_CHECKBOX (ID_CHECK, wxDirDialog::OnCheck)
361 wxDirDialog::wxDirDialog(wxWindow
*parent
, const wxString
& message
,
362 const wxString
& defaultPath
, long style
,
363 const wxPoint
& pos
) :
364 wxDialog(parent
, -1, message
, pos
, wxSize(300,300),
365 wxDEFAULT_DIALOG_STYLE
| wxRESIZE_BORDER
)
368 m_dialogStyle
= style
;
371 m_path
= defaultPath
;
375 wxBoxSizer
*topsizer
= new wxBoxSizer( wxVERTICAL
);
378 m_dir
= new wxDirCtrl( this, ID_DIRCTRL
, "/", wxDefaultPosition
, wxSize(200,200),
379 wxTR_HAS_BUTTONS
| wxSUNKEN_BORDER
| wxTR_EDIT_LABELS
);
380 topsizer
->Add( m_dir
, 1, wxTOP
|wxLEFT
|wxRIGHT
| wxEXPAND
, 10 );
383 m_input
= new wxTextCtrl( this, ID_TEXTCTRL
, m_path
, wxDefaultPosition
);
384 topsizer
->Add( m_input
, 0, wxTOP
|wxLEFT
|wxRIGHT
| wxEXPAND
, 10 );
386 // m_check = new wxCheckBox( this, ID_CHECK, _("Show hidden") );
387 // m_check->SetValue(TRUE);
391 topsizer
->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
395 wxSizer
* buttonsizer
= new wxBoxSizer( wxHORIZONTAL
);
396 m_ok
= new wxButton( this, ID_OK
, _("OK") );
397 buttonsizer
->Add( m_ok
, 0, wxLEFT
|wxRIGHT
, 10 );
398 m_cancel
= new wxButton( this, ID_CANCEL
, _("Cancel") );
399 buttonsizer
->Add( m_cancel
, 0, wxLEFT
|wxRIGHT
, 10 );
400 m_new
= new wxButton( this, ID_NEW
, _("New...") );
401 buttonsizer
->Add( m_new
, 0, wxLEFT
|wxRIGHT
, 10 );
403 topsizer
->Add( buttonsizer
, 0, wxALL
| wxCENTER
, 10 );
408 SetAutoLayout( TRUE
);
409 SetSizer( topsizer
);
411 topsizer
->SetSizeHints( this );
412 topsizer
->Fit( this );
419 int wxDirDialog::ShowModal()
421 m_input
->SetValue( m_path
);
422 return wxDialog::ShowModal();
425 void wxDirDialog::OnTreeSelected( wxTreeEvent
&event
)
427 wxDirItemData
*data
= (wxDirItemData
*)m_dir
->GetItemData(event
.GetItem());
429 m_input
->SetValue( data
->m_path
);
432 void wxDirDialog::OnTreeKeyDown( wxTreeEvent
&WXUNUSED(event
) )
434 wxDirItemData
*data
= (wxDirItemData
*)m_dir
->GetItemData(m_dir
->GetSelection());
436 m_input
->SetValue( data
->m_path
);
439 void wxDirDialog::OnOK( wxCommandEvent
& WXUNUSED(event
) )
441 m_path
= m_input
->GetValue();
442 // Does the path exist? (User may have typed anything in m_input)
443 if (wxPathExists(m_path
)) {
444 // OK, path exists, we're done.
448 // Interact with user, find out if the dir is a typo or to be created
449 wxString
msg( _("The directory ") );
451 msg
= msg
+ _("\ndoes not exist\nCreate it now?") ;
452 wxMessageDialog
dialog(this, msg
, _("Directory does not exist"), wxYES_NO
| wxICON_WARNING
);
453 if ( dialog
.ShowModal() == wxID_YES
) {
454 // Okay, let's make it
456 if (wxMkdir(m_path
)) {
457 // The new dir was created okay.
463 msg
= _("Failed to create directory ")+m_path
+
464 _("\n(Do you have the required permissions?)");
465 wxMessageDialog
errmsg(this, msg
, _("Error creating directory"), wxOK
| wxICON_ERROR
);
467 // We still don't have a valid dir. Back to the main dialog.
470 // User has answered NO to create dir.
473 void wxDirDialog::OnCancel( wxCommandEvent
& WXUNUSED(event
) )
475 EndModal(wxID_CANCEL
);
478 void wxDirDialog::OnNew( wxCommandEvent
& WXUNUSED(event
) )
480 wxTreeItemId id
= m_dir
->GetSelection();
481 if ((id
== m_dir
->GetRootItem()) ||
482 (m_dir
->GetParent(id
) == m_dir
->GetRootItem()))
484 wxMessageDialog
msg(this, _("You cannot add a new directory to this section."),
485 _("Create directory"), wxOK
| wxICON_INFORMATION
);
490 wxTreeItemId parent
= m_dir
->GetParent( id
);
491 wxDirItemData
*data
= (wxDirItemData
*)m_dir
->GetItemData( parent
);
494 wxString
new_name( _T("NewName") );
495 wxString
path( data
->m_path
);
498 if (wxFileExists(path
))
500 // try NewName0, NewName1 etc.
503 new_name
= _T("NewName");
505 num
.Printf( "%d", i
);
512 } while (wxFileExists(path
));
518 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
523 wxDirItemData
*new_data
= new wxDirItemData( path
, new_name
);
524 wxTreeItemId new_id
= m_dir
->AppendItem( parent
, new_name
, 0, 1, new_data
);
525 m_dir
->EnsureVisible( new_id
);
526 m_dir
->EditLabel( new_id
);
530 void wxDirDialog::OnCheck( wxCommandEvent& WXUNUSED(event) )
532 printf("Checkbox clicked: %s\n", ( m_check->GetValue() ? "on" : "off" ) );