]>
Commit | Line | Data |
---|---|---|
0c2dc57d | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: src/osx/iphone/dialog.mm |
0c2dc57d SC |
3 | // Purpose: wxDialog class |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
0c2dc57d SC |
7 | // Copyright: (c) Stefan Csomor |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #include "wx/wxprec.h" | |
12 | ||
13 | #include "wx/dialog.h" | |
14 | ||
15 | #ifndef WX_PRECOMP | |
16 | #include "wx/app.h" | |
17 | #include "wx/utils.h" | |
18 | #include "wx/frame.h" | |
19 | #include "wx/settings.h" | |
20 | #endif // WX_PRECOMP | |
21 | ||
22 | #include "wx/osx/private.h" | |
23 | ||
24 | extern wxList wxModalDialogs; | |
25 | ||
44f97e64 | 26 | void wxDialog::DoShowWindowModal() |
f0d454bd | 27 | { |
44f97e64 SC |
28 | m_modality = wxDIALOG_MODALITY_APP_MODAL; |
29 | ShowModal(); | |
30 | SendWindowModalDialogEvent ( wxEVT_WINDOW_MODAL_DIALOG_CLOSED ); | |
f0d454bd SC |
31 | } |
32 | ||
33 | void wxDialog::EndWindowModal() | |
34 | { | |
35 | } |