#ifndef __GTKDIALOGH__
#define __GTKDIALOGH__
-#ifdef __GNUG__
-#pragma interface
-#endif
-
-#include "wx/defs.h"
-
-//-----------------------------------------------------------------------------
-// classes
-//-----------------------------------------------------------------------------
-
-class wxDialog;
-
-//-----------------------------------------------------------------------------
-// global data
-//-----------------------------------------------------------------------------
-
-extern const wxChar *wxDialogNameStr;
+class WXDLLIMPEXP_FWD_CORE wxGUIEventLoop;
//-----------------------------------------------------------------------------
// wxDialog
//-----------------------------------------------------------------------------
-class wxDialog: public wxDialogBase
+class WXDLLIMPEXP_CORE wxDialog: public wxDialogBase
{
public:
wxDialog() { Init(); }
const wxSize &size = wxDefaultSize,
long style = wxDEFAULT_DIALOG_STYLE,
const wxString &name = wxDialogNameStr );
- ~wxDialog() {}
-
- void OnApply( wxCommandEvent &event );
- void OnCancel( wxCommandEvent &event );
- void OnOK( wxCommandEvent &event );
- void OnPaint( wxPaintEvent& event );
- void OnCloseWindow( wxCloseEvent& event );
- /*
- void OnCharHook( wxKeyEvent& event );
- */
+ virtual ~wxDialog();
virtual bool Show( bool show = TRUE );
virtual int ShowModal();
bool m_modalShowing;
-protected:
+private:
// common part of all ctors
void Init();
-
-private:
- DECLARE_EVENT_TABLE()
+ wxGUIEventLoop *m_modalLoop;
DECLARE_DYNAMIC_CLASS(wxDialog)
};