1 /**********************************************************************
2 
3   Audacity: A Digital Audio Editor
4 
5   AudacityMessageBox.h
6 
7   Paul Licameli split this out of ErrorDialog.h
8 
9 **********************************************************************/
10 
11 #ifndef __AUDACITY_MESSAGE_BOX__
12 #define __AUDACITY_MESSAGE_BOX__
13 
14 #include <wx/msgdlg.h>
15 #include "Internat.h"
16 
17 extern AUDACITY_DLL_API TranslatableString AudacityMessageBoxCaptionStr();
18 
19 // Do not use wxMessageBox!!  Its default window title does not translate!
20 AUDACITY_DLL_API int AudacityMessageBox(const TranslatableString& message,
21    const TranslatableString& caption = XO("Message"),
22    long style = wxOK | wxCENTRE,
23    wxWindow *parent = NULL,
24    int x = wxDefaultCoord, int y = wxDefaultCoord);
25 
26 #endif
27