Lines Matching defs:CommandLineUserInterface

8 #include "CommandLineUserInterface.h"
41 struct CommandLineUserInterface::CommandEntry {
68 struct CommandLineUserInterface::HelpCommand : CliCommand {
69 HelpCommand(CommandLineUserInterface* userInterface)
91 CommandLineUserInterface* fUserInterface;
95 // #pragma mark - CommandLineUserInterface
98 CommandLineUserInterface::CommandLineUserInterface()
109 CommandLineUserInterface::~CommandLineUserInterface()
117 CommandLineUserInterface::ID() const
124 CommandLineUserInterface::Init(Team* team, UserInterfaceListener* listener)
143 CommandLineUserInterface::Show()
151 CommandLineUserInterface::Terminate()
175 CommandLineUserInterface::Clone() const
177 return new(std::nothrow) CommandLineUserInterface;
182 CommandLineUserInterface::IsInteractive() const
189 CommandLineUserInterface::LoadSettings(const TeamUiSettings* settings)
196 CommandLineUserInterface::SaveSettings(TeamUiSettings*& settings) const
203 CommandLineUserInterface::NotifyUser(const char* title, const char* message,
210 CommandLineUserInterface::NotifyBackgroundWorkStatus(const char* message)
216 CommandLineUserInterface::SynchronouslyAskUser(const char* title,
225 CommandLineUserInterface::SynchronouslyAskUserForFile(entry_ref* _ref)
232 CommandLineUserInterface::Run()
251 CommandLineUserInterface::_InputLoop()
305 CommandLineUserInterface::_RegisterCommands()
341 CommandLineUserInterface::_RegisterCommand(const BString& name,
371 CommandLineUserInterface::_ExecuteCommand(int argc, const char* const* argv)
379 CommandLineUserInterface::CommandEntry*
380 CommandLineUserInterface::_FindCommand(const char* commandName)
418 CommandLineUserInterface::_PrintHelp(const char* commandName)
447 CommandLineUserInterface::_CompareCommandEntries(const CommandEntry* command1,