mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-20 23:51:18 +01:00
Friendlier command names in the Edit Chains dialogs...
... Both the pane that lists the steps of the chain, and the selection dialog for adding a new step. NOT translating command names yet, though.
This commit is contained in:
@@ -56,13 +56,20 @@ class BatchCommandDialog final : public wxDialogWrapper {
|
||||
|
||||
void ValidateChoices();
|
||||
void PopulateCommandList();
|
||||
int GetSelectedItem();
|
||||
//int GetSelectedItem();
|
||||
|
||||
wxButton *mEditParams;
|
||||
wxButton *mUsePreset;
|
||||
wxListCtrl *mChoices;
|
||||
wxTextCtrl * mCommand;
|
||||
wxTextCtrl * mParameters;
|
||||
|
||||
wxString mInternalCommandName;
|
||||
|
||||
using CommandName = std::pair<wxString, wxString>;
|
||||
using CommandNameVector = std::vector<CommandName>;
|
||||
CommandNameVector mCommandNames;
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user