Version: 2.9.4
Public Attributes
wxCmdLineEntryDesc Struct Reference

#include </home/zeitlin/src/wx/github/interface/wx/cmdline.h>


Detailed Description

The structure wxCmdLineEntryDesc is used to describe a command line switch, option or parameter.

An array of such structures should be passed to wxCmdLineParser::SetDesc().

Note that the meanings of parameters of the wxCmdLineParser::AddXXX() functions are the same as of the corresponding fields in this structure.

Public Attributes

wxCmdLineEntryType kind
 The kind of this program argument.
const char * shortName
 スイッチやオプションのよくある、短い名前。
const char * longName
 The long name for this program argument (may be empty if the option has no long name).
const char * description
 This description is used by the wxCmdLineParser::Usage() method to construct a help message explaining the syntax of the program.
wxCmdLineParamType type
 The type associated with this option (ignored if kind != wxCMD_LINE_OPTION).
int flags
 A combination of one or more wxCmdLineEntryFlags enum values.

List of all members.


Member Data Documentation

This description is used by the wxCmdLineParser::Usage() method to construct a help message explaining the syntax of the program.

A combination of one or more wxCmdLineEntryFlags enum values.

The kind of this program argument.

See wxCmdLineEntryType for more info.

The long name for this program argument (may be empty if the option has no long name).

It may contain only letters, digits and the underscores. This field is unused if kind == wxCMD_LINE_PARAM.

スイッチやオプションのよくある、短い名前。

It may contain only letters, digits and the underscores. This field is unused if kind == wxCMD_LINE_PARAM.

The type associated with this option (ignored if kind != wxCMD_LINE_OPTION).

See wxCmdLineParamType for more info.

 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines