audacia/src/commands/MessageCommand.h

47 lines
1.3 KiB
C++

/**********************************************************************
Audacity - A Digital Audio Editor
Copyright 1999-2009 Audacity Team
File License: wxWidgets
Dan Horgan
******************************************************************//**
\file MessageCommand.h
\brief Contains definition of MessageCommand class.
*//***************************************************************//**
\class MessageCommand
\brief Command to send a message (currently on the status channel)
*//*******************************************************************/
#ifndef __MESSAGE_COMMAND__
#define __MESSAGE_COMMAND__
#include "CommandType.h"
#include "Command.h"
#define MESSAGE_PLUGIN_SYMBOL IdentInterfaceSymbol{ XO("Message") }
class MessageCommand : public AudacityCommand
{
public:
// CommandDefinitionInterface overrides
IdentInterfaceSymbol GetSymbol() override {return MESSAGE_PLUGIN_SYMBOL;};
wxString GetDescription() override {return _("Echos a message.");};
bool DefineParams( ShuttleParams & S ) override;
void PopulateOrExchange(ShuttleGui & S) override;
bool Apply(const CommandContext & context) override;
// AudacityCommand overrides
wxString ManualPage() override {return wxT("Message");};
public:
wxString mMessage;
};
#endif /* End of include guard: __MESSAGECOMMAND__ */