Searched refs:wxCmdLineParser (Results 1 - 25 of 25) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dcmdline.h3 // Purpose: wxCmdLineParser and related classes for parsing the command
75 // wxCmdLineParser is a class for parsing command line.
92 class WXDLLIMPEXP_BASE wxCmdLineParser class
99 wxCmdLineParser() { Init(); } function in class:wxCmdLineParser
100 wxCmdLineParser(int argc, char **argv) { Init(); SetCmdLine(argc, argv); } function in class:wxCmdLineParser
102 wxCmdLineParser(int argc, wxChar **argv) { Init(); SetCmdLine(argc, argv); } function in class:wxCmdLineParser
104 wxCmdLineParser(const wxString& cmdline) { Init(); SetCmdLine(cmdline); } function in class:wxCmdLineParser
108 wxCmdLineParser(const wxCmdLineEntryDesc *desc) function in class:wxCmdLineParser
110 wxCmdLineParser(const wxCmdLineEntryDesc *desc, int argc, char **argv) function in class:wxCmdLineParser
113 wxCmdLineParser(cons function in class:wxCmdLineParser
116 wxCmdLineParser(const wxCmdLineEntryDesc *desc, const wxString& cmdline) function in class:wxCmdLineParser
230 class WXDLLIMPEXP_BASE wxCmdLineParser class
[all...]
H A Dapp.h27 class WXDLLIMPEXP_FWD_BASE wxCmdLineParser; variable in typeref:class:WXDLLIMPEXP_FWD_BASE
149 virtual void OnInitCmdLine(wxCmdLineParser& parser);
154 virtual bool OnCmdLineParsed(wxCmdLineParser& parser);
158 virtual bool OnCmdLineHelp(wxCmdLineParser& parser);
162 virtual bool OnCmdLineError(wxCmdLineParser& parser);
486 virtual bool OnCmdLineParsed(wxCmdLineParser& parser);
487 virtual void OnInitCmdLine(wxCmdLineParser& parser);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DTextClient.h67 void OnInitCmdLine(wxCmdLineParser& amuleweb_parser);
68 bool OnCmdLineParsed(wxCmdLineParser& parser);
H A DExternalConnector.h146 void OnInitCmdLine(wxCmdLineParser& amuleweb_parser, const char* appname);
147 bool OnCmdLineParsed(wxCmdLineParser& parser);
H A DExternalConnector.cpp424 void CaMuleExternalConnector::OnInitCmdLine(wxCmdLineParser& parser, const char* appname)
463 bool CaMuleExternalConnector::OnCmdLineParsed(wxCmdLineParser& parser)
H A DamuleAppCommon.cpp32 #include <wx/cmdline.h> // Needed for wxCmdLineParser
225 wxCmdLineParser cmdline(argc, argv);
H A DTextClient.cpp130 void CamulecmdApp::OnInitCmdLine(wxCmdLineParser& parser)
138 bool CamulecmdApp::OnCmdLineParsed(wxCmdLineParser& parser)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/utils/aLinkCreator/src/
H A Dalcc.h63 virtual void OnInitCmdLine(wxCmdLineParser& cmdline);
66 virtual bool OnCmdLineParsed(wxCmdLineParser& cmdline);
H A Dalcc.cpp111 void alcc::OnInitCmdLine(wxCmdLineParser& cmdline)
120 bool alcc::OnCmdLineParsed(wxCmdLineParser& cmdline)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/webserver/src/
H A DWebInterface.h66 void OnInitCmdLine(wxCmdLineParser& amuleweb_parser);
67 bool OnCmdLineParsed(wxCmdLineParser& parser);
H A DWebInterface.cpp519 void CamulewebApp::OnInitCmdLine(wxCmdLineParser& amuleweb_parser)
588 bool CamulewebApp::OnCmdLineParsed(wxCmdLineParser& parser)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dcmdlpars.tex3 %% Purpose: wxCmdLineParser documentation
12 \section{\class{wxCmdLineParser}}\label{wxcmdlineparser}
14 wxCmdLineParser is a class for parsing the command line.
166 accepting it (\helpref{wxCmdLineParser(argc, argv)}{wxcmdlineparserwxcmdlineparserargc} or
167 \helpref{wxCmdLineParser}{wxcmdlineparserwxcmdlineparserdescargc} usually) or,
188 wxCmdLineParser has several global options which may be changed by the
221 logged by wxCmdLineParser itself using the standard wxWidgets logging functions.
245 \membersection{wxCmdLineParser::wxCmdLineParser}\label{wxcmdlineparserwxcmdlineparserdef}
247 \func{}{wxCmdLineParser}{\voi
[all...]
H A Dapp.tex325 \func{bool}{OnCmdLineError}{\param{wxCmdLineParser\& }{parser}}
341 \func{bool}{OnCmdLineHelp}{\param{wxCmdLineParser\& }{parser}}
356 \func{bool}{OnCmdLineParsed}{\param{wxCmdLineParser\& }{parser}}
494 \func{void}{OnInitCmdLine}{\param{wxCmdLineParser\& }{parser}}
H A Dcategory.tex330 \twocolitem{\helpref{wxCmdLineParser}{wxcmdlineparser}}{Command line parser class}
707 \twocolitem{\helpref{wxCmdLineParser}{wxcmdlineparser}}{Command line parser class}
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dcmdline.cpp3 // Purpose: wxCmdLineParser implementation
249 wxArrayString args = wxCmdLineParser::ConvertStringToArgs(cmdLine);
291 void wxCmdLineParser::Init()
296 void wxCmdLineParser::SetCmdLine(int argc, char **argv)
303 void wxCmdLineParser::SetCmdLine(int argc, wxChar **argv)
310 void wxCmdLineParser::SetCmdLine(const wxString& cmdline)
315 wxCmdLineParser::~wxCmdLineParser()
324 void wxCmdLineParser::SetSwitchChars(const wxString& switchChars)
329 void wxCmdLineParser
[all...]
H A Dappbase.cpp177 wxCmdLineParser parser(argc, argv);
335 void wxAppConsole::OnInitCmdLine(wxCmdLineParser& parser)
374 bool wxAppConsole::OnCmdLineParsed(wxCmdLineParser& parser)
388 bool wxAppConsole::OnCmdLineHelp(wxCmdLineParser& parser)
395 bool wxAppConsole::OnCmdLineError(wxCmdLineParser& parser)
H A Dappcmn.cpp217 void wxAppBase::OnInitCmdLine(wxCmdLineParser& parser)
264 bool wxAppBase::OnCmdLineParsed(wxCmdLineParser& parser)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/
H A Dtest.cpp45 void OnInitCmdLine(wxCmdLineParser& parser);
46 bool OnCmdLineParsed(wxCmdLineParser& parser);
78 void TestApp::OnInitCmdLine(wxCmdLineParser& parser)
105 bool TestApp::OnCmdLineParsed(wxCmdLineParser& parser)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/utils/fileview/
H A DFileView.cpp43 virtual void OnInitCmdLine(wxCmdLineParser& parser);
44 virtual bool OnCmdLineParsed(wxCmdLineParser& parser);
70 void CFileView::OnInitCmdLine(wxCmdLineParser& parser)
78 bool CFileView::OnCmdLineParsed(wxCmdLineParser& parser)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dmain.cpp364 args = wxCmdLineParser::ConvertStringToArgs(cmdLine);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msdos/
H A Dutilsdos.cpp306 // FIXME: shouldn't depend on wxCmdLineParser
307 wxArrayString args(wxCmdLineParser::ConvertStringToArgs(command));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/utils/wxrc/
H A Dwxrc.cpp216 void ParseParams(const wxCmdLineParser& cmdline);
266 wxCmdLineParser parser(cmdLineDesc, argc, argv);
288 void XmlResApp::ParseParams(const wxCmdLineParser& cmdline)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/utils/emulator/src/
H A Demulator.cpp128 wxCmdLineParser parser(sg_cmdLineDesc, argc, argv);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/mediaplayer/
H A Dmediaplayer.cpp64 #include "wx/cmdline.h" //for wxCmdLineParser (optional)
435 wxCmdLineParser parser (cmdLineDesc, argc, argv);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/console/
H A Dconsole.cpp127 // wxCmdLineParser
137 static void ShowCmdLine(const wxCmdLineParser& parser)
183 wxArrayString args = wxCmdLineParser::ConvertStringToArgs(cmdline);
4245 wxCmdLineParser parser(cmdLineDesc, argc, wxArgv);

Completed in 290 milliseconds