mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-12 15:46:25 +01:00
Locate and position the current Audacity source code, and clear a variety of old junk out of the way into junk-branches
This commit is contained in:
80
src/BatchCommandDialog.h
Normal file
80
src/BatchCommandDialog.h
Normal file
@@ -0,0 +1,80 @@
|
||||
/**********************************************************************
|
||||
|
||||
Audacity: A Digital Audio Editor
|
||||
|
||||
BatchCommandDialog.h
|
||||
|
||||
Dominic Mazzoni
|
||||
James Crook
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
#ifndef __AUDACITY_BATCH_COMMAND_DIALOG__
|
||||
#define __AUDACITY_BATCH_COMMAND_DIALOG__
|
||||
|
||||
#include <wx/defs.h>
|
||||
#include <wx/string.h>
|
||||
|
||||
|
||||
#ifdef __WXMSW__
|
||||
#include <wx/ownerdrw.h>
|
||||
#endif
|
||||
|
||||
//#include "wx/log.h"
|
||||
#include <wx/sizer.h>
|
||||
#include <wx/menuitem.h>
|
||||
#include <wx/checklst.h>
|
||||
|
||||
class wxWindow;
|
||||
class wxCheckBox;
|
||||
class wxChoice;
|
||||
class wxTextCtrl;
|
||||
class wxStaticText;
|
||||
class wxRadioButton;
|
||||
class wxListCtrl;
|
||||
class wxListEvent;
|
||||
class wxButton;
|
||||
class ShuttleGui;
|
||||
|
||||
class BatchCommandDialog:public wxDialog {
|
||||
public:
|
||||
// constructors and destructors
|
||||
BatchCommandDialog(wxWindow *parent, wxWindowID id);
|
||||
void SetCommandAndParams(const wxString &Command, const wxString &Params);
|
||||
public:
|
||||
wxString mSelectedCommand;
|
||||
wxString mSelectedParameters;
|
||||
private:
|
||||
void Populate();
|
||||
void PopulateOrExchange(ShuttleGui &S);
|
||||
void OnEditParams(wxCommandEvent &event);
|
||||
void OnChoice(wxCommandEvent &event);
|
||||
void OnOk(wxCommandEvent &event);
|
||||
void OnCancel(wxCommandEvent &event);
|
||||
void OnItemSelected(wxListEvent &event);
|
||||
|
||||
void ValidateChoices();
|
||||
void PopulateCommandList();
|
||||
int GetSelectedItem();
|
||||
|
||||
wxButton *mEditParams;
|
||||
wxListCtrl *mChoices;
|
||||
wxTextCtrl * mCommand;
|
||||
wxTextCtrl * mParameters;
|
||||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
// 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
|
||||
|
||||
Reference in New Issue
Block a user