/********************************************************************** Audacity: A Digital Audio Editor Audacity(R) is copyright (c) 1999-2010 Audacity Team. License: GPL v2. See License.txt. MultiDialog.h Monty Vaughan Johnson **********************************************************************/ #ifndef __AUDACITY_MULTIDIALOG__ #define __AUDACITY_MULTIDIALOG__ #include #include class wxString; const wxString &DefaultMultiDialogMessage(); // Display a dialog with radio buttons. // Return the zero-based index of the chosen button. int ShowMultiDialog(const wxString &message, const wxString &title, const wxChar **buttons, const wxString &boxMsg = DefaultMultiDialogMessage(), bool log = true); #endif // __AUDACITY_MULTIDIALOG__