]>
git.saurik.com Git - wxWidgets.git/blob - interface/cmdline.h
41c83baf5e18b2e45625e9a47b57fdff2e153404
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: documentation for wxCmdLineParser class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxCmdLineParser
13 wxCmdLineParser is a class for parsing the command line.
15 It has the following features:
17 distinguishes options, switches and parameters; allows option grouping
18 allows both short and long options
19 automatically generates the usage message from the command line description
20 does type checks on the options values (number, date, ...).
22 To use it you should follow these steps:
24 @ref wxCmdLineParser::construction construct an object of this class
25 giving it the command line to parse and optionally its description or use
26 @c AddXXX() functions later
28 use @c Found() to retrieve the results
30 In the documentation below the following terminology is used:
37 This is a boolean option which can be given or not, but
38 which doesn't have any value. We use the word switch to distinguish such boolean
39 options from more generic options like those described below. For example,
40 @c -v might be a switch meaning "enable verbose mode".
46 Option for us here is something which comes with a value 0
47 unlike a switch. For example, @c -o:filename might be an option which allows
48 to specify the name of the output file.
54 This is a required program argument.
59 @category{appmanagement}
62 wxApp::argc and wxApp::argv, console sample
69 Specifies both the command line (in Windows format) and the
70 @ref setdesc() "command line description".
73 wxCmdLineParser(int argc
, char** argv
);
74 wxCmdLineParser(int argc
, wchar_t** argv
);
75 wxCmdLineParser(const wxString
& cmdline
);
76 wxCmdLineParser(const wxCmdLineEntryDesc
* desc
);
77 wxCmdLineParser(const wxCmdLineEntryDesc
* desc
, int argc
,
79 wxCmdLineParser(const wxCmdLineEntryDesc
* desc
,
80 const wxString
& cmdline
);
84 Frees resources allocated by the object.
86 @b NB: destructor is not virtual, don't use this class polymorphically.
91 Add an option @e name with an optional long name @e lng (no long name if
92 it is empty, which is default) taking a value of the given type (string by
93 default) to the command line description.
95 void AddOption(const wxString
& name
,
96 const wxString
& lng
= wxEmptyString
,
97 const wxString
& desc
= wxEmptyString
,
98 wxCmdLineParamType type
= wxCMD_LINE_VAL_STRING
,
102 Add a parameter of the given @e type to the command line description.
104 void AddParam(const wxString
& desc
= wxEmptyString
,
105 wxCmdLineParamType type
= wxCMD_LINE_VAL_STRING
,
109 Add a switch @e name with an optional long name @e lng (no long name if it
110 is empty, which is default), description @e desc and flags @e flags to the
111 command line description.
113 void AddSwitch(const wxString
& name
,
114 const wxString
& lng
= wxEmptyString
,
115 const wxString
& desc
= wxEmptyString
,
119 Returns @true if long options are enabled, otherwise @false.
121 @sa EnableLongOptions()
123 bool AreLongOptionsEnabled();
126 Before Parse() can be called, the command line
127 parser object must have the command line to parse and also the rules saying
128 which switches, options and parameters are valid - this is called command line
129 description in what follows.
131 You have complete freedom of choice as to when specify the required information,
132 the only restriction is that it must be done before calling
135 To specify the command line to parse you may use either one of constructors
136 accepting it (@c wxCmdLineParser(argc, argv) or @c wxCmdLineParser(const
138 or, if you use the default constructor, you can do it later by calling
141 The same holds for command line description: it can be specified either in
142 the @ref wxcmdlineparserctor() constructor (with or without
143 the command line itself) or constructed later using either
144 SetDesc() or combination of
149 Using constructors or SetDesc() uses a (usually
150 @c const static) table containing the command line description. If you want
151 to decide which options to accept during the run-time, using one of the
152 @c AddXXX() functions above might be preferable.
157 Breaks down the string containing the full command line in words. The words are
158 separated by whitespace. The quotes can be used in the input string to quote
159 the white space and the back slashes can be used to quote the quotes.
161 static wxArrayString
ConvertStringToArgs(const wxChar cmdline
);
164 wxCmdLineParser has several global options which may be changed by the
165 application. All of the functions described in this section should be called
168 First global option is the support for long (also known as GNU-style) options.
169 The long options are the ones which start with two dashes (@c "--") and look
170 like this: @c --verbose, i.e. they generally are complete words and not some
171 abbreviations of them. As long options are used by more and more applications,
172 they are enabled by default, but may be disabled with
173 DisableLongOptions().
175 Another global option is the set of characters which may be used to start an
176 option (otherwise, the word on the command line is assumed to be a parameter).
177 Under Unix, @c '-' is always used, but Windows has at least two common
178 choices for this: @c '-' and @c '/'. Some programs also use @c '+'.
179 The default is to use what suits most the current platform, but may be changed
180 with SetSwitchChars() method.
182 Finally, SetLogo() can be used to show some
183 application-specific text before the explanation given by
189 Identical to @ref enablelongoptions() EnableLongOptions(@false).
191 void DisableLongOptions();
194 Enable or disable support for the long options.
196 As long options are not (yet) POSIX-compliant, this option allows to disable
199 @sa Customization() and AreLongOptionsEnabled()
201 void EnableLongOptions(bool enable
= @
true);
205 Returns @true if an option taking a date value was found and stores the
206 value in the provided pointer (which should not be @NULL).
208 bool Found(const wxString
& name
);
209 bool Found(const wxString
& name
, wxString
* value
);
210 bool Found(const wxString
& name
, long* value
);
211 bool Found(const wxString
& name
, wxDateTime
* value
);
215 Returns the value of Nth parameter (as string only).
217 wxString
GetParam(size_t n
= 0u);
220 Returns the number of parameters found. This function makes sense mostly if you
221 had used @c wxCMD_LINE_PARAM_MULTIPLE flag.
223 size_t GetParamCount();
226 After calling Parse() (and if it returned 0),
227 you may access the results of parsing using one of overloaded @c Found()
230 For a simple switch, you will simply call
231 Found() to determine if the switch was given
232 or not, for an option or a parameter, you will call a version of @c Found()
233 which also returns the associated value in the provided variable. All
234 @c Found() functions return @true if the switch or option were found in the
235 command line or @false if they were not specified.
240 Parse the command line, return 0 if ok, -1 if @c "-h" or @c "--help"
241 option was encountered and the help message was given or a positive value if a
242 syntax error occurred.
245 If @true (default), the usage message is given if a
246 syntax error was encountered while parsing the command line or if help was
247 requested. If @false, only error messages about possible syntax errors
248 are given, use Usage to show the usage message
249 from the caller if needed.
251 int Parse(bool giveUsage
= @
true);
254 After the command line description was constructed and the desired options were
255 set, you can finally call Parse() method.
256 It returns 0 if the command line was correct and was parsed, -1 if the help
257 option was specified (this is a separate case as, normally, the program will
258 terminate after this) or a positive number if there was an error during the
259 command line parsing.
261 In the latter case, the appropriate error message and usage information are
262 logged by wxCmdLineParser itself using the standard wxWidgets logging functions.
268 Set command line to parse after using one of the constructors which don't do it.
270 void SetCmdLine(int argc
, char** argv
);
271 void SetCmdLine(int argc
, wchar_t** argv
);
272 void SetCmdLine(const wxString
& cmdline
);
276 Construct the command line description
278 Take the command line description from the wxCMD_LINE_NONE terminated table.
282 void SetDesc(const wxCmdLineEntryDesc
* desc
);
285 @e logo is some extra text which will be shown by
288 void SetLogo(const wxString
& logo
);
291 @e switchChars contains all characters with which an option or switch may
292 start. Default is @c "-" for Unix, @c "-/" for Windows.
294 void SetSwitchChars(const wxString
& switchChars
);
297 Give the standard usage message describing all program options. It will use the
298 options and parameters descriptions specified earlier, so the resulting message
299 will not be helpful to the user unless the descriptions were indeed specified.