2006-05-31 19:57:54 -04:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Name: dirpicker.tex
%% Purpose: wxDirPickerCtrl documentation
%% Author: Francesco Montorsi
%% Created: 2006-05-12
%% RCS-ID: $Id$
%% Copyright: (c) 2006 Francesco Montorsi
%% License: wxWindows license
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section { \class { wxDirPickerCtrl} } \label { wxdirpickerctrl}
This control allows the user to select a directory. The generic implementation is
a button which brings up a \helpref { wxDirDialog} { wxdirdialog} when clicked. Native implementation
may differ but this is usually a (small) widget which give access to the dir-chooser
dialog.
It is only available if \texttt { wxUSE\_ DIRPICKERCTRL} is set to $ 1 $ (the default).
\wxheading { Derived from}
\helpref { wxPickerBase} { wxpickerbase} \\
\helpref { wxControl} { wxcontrol} \\
\helpref { wxWindow} { wxwindow} \\
\helpref { wxEvtHandler} { wxevthandler} \\
\helpref { wxObject} { wxobject}
\wxheading { Include files}
<wx/filepicker.h>
2007-07-28 08:21:03 -04:00
\wxheading { Library}
\helpref { wxCore} { librarieslist}
2006-05-31 19:57:54 -04:00
\wxheading { Window styles}
\twocolwidtha { 5cm} %
\begin { twocollist} \itemsep =0pt
2006-06-25 21:04:44 -04:00
\twocolitem { \windowstyle { wxDIRP\_ DEFAULT\_ STYLE} } { The default style: includes
wxDIRP\_ DIR\_ MUST\_ EXIST and, under wxMSW only, wxDIRP\_ USE\_ TEXTCTRL.}
2006-05-31 19:57:54 -04:00
\twocolitem { \windowstyle { wxDIRP\_ USE\_ TEXTCTRL} } { Creates a text control to the left of the
picker button which is completely managed by the \helpref { wxDirPickerCtrl} { wxdirpickerctrl}
and which can be used by the user to specify a path (see \helpref { SetPath} { wxdirpickerctrlsetpath} ).
The text control is automatically synchronized with button's value. Use functions defined in \helpref { wxPickerBase} { wxpickerbase} to modify the text control.}
\twocolitem { \windowstyle { wxDIRP\_ DIR\_ MUST\_ EXIST} } { Creates a picker which allows to select only existing directories. wxGTK control always adds this flag internally as it does not support its absence.}
\twocolitem { \windowstyle { wxDIRP\_ CHANGE\_ DIR} } { Change current working directory on each user directory selection change.}
\end { twocollist}
\wxheading { Event handling}
2006-11-26 13:48:36 -05:00
To process a directory picker event, use these event handler macros to direct input to member
functions that take a \helpref { wxFileDirPickerEvent} { wxfiledirpickerevent} argument.
2006-05-31 19:57:54 -04:00
\twocolwidtha { 7cm} %
\begin { twocollist} \itemsep =0pt
2006-06-25 21:04:44 -04:00
\twocolitem { { \bf EVT\_ DIRPICKER\_ CHANGED(id, func)} } { The user changed the
directory selected in the control either using the button or using text control
(see wxDIRP\_ USE\_ TEXTCTRL; note that in this case the event is fired only if
the user's input is valid, e.g. an existing directory path).}
2006-05-31 19:57:54 -04:00
\end { twocollist}
\wxheading { See also}
\helpref { wxDirDialog} { wxdirdialog} ,\\
\helpref { wxFileDirPickerEvent} { wxfiledirpickerevent}
\latexignore { \rtfignore { \wxheading { Members} } }
\membersection { wxDirPickerCtrl::wxDirPickerCtrl} \label { wxdirpickerctrl}
2006-06-08 15:10:00 -04:00
\func { } { wxDirPickerCtrl} { \param { wxWindow *} { parent} ,\rtfsp
2006-05-31 19:57:54 -04:00
\param { wxWindowID} { id} ,\rtfsp
\param { const wxString\& } { path = wxEmptyString} ,\rtfsp
\param { const wxString\& } { message = ``Select a folder"} ,\rtfsp
\param { const wxPoint\& } { pos = wxDefaultPosition} ,\rtfsp
\param { const wxSize\& } { size = wxDefaultSize} ,\rtfsp
\param { long} { style = wxDIRP\_ DEFAULT\_ STYLE} ,\rtfsp
\param { const wxValidator\& } { validator = wxDefaultValidator} ,
\param { const wxString\& } { name = ``dirpickerctrl"} }
Initializes the object and calls \helpref { Create} { wxdirpickerctrlcreate} with
all the parameters.
\membersection { wxDirPickerCtrl::Create} \label { wxdirpickerctrlcreate}
\func { bool} { Create} { \param { wxWindow *} { parent} ,\rtfsp
\param { wxWindowID} { id} ,\rtfsp
\param { const wxString\& } { path = wxEmptyString} ,\rtfsp
\param { const wxString\& } { message = ``Select a folder"} ,\rtfsp
\param { const wxPoint\& } { pos = wxDefaultPosition} ,\rtfsp
\param { const wxSize\& } { size = wxDefaultSize} ,\rtfsp
\param { long} { style = wxDIRP\_ DEFAULT\_ STYLE} ,\rtfsp
\param { const wxValidator\& } { validator = wxDefaultValidator} ,
\param { const wxString\& } { name = ``dirpickerctrl"} }
\wxheading { Parameters}
\docparam { parent} { Parent window, must not be non-\texttt { NULL} .}
\docparam { id} { The identifier for the control.}
\docparam { path} { The initial directory shown in the control. Must be a valid path to a directory or the empty string.}
2006-06-08 15:10:00 -04:00
\docparam { message} { The message shown to the user in the \helpref { wxDirDialog} { wxdirdialog} shown by the control.}
2006-05-31 19:57:54 -04:00
\docparam { pos} { Initial position.}
\docparam { size} { Initial size.}
2006-06-08 15:10:00 -04:00
\docparam { style} { The window style, see { \tt wxDIRP\_ * } flags.}
2006-05-31 19:57:54 -04:00
\docparam { validator} { Validator which can be used for additional date checks.}
\docparam { name} { Control name.}
\wxheading { Return value}
\true if the control was successfully created or \false if creation failed.
2007-02-03 19:22:47 -05:00
\membersection { wxFilePickerCtrl::GetDirName} \label { wxfilepickerctrlgetdirname}
\constfunc { wxFileName} { GetDirName} { \void }
2007-02-12 08:59:37 -05:00
Returns the absolute path of the currently selected directory as a \helpref { wxFileName} { wxfilename} object.
2007-02-03 19:22:47 -05:00
This function is equivalent to \helpref { GetPath} { wxdirpickerctrlgetpath}
2006-05-31 19:57:54 -04:00
\membersection { wxDirPickerCtrl::GetPath} \label { wxdirpickerctrlgetpath}
\constfunc { wxString} { GetPath} { \void }
2006-10-08 11:49:36 -04:00
Returns the absolute path of the currently selected directory.
2006-05-31 19:57:54 -04:00
2007-02-03 19:22:47 -05:00
\membersection { wxFilePickerCtrl::SetDirName} \label { wxfilepickerctrlsetdirname}
\func { void} { SetDirName} { \param { const wxFileName \& } { dirname} }
Just like \helpref { SetPath} { wxdirpickerctrlsetpath} but this function takes a
2007-02-12 08:59:37 -05:00
\helpref { wxFileName} { wxfilename} object.
2007-02-03 19:22:47 -05:00
2006-05-31 19:57:54 -04:00
\membersection { wxDirPickerCtrl::SetPath} \label { wxdirpickerctrlsetpath}
\func { void} { SetPath} { \param { const wxString \& } { dirname} }
2007-02-12 08:59:37 -05:00
Sets the absolute path of (the default converter uses current locale's
charset)the currently selected directory. This must be a valid directory if
2006-06-08 15:10:00 -04:00
{ \tt wxDIRP\_ DIR\_ MUST\_ EXIST} style was given.
2006-05-31 19:57:54 -04:00