]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/dialog.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDialog class
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "dialog.h"
21 WXDLLEXPORT_DATA(extern const char*) wxDialogNameStr
;
23 WXDLLEXPORT_DATA(extern const wxChar
*) wxDialogNameStr
;
25 class WXDLLEXPORT wxMacToolTip
;
28 class WXDLLEXPORT wxDialog
: public wxDialogBase
30 DECLARE_DYNAMIC_CLASS(wxDialog
)
35 // Constructor with a modal flag, but no window id - the old convention
36 wxDialog(wxWindow
*parent
,
37 const wxString
& title
, bool modal
,
38 int x
= -1, int y
= -1, int width
= 500, int height
= 500,
39 long style
= wxDEFAULT_DIALOG_STYLE
,
40 const wxString
& name
= wxDialogNameStr
)
42 long modalStyle
= modal
? wxDIALOG_MODAL
: wxDIALOG_MODELESS
;
43 Create(parent
, -1, title
, wxPoint(x
, y
), wxSize(width
, height
),
44 style
| modalStyle
, name
);
47 // Constructor with no modal flag - the new convention.
48 wxDialog(wxWindow
*parent
, wxWindowID id
,
49 const wxString
& title
,
50 const wxPoint
& pos
= wxDefaultPosition
,
51 const wxSize
& size
= wxDefaultSize
,
52 long style
= wxDEFAULT_DIALOG_STYLE
,
53 const wxString
& name
= wxDialogNameStr
)
55 Create(parent
, id
, title
, pos
, size
, style
, name
);
58 bool Create(wxWindow
*parent
, wxWindowID id
,
59 const wxString
& title
,
60 const wxPoint
& pos
= wxDefaultPosition
,
61 const wxSize
& size
= wxDefaultSize
,
62 long style
= wxDEFAULT_DIALOG_STYLE
,
63 const wxString
& name
= wxDialogNameStr
);
67 virtual bool Destroy();
69 virtual void DoSetClientSize(int width
, int height
);
71 virtual void GetPosition(int *x
, int *y
) const;
75 void Iconize(bool iconize
);
77 #if WXWIN_COMPATIBILITY
78 bool Iconized() const { return IsIconized(); };
81 virtual bool IsIconized() const;
84 void SetTitle(const wxString
& title
);
85 wxString
GetTitle() const ;
87 void OnSize(wxSizeEvent
& event
);
89 void OnCharHook(wxKeyEvent
& event
);
90 void OnPaint(wxPaintEvent
& event
);
91 void OnCloseWindow(wxCloseEvent
& event
);
93 void SetModal(bool flag
);
95 virtual void Centre(int direction
= wxBOTH
);
96 virtual bool IsModal() const;
98 // For now, same as Show(TRUE) but returns return code
99 virtual int ShowModal();
100 virtual void EndModal(int retCode
);
103 void OnOK(wxCommandEvent
& event
);
104 void OnApply(wxCommandEvent
& event
);
105 void OnCancel(wxCommandEvent
& event
);
107 // Responds to colour changes
108 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
113 bool IsModalShowing() const { return m_modalShowing
; }
114 virtual bool IsTopLevel() const { return TRUE
; }
116 // tooltip management
118 wxMacToolTip
* GetToolTipCtrl() const { return m_hwndToolTip
; }
119 void SetToolTipCtrl(wxMacToolTip
*tt
) { m_hwndToolTip
= tt
; }
120 wxMacToolTip
* m_hwndToolTip
;
125 WXHWND m_hwndOldFocus
; // the window which had focus before we were shown
128 DECLARE_EVENT_TABLE()