1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-16 00:27:42 +02:00
audacity/src/commands/MessageCommand.h
2018-02-24 14:20:27 -05:00

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 XO("Message")
class MessageCommand : public AudacityCommand
{
public:
// CommandDefinitionInterface overrides
wxString 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__ */