]> git.saurik.com Git - wxWidgets.git/blame - src/osx/iphone/dialog.mm
Add ClearSelection for msw ie and gtk webkit, with a stub for osx webkit. Document...
[wxWidgets.git] / src / osx / iphone / dialog.mm
CommitLineData
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
a9a4f229 7// RCS-ID: $Id$
0c2dc57d
SC
8// Copyright: (c) Stefan Csomor
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#include "wx/wxprec.h"
13
14#include "wx/dialog.h"
15
16#ifndef WX_PRECOMP
17 #include "wx/app.h"
18 #include "wx/utils.h"
19 #include "wx/frame.h"
20 #include "wx/settings.h"
21#endif // WX_PRECOMP
22
23#include "wx/osx/private.h"
24
25extern wxList wxModalDialogs;
26
44f97e64 27void wxDialog::DoShowWindowModal()
f0d454bd 28{
44f97e64
SC
29 m_modality = wxDIALOG_MODALITY_APP_MODAL;
30 ShowModal();
31 SendWindowModalDialogEvent ( wxEVT_WINDOW_MODAL_DIALOG_CLOSED );
f0d454bd
SC
32}
33
34void wxDialog::EndWindowModal()
35{
36}