]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/dirdlgg.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDirDialog
4 // Author: Harm van der Heijden, Robert Roebling & Julian Smart
8 // Copyright: (c) Harm van der Heijden, Robert Roebling, Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "dirdlgg.h"
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
29 #include "wx/textctrl.h"
30 #include "wx/button.h"
31 #include "wx/checkbox.h"
35 #include "wx/msgdlg.h"
38 #include "wx/statline.h"
39 #include "wx/generic/dirctrlg.h"
40 #include "wx/generic/dirdlgg.h"
41 #include "wx/artprov.h"
42 #include "wx/bmpbuttn.h"
44 //-----------------------------------------------------------------------------
46 //-----------------------------------------------------------------------------
48 static const int ID_DIRCTRL
= 1000;
49 static const int ID_TEXTCTRL
= 1001;
50 static const int ID_OK
= 1002;
51 static const int ID_CANCEL
= 1003;
52 static const int ID_NEW
= 1004;
53 static const int ID_SHOW_HIDDEN
= 1005;
54 static const int ID_GO_HOME
= 1006;
56 BEGIN_EVENT_TABLE(wxGenericDirDialog
, wxDialog
)
57 EVT_CLOSE (wxGenericDirDialog::OnCloseWindow
)
58 EVT_BUTTON (wxID_OK
, wxGenericDirDialog::OnOK
)
59 EVT_BUTTON (ID_NEW
, wxGenericDirDialog::OnNew
)
60 EVT_BUTTON (ID_GO_HOME
, wxGenericDirDialog::OnGoHome
)
61 EVT_TREE_KEY_DOWN (-1, wxGenericDirDialog::OnTreeKeyDown
)
62 EVT_TREE_SEL_CHANGED (-1, wxGenericDirDialog::OnTreeSelected
)
63 EVT_TEXT_ENTER (ID_TEXTCTRL
, wxGenericDirDialog::OnOK
)
64 EVT_CHECKBOX (ID_SHOW_HIDDEN
, wxGenericDirDialog::OnShowHidden
)
67 wxGenericDirDialog::wxGenericDirDialog(wxWindow
* parent
, const wxString
& title
,
68 const wxString
& defaultPath
, long style
,
69 const wxPoint
& pos
, const wxSize
& sz
,
70 const wxString
& name
):
71 wxDialog(parent
, ID_DIRCTRL
, title
, pos
, sz
, style
, name
)
76 if (m_path
== wxT("~"))
77 wxGetHomeDir(&m_path
);
78 if (m_path
== wxT("."))
81 wxBoxSizer
*topsizer
= new wxBoxSizer( wxVERTICAL
);
83 // 0) 'New' and 'Home' Buttons
84 wxSizer
* buttonsizer
= new wxBoxSizer( wxHORIZONTAL
);
86 // VS: 'Home directory' concept is unknown to MS-DOS
88 wxBitmapButton
* homeButton
=
89 new wxBitmapButton(this, ID_GO_HOME
,
90 wxArtProvider::GetBitmap(wxART_GO_HOME
, wxART_CMN_DIALOG
));
91 buttonsizer
->Add( homeButton
, 0, wxLEFT
|wxRIGHT
, 10 );
94 // I'm not convinced we need a New button, and we tend to get annoying
95 // accidental-editing with label editing enabled.
96 wxBitmapButton
* newButton
=
97 new wxBitmapButton(this, ID_NEW
,
98 wxArtProvider::GetBitmap(wxART_NEW_DIR
, wxART_CMN_DIALOG
));
99 buttonsizer
->Add( newButton
, 0, wxRIGHT
, 10 );
102 homeButton
->SetToolTip(_("Go to home directory"));
103 newButton
->SetToolTip(_("Create new directory"));
106 topsizer
->Add( buttonsizer
, 0, wxTOP
| wxALIGN_RIGHT
, 10 );
109 m_dirCtrl
= NULL
; // this is neccessary, event handler called from
110 // wxGenericDirCtrl would crash otherwise!
111 m_dirCtrl
= new wxGenericDirCtrl(this, ID_DIRCTRL
,
112 m_path
, wxPoint(5, 5),
114 wxDIRCTRL_DIR_ONLY
|wxSUNKEN_BORDER
);
116 topsizer
->Add( m_dirCtrl
, 1, wxTOP
|wxLEFT
|wxRIGHT
| wxEXPAND
, 10 );
118 // Make the an option depending on a flag?
119 wxCheckBox
* check
= new wxCheckBox( this, ID_SHOW_HIDDEN
, _("Show hidden directories") );
120 topsizer
->Add( check
, 0, wxLEFT
|wxTOP
| wxALIGN_RIGHT
, 5 );
123 m_input
= new wxTextCtrl( this, ID_TEXTCTRL
, m_path
, wxDefaultPosition
);
124 topsizer
->Add( m_input
, 0, wxTOP
|wxLEFT
|wxRIGHT
| wxEXPAND
, 10 );
128 topsizer
->Add( new wxStaticLine( this, -1 ), 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
132 buttonsizer
= new wxBoxSizer( wxHORIZONTAL
);
134 // OK and Cancel button should be at the right bottom
135 wxButton
* okButton
= new wxButton(this, wxID_OK
, _("OK"));
136 buttonsizer
->Add( okButton
, 0, wxLEFT
|wxRIGHT
, 10 );
137 wxButton
* cancelButton
= new wxButton(this, wxID_CANCEL
, _("Cancel"));
138 buttonsizer
->Add( cancelButton
, 0, wxLEFT
|wxRIGHT
, 10 );
140 topsizer
->Add( buttonsizer
, 0, wxALL
| wxALIGN_RIGHT
, 10 );
142 okButton
->SetDefault();
143 m_dirCtrl
->SetFocus();
145 SetAutoLayout( TRUE
);
146 SetSizer( topsizer
);
148 topsizer
->SetSizeHints( this );
149 topsizer
->Fit( this );
154 void wxGenericDirDialog::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
156 EndModal(wxID_CANCEL
);
159 void wxGenericDirDialog::OnOK(wxCommandEvent
& WXUNUSED(event
))
161 m_path
= m_input
->GetValue();
162 // Does the path exist? (User may have typed anything in m_input)
163 if (wxPathExists(m_path
)) {
164 // OK, path exists, we're done.
168 // Interact with user, find out if the dir is a typo or to be created
170 msg
.Printf(_("The directory '%s' does not exist\nCreate it now?"),
172 wxMessageDialog
dialog(this, msg
, _("Directory does not exist"),
173 wxYES_NO
| wxICON_WARNING
);
175 if ( dialog
.ShowModal() == wxID_YES
) {
176 // Okay, let's make it
178 if (wxMkdir(m_path
)) {
179 // The new dir was created okay.
185 msg
.Printf(_("Failed to create directory '%s'\n(Do you have the required permissions?)"),
187 wxMessageDialog
errmsg(this, msg
, _("Error creating directory"), wxOK
| wxICON_ERROR
);
189 // We still don't have a valid dir. Back to the main dialog.
192 // User has answered NO to create dir.
195 void wxGenericDirDialog::SetPath(const wxString
& path
)
197 m_dirCtrl
->SetPath(path
);
201 wxString
wxGenericDirDialog::GetPath(void) const
206 int wxGenericDirDialog::ShowModal()
208 m_input
->SetValue( m_path
);
209 return wxDialog::ShowModal();
212 void wxGenericDirDialog::OnTreeSelected( wxTreeEvent
&event
)
217 wxDirItemData
*data
= (wxDirItemData
*)m_dirCtrl
->GetTreeCtrl()->GetItemData(event
.GetItem());
219 m_input
->SetValue( data
->m_path
);
222 void wxGenericDirDialog::OnTreeKeyDown( wxTreeEvent
&WXUNUSED(event
) )
227 wxDirItemData
*data
= (wxDirItemData
*)m_dirCtrl
->GetTreeCtrl()->GetItemData(m_dirCtrl
->GetTreeCtrl()->GetSelection());
229 m_input
->SetValue( data
->m_path
);
232 void wxGenericDirDialog::OnShowHidden( wxCommandEvent
& event
)
237 m_dirCtrl
->ShowHidden( event
.GetInt() );
240 void wxGenericDirDialog::OnNew( wxCommandEvent
& WXUNUSED(event
) )
242 wxTreeItemId id
= m_dirCtrl
->GetTreeCtrl()->GetSelection();
243 if ((id
== m_dirCtrl
->GetTreeCtrl()->GetRootItem()) ||
244 (m_dirCtrl
->GetTreeCtrl()->GetParent(id
) == m_dirCtrl
->GetTreeCtrl()->GetRootItem()))
246 wxMessageDialog
msg(this, _("You cannot add a new directory to this section."),
247 _("Create directory"), wxOK
| wxICON_INFORMATION
);
252 wxTreeItemId parent
= id
; // m_dirCtrl->GetTreeCtrl()->GetParent( id );
253 wxDirItemData
*data
= (wxDirItemData
*)m_dirCtrl
->GetTreeCtrl()->GetItemData( parent
);
256 wxString
new_name( _("NewName") );
257 wxString
path( data
->m_path
);
258 if (path
.Last() != wxFILE_SEP_PATH
)
259 path
+= wxFILE_SEP_PATH
;
261 if (wxFileExists(path
))
263 // try NewName0, NewName1 etc.
266 new_name
= _("NewName");
268 num
.Printf( wxT("%d"), i
);
272 if (path
.Last() != wxFILE_SEP_PATH
)
273 path
+= wxFILE_SEP_PATH
;
276 } while (wxFileExists(path
));
282 wxMessageDialog
dialog(this, _("Operation not permitted."), _("Error"), wxOK
| wxICON_ERROR
);
287 wxDirItemData
*new_data
= new wxDirItemData( path
, new_name
, TRUE
);
289 // TODO: THIS CODE DOESN'T WORK YET. We need to avoid duplication of the first child
291 wxTreeItemId new_id
= m_dirCtrl
->GetTreeCtrl()->AppendItem( parent
, new_name
, 0, 0, new_data
);
292 m_dirCtrl
->GetTreeCtrl()->EnsureVisible( new_id
);
293 m_dirCtrl
->GetTreeCtrl()->EditLabel( new_id
);
296 void wxGenericDirDialog::OnGoHome(wxCommandEvent
& WXUNUSED(event
))
298 SetPath(wxGetUserHome());
301 #endif // wxUSE_DIRDLG