1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-07 06:55:52 +01:00
Files
audacity/src/commands/HelpCommand.cpp

59 lines
1.5 KiB
C++

/**********************************************************************
Audacity - A Digital Audio Editor
Copyright 1999-2009 Audacity Team
License: wxwidgets
Dan Horgan
******************************************************************//**
\file HelpCommand.cpp
\brief Definitions for HelpCommand and HelpCommandType classes
*//*******************************************************************/
#include "HelpCommand.h"
#include "CommandDirectory.h"
#include <wx/string.h>
wxString HelpCommandType::BuildName()
{
return wxT("Help");
}
void HelpCommandType::BuildSignature(CommandSignature &signature)
{
Validator *commandNameValidator = new Validator();
signature.AddParameter(wxT("CommandName"), wxT(""), commandNameValidator);
}
Command *HelpCommandType::Create(CommandOutputTarget *target)
{
return new HelpCommand(*this, target);
}
bool HelpCommand::Apply(CommandExecutionContext context)
{
wxString commandName = GetString(wxT("CommandName"));
CommandType *type = CommandDirectory::Get()->LookUp(commandName);
if (type == NULL)
{
Error(wxString::Format(wxT("Command '%s' does not exist!"), commandName.c_str()));
return false;
}
Status(type->Describe());
return true;
}
// Indentation settings for Vim and Emacs and unique identifier for Arch, a
// version control system. Please do not modify past this point.
//
// Local Variables:
// c-basic-offset: 3
// indent-tabs-mode: nil
// End:
//
// vim: et sts=3 sw=3
// arch-tag: TBD