]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/dialog.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDialog class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "dialog.h"
21 WXDLLEXPORT_DATA(extern const wxChar
*) wxDialogNameStr
;
24 class WXDLLEXPORT wxDialog
: public wxDialogBase
27 wxDialog() { Init(); }
29 // Constructor with a modal flag, but no window id - the old convention
30 wxDialog(wxWindow
*parent
,
31 const wxString
& title
, bool modal
,
32 int x
= -1, int y
= -1, int width
= 500, int height
= 500,
33 long style
= wxDEFAULT_DIALOG_STYLE
,
34 const wxString
& name
= wxDialogNameStr
)
36 long modalStyle
= modal
? wxDIALOG_MODAL
: wxDIALOG_MODELESS
;
37 Create(parent
, -1, title
, wxPoint(x
, y
), wxSize(width
, height
),
38 style
| modalStyle
, name
);
41 // Constructor with no modal flag - the new convention.
42 wxDialog(wxWindow
*parent
, wxWindowID id
,
43 const wxString
& title
,
44 const wxPoint
& pos
= wxDefaultPosition
,
45 const wxSize
& size
= wxDefaultSize
,
46 long style
= wxDEFAULT_DIALOG_STYLE
,
47 const wxString
& name
= wxDialogNameStr
)
49 Create(parent
, id
, title
, pos
, size
, style
, name
);
52 bool Create(wxWindow
*parent
, wxWindowID id
,
53 const wxString
& title
,
54 const wxPoint
& pos
= wxDefaultPosition
,
55 const wxSize
& size
= wxDefaultSize
,
56 long style
= wxDEFAULT_DIALOG_STYLE
,
57 const wxString
& name
= wxDialogNameStr
);
61 // override some base class virtuals
62 virtual bool Destroy();
63 virtual bool Show(bool show
);
64 virtual void Iconize(bool iconize
);
65 virtual bool IsIconized() const;
67 virtual bool IsTopLevel() const { return TRUE
; }
69 void SetModal(bool flag
);
70 virtual bool IsModal() const;
72 // For now, same as Show(TRUE) but returns return code
73 virtual int ShowModal();
75 // may be called to terminate the dialog with the given return code
76 virtual void EndModal(int retCode
);
78 // returns TRUE if we're in a modal loop
79 bool IsModalShowing() const;
81 #if WXWIN_COMPATIBILITY
82 bool Iconized() const { return IsIconized(); };
85 // wxMSW only: remove the "Close" button from the dialog
86 bool EnableCloseButton(bool enable
= TRUE
);
88 // implementation only from now on
89 // -------------------------------
93 void OnCharHook(wxKeyEvent
& event
);
94 void OnCloseWindow(wxCloseEvent
& event
);
97 void OnOK(wxCommandEvent
& event
);
98 void OnApply(wxCommandEvent
& event
);
99 void OnCancel(wxCommandEvent
& event
);
101 // Responds to colour changes
102 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
105 long MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
108 virtual WXHBRUSH
OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
109 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
);
110 #endif // wxUSE_CTL3D
113 // override more base class virtuals
114 virtual void DoSetClientSize(int width
, int height
);
115 virtual void DoGetPosition(int *x
, int *y
) const;
117 // show modal dialog and enter modal loop
120 // common part of all ctors
124 wxWindow
*m_oldFocus
;
126 // while we are showing a modal dialog we disable the other windows using
128 class wxWindowDisabler
*m_windowDisabler
;
130 DECLARE_DYNAMIC_CLASS(wxDialog
)
131 DECLARE_EVENT_TABLE()