1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-03 05:04:24 +01:00

Move ShuttleGetDefinition to its own files...

... so Shuttle need not include CommandTargets.h
This commit is contained in:
Paul Licameli
2019-05-14 13:56:38 -04:00
parent 2faa24c96b
commit 78a1263163
8 changed files with 178 additions and 148 deletions

View File

@@ -0,0 +1,38 @@
/**********************************************************************
Audacity: A Digital Audio Editor
ShuttleGetDefinition.h
Paul Licameli split this out of Shuttle.h
**********************************************************************/
#ifndef __AUDACITY_SHUTTLE_GET_DEFINITION__
#define __AUDACITY_SHUTTLE_GET_DEFINITION__
#include "Shuttle.h" // to inherit
#include "commands/CommandTargets.h" // to inherit
/**************************************************************************//**
\brief Shuttle that retrieves a JSON format definition of a command's parameters.
********************************************************************************/
class ShuttleGetDefinition : public ShuttleParams, public CommandMessageTargetDecorator
{
public:
ShuttleGetDefinition( CommandMessageTarget & target );
wxString Result;
bool IsOptional();
ShuttleParams & Optional( bool & var ) override;
void Define( bool & var, const wxChar * key, const bool vdefault, const bool vmin, const bool vmax, const bool vscl ) override;
void Define( int & var, const wxChar * key, const int vdefault, const int vmin, const int vmax, const int vscl ) override;
void Define( size_t & var, const wxChar * key, const int vdefault, const int vmin, const int vmax, const int vscl ) override;
void Define( float & var, const wxChar * key, const float vdefault, const float vmin, const float vmax, const float vscl ) override;
void Define( double & var, const wxChar * key, const float vdefault, const float vmin, const float vmax, const float vscl ) override;
void Define( double & var, const wxChar * key, const double vdefault, const double vmin, const double vmax, const double vscl ) override;
void Define( wxString &var, const wxChar * key, const wxString vdefault, const wxString vmin, const wxString vmax, const wxString vscl ) override;
void DefineEnum( int &var, const wxChar * key, const int vdefault,
const EnumValueSymbol strings[], size_t nStrings ) override;
};
#endif