1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/dialog.h
3 // Purpose: wxDialog class
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
17 //WXDLLIMPEXP_DATA_CORE(extern const wxChar) wxDialogNameStr[];
19 class WXDLLIMPEXP_FWD_CORE wxDialogModalData
;
22 class WXDLLIMPEXP_CORE wxDialog
: public wxDialogBase
25 wxDialog() { Init(); }
28 wxDialog(wxWindow
*parent
, wxWindowID id
,
29 const wxString
& title
,
30 const wxPoint
& pos
= wxDefaultPosition
,
31 const wxSize
& size
= wxDefaultSize
,
32 long style
= wxDEFAULT_DIALOG_STYLE
,
33 const wxString
& name
= wxDialogNameStr
)
37 (void)Create(parent
, id
, title
, pos
, size
, style
, name
);
40 bool Create(wxWindow
*parent
, wxWindowID id
,
41 const wxString
& title
,
42 const wxPoint
& pos
= wxDefaultPosition
,
43 const wxSize
& size
= wxDefaultSize
,
44 long style
= wxDEFAULT_DIALOG_STYLE
,
45 const wxString
& name
= wxDialogNameStr
);
49 // return true if we're showing the dialog modally
50 virtual bool IsModal() const { return m_modalData
!= NULL
; }
52 // show the dialog modally and return the value passed to EndModal()
53 virtual int ShowModal();
55 // may be called to terminate the dialog with the given return code
56 virtual void EndModal(int retCode
);
58 // implementation only from now on
59 // -------------------------------
61 // override some base class virtuals
62 virtual bool Show(bool show
= true);
67 // common part of all ctors
72 bool m_endModalCalled
; // allow for closing within InitDialog
74 // this pointer is non-NULL only while the modal event loop is running
75 wxDialogModalData
*m_modalData
;
78 DECLARE_DYNAMIC_CLASS(wxDialog
)
79 wxDECLARE_NO_COPY_CLASS(wxDialog
);