adjusted indentation with astyle; added Id keyword
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52383 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -9,14 +9,14 @@
|
||||
/**
|
||||
@class wxFilePickerCtrl
|
||||
@wxheader{filepicker.h}
|
||||
|
||||
|
||||
This control allows the user to select a file. The generic implementation is
|
||||
a button which brings up a wxFileDialog when clicked. Native implementation
|
||||
may differ but this is usually a (small) widget which give access to the
|
||||
file-chooser
|
||||
dialog.
|
||||
It is only available if @c wxUSE_FILEPICKERCTRL is set to 1 (the default).
|
||||
|
||||
|
||||
@beginStyleTable
|
||||
@style{wxFLP_DEFAULT_STYLE}:
|
||||
The default style: includes wxFLP_OPEN | wxFLP_FILE_MUST_EXIST and,
|
||||
@@ -40,11 +40,11 @@
|
||||
@style{wxFLP_CHANGE_DIR}:
|
||||
Change current working directory on each user file selection change.
|
||||
@endStyleTable
|
||||
|
||||
|
||||
@library{wxcore}
|
||||
@category{miscpickers}
|
||||
@appearance{filepickerctrl.png}
|
||||
|
||||
|
||||
@seealso
|
||||
wxFileDialog, wxFileDirPickerEvent
|
||||
*/
|
||||
@@ -66,36 +66,36 @@ public:
|
||||
const wxString& name = "filepickerctrl");
|
||||
|
||||
/**
|
||||
@param parent
|
||||
@param parent
|
||||
Parent window, must not be non-@NULL.
|
||||
|
||||
@param id
|
||||
@param id
|
||||
The identifier for the control.
|
||||
|
||||
@param path
|
||||
@param path
|
||||
The initial file shown in the control. Must be a valid path to a file or the
|
||||
empty string.
|
||||
|
||||
@param message
|
||||
@param message
|
||||
The message shown to the user in the wxFileDialog shown by the control.
|
||||
|
||||
@param wildcard
|
||||
@param wildcard
|
||||
A wildcard which defines user-selectable files (use the same syntax as for
|
||||
wxFileDialog's wildcards).
|
||||
|
||||
@param pos
|
||||
@param pos
|
||||
Initial position.
|
||||
|
||||
@param size
|
||||
@param size
|
||||
Initial size.
|
||||
|
||||
@param style
|
||||
@param style
|
||||
The window style, see wxFLP_* flags.
|
||||
|
||||
@param validator
|
||||
@param validator
|
||||
Validator which can be used for additional date checks.
|
||||
|
||||
@param name
|
||||
@param name
|
||||
Control name.
|
||||
|
||||
@returns @true if the control was successfully created or @false if
|
||||
@@ -140,7 +140,7 @@ public:
|
||||
/**
|
||||
@class wxDirPickerCtrl
|
||||
@wxheader{filepicker.h}
|
||||
|
||||
|
||||
This control allows the user to select a directory. The generic implementation
|
||||
is
|
||||
a button which brings up a wxDirDialog when clicked. Native implementation
|
||||
@@ -148,7 +148,7 @@ public:
|
||||
dir-chooser
|
||||
dialog.
|
||||
It is only available if @c wxUSE_DIRPICKERCTRL is set to 1 (the default).
|
||||
|
||||
|
||||
@beginStyleTable
|
||||
@style{wxDIRP_DEFAULT_STYLE}:
|
||||
The default style: includes wxDIRP_DIR_MUST_EXIST and, under wxMSW
|
||||
@@ -167,11 +167,11 @@ public:
|
||||
Change current working directory on each user directory selection
|
||||
change.
|
||||
@endStyleTable
|
||||
|
||||
|
||||
@library{wxcore}
|
||||
@category{miscpickers}
|
||||
@appearance{dirpickerctrl.png}
|
||||
|
||||
|
||||
@seealso
|
||||
wxDirDialog, wxFileDirPickerEvent
|
||||
*/
|
||||
@@ -192,32 +192,32 @@ public:
|
||||
const wxString& name = "dirpickerctrl");
|
||||
|
||||
/**
|
||||
@param parent
|
||||
@param parent
|
||||
Parent window, must not be non-@NULL.
|
||||
|
||||
@param id
|
||||
@param id
|
||||
The identifier for the control.
|
||||
|
||||
@param path
|
||||
@param path
|
||||
The initial directory shown in the control. Must be a valid path to a directory
|
||||
or the empty string.
|
||||
|
||||
@param message
|
||||
@param message
|
||||
The message shown to the user in the wxDirDialog shown by the control.
|
||||
|
||||
@param pos
|
||||
@param pos
|
||||
Initial position.
|
||||
|
||||
@param size
|
||||
@param size
|
||||
Initial size.
|
||||
|
||||
@param style
|
||||
@param style
|
||||
The window style, see wxDIRP_* flags.
|
||||
|
||||
@param validator
|
||||
@param validator
|
||||
Validator which can be used for additional date checks.
|
||||
|
||||
@param name
|
||||
@param name
|
||||
Control name.
|
||||
|
||||
@returns @true if the control was successfully created or @false if
|
||||
@@ -262,13 +262,13 @@ public:
|
||||
/**
|
||||
@class wxFileDirPickerEvent
|
||||
@wxheader{filepicker.h}
|
||||
|
||||
|
||||
This event class is used for the events generated by
|
||||
wxFilePickerCtrl and by wxDirPickerCtrl.
|
||||
|
||||
|
||||
@library{wxcore}
|
||||
@category{FIXME}
|
||||
|
||||
|
||||
@seealso
|
||||
wxfilepickerctrl
|
||||
*/
|
||||
|
Reference in New Issue
Block a user