#include "wx/panel.h"
-WXDLLEXPORT_DATA(extern const wxChar) wxDialogNameStr[];
+WXDLLIMPEXP_DATA_CORE(extern const char) wxDialogNameStr[];
class WXDLLIMPEXP_FWD_CORE wxMacToolTip ;
// Dialog boxes
-class WXDLLEXPORT wxDialog : public wxDialogBase
+class WXDLLIMPEXP_CORE wxDialog : public wxDialogBase
{
DECLARE_DYNAMIC_CLASS(wxDialog)
// may be called to terminate the dialog with the given return code
virtual void EndModal(int retCode);
- // mac also takes command-period as cancel
- virtual bool IsEscapeKey(const wxKeyEvent& event);
-
// implementation
// --------------
// show modal dialog and enter modal loop
void DoShowModal();
+protected:
+ // mac also takes command-period as cancel
+ virtual bool IsEscapeKey(const wxKeyEvent& event);
+
private:
void Init();