openMSX
|
Public Member Functions | |
DeviceInfo (MSXMotherBoard &motherBoard) | |
void | execute (span< const TclObject > tokens, TclObject &result) const override |
Show info on this topic. More... | |
string | help (const vector< string > &tokens) const override |
Print help for this topic. More... | |
void | tabCompletion (vector< string > &tokens) const override |
Attempt tab completion for this topic. More... | |
![]() | |
Interpreter & | getInterpreter () const final |
![]() | |
const std::string & | getName () const |
void | checkNumArgs (span< const TclObject > tokens, unsigned exactly, const char *errMessage) const |
void | checkNumArgs (span< const TclObject > tokens, AtLeast atLeast, const char *errMessage) const |
void | checkNumArgs (span< const TclObject > tokens, Between between, const char *errMessage) const |
void | checkNumArgs (span< const TclObject > tokens, unsigned exactly, Prefix prefix, const char *errMessage) const |
void | checkNumArgs (span< const TclObject > tokens, AtLeast atLeast, Prefix prefix, const char *errMessage) const |
void | checkNumArgs (span< const TclObject > tokens, Between between, Prefix prefix, const char *errMessage) const |
template<typename ITER > | |
NEVER_INLINE std::vector< std::string_view > | filter (std::string_view str, ITER begin, ITER end, bool caseSensitive) |
Additional Inherited Members | |
![]() | |
template<typename ITER > | |
static void | completeString (std::vector< std::string > &tokens, ITER begin, ITER end, bool caseSensitive=true) |
template<typename RANGE > | |
static void | completeString (std::vector< std::string > &tokens, const RANGE &possibleValues, bool caseSensitive=true) |
template<typename RANGE > | |
static void | completeFileName (std::vector< std::string > &tokens, const FileContext &context, const RANGE &extra) |
static void | completeFileName (std::vector< std::string > &tokens, const FileContext &context) |
static std::vector< std::string > | formatListInColumns (const std::vector< std::string_view > &input) |
static void | setOutput (InterpreterOutput *output_) |
![]() | |
InfoTopic (InfoCommand &infoCommand, const std::string &name) | |
~InfoTopic () | |
![]() | |
Completer (std::string_view name) | |
~Completer ()=default | |
Definition at line 150 of file MSXMotherBoard.cc.
|
explicit |
Definition at line 1016 of file MSXMotherBoard.cc.
|
overridevirtual |
Show info on this topic.
tokens | Tokenized command line; tokens[1] is the topic. |
result | The result of this topic must be assigned to this parameter. |
CommandException | Thrown when there was an error while executing this InfoTopic. |
Implements openmsx::InfoTopic.
Definition at line 1022 of file MSXMotherBoard.cc.
References openmsx::TclObject::addListElements(), openmsx::Completer::checkNumArgs(), openmsx::MSXMotherBoard::findDevice(), openmsx::MSXDevice::getDeviceInfo(), span< ElementType, Extent >::size(), and view::transform().
|
overridevirtual |
Print help for this topic.
tokens | Tokenized command line; tokens[1] is the topic. |
Implements openmsx::InfoTopic.
Definition at line 1043 of file MSXMotherBoard.cc.
|
overridevirtual |
Attempt tab completion for this topic.
Default implementation does nothing.
tokens | Tokenized command line; tokens[1] is the topic. The last token is incomplete, this method tries to complete it. |
Reimplemented from openmsx::InfoTopic.
Definition at line 1050 of file MSXMotherBoard.cc.
References openmsx::Completer::completeString(), to_vector(), and view::transform().