]> git.saurik.com Git - wxWidgets.git/blame - src/osx/iphone/evtloop.mm
switching modal loop implementation, fixes #11921
[wxWidgets.git] / src / osx / iphone / evtloop.mm
CommitLineData
581c5049
SC
1///////////////////////////////////////////////////////////////////////////////
2// Name: src/osx/iphone/evtloop.mm
3// Purpose: implementation of wxEventLoop for OS X
4// Author: Vadim Zeitlin, Stefan Csomor
5// Modified by:
6// Created: 2006-01-12
7// RCS-ID: $Id: evtloop.cpp 54845 2008-07-30 14:52:41Z SC $
8// Copyright: (c) 2006 Vadim Zeitlin <vadim@wxwindows.org>
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20// for compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
27#include "wx/evtloop.h"
28
29#ifndef WX_PRECOMP
30 #include "wx/app.h"
31#endif // WX_PRECOMP
32
33#include "wx/log.h"
34
2439f1d9
SC
35#if wxUSE_GUI
36 #include "wx/nonownedwnd.h"
37#endif
38
581c5049
SC
39#include "wx/osx/private.h"
40
41// ============================================================================
42// wxEventLoop implementation
43// ============================================================================
44
45/*
46static int CalculateUIEventMaskFromEventCategory(wxEventCategory cat)
47{
48 NSLeftMouseDownMask |
49 NSLeftMouseUpMask |
50 NSRightMouseDownMask |
51 NSRightMouseUpMask = 1 << NSRightMouseUp,
52 NSMouseMovedMask = 1 << NSMouseMoved,
53 NSLeftMouseDraggedMask = 1 << NSLeftMouseDragged,
54 NSRightMouseDraggedMask = 1 << NSRightMouseDragged,
55 NSMouseEnteredMask = 1 << NSMouseEntered,
56 NSMouseExitedMask = 1 << NSMouseExited,
57 NSScrollWheelMask = 1 << NSScrollWheel,
58#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4
59 NSTabletPointMask = 1 << NSTabletPoint,
60 NSTabletProximityMask = 1 << NSTabletProximity,
61#endif
62 NSOtherMouseDownMask = 1 << NSOtherMouseDown,
63 NSOtherMouseUpMask = 1 << NSOtherMouseUp,
64 NSOtherMouseDraggedMask = 1 << NSOtherMouseDragged,
65
66
67
68 NSKeyDownMask = 1 << NSKeyDown,
69 NSKeyUpMask = 1 << NSKeyUp,
70 NSFlagsChangedMask = 1 << NSFlagsChanged,
71
72 NSAppKitDefinedMask = 1 << NSAppKitDefined,
73 NSSystemDefinedMask = 1 << NSSystemDefined,
74 UIApplicationDefinedMask = 1 << UIApplicationDefined,
75 NSPeriodicMask = 1 << NSPeriodic,
76 NSCursorUpdateMask = 1 << NSCursorUpdate,
77
78 NSAnyEventMask = 0xffffffffU
79}
80*/
81
80eee837
SC
82wxGUIEventLoop::wxGUIEventLoop()
83{
84}
85
86void wxGUIEventLoop::DoRun()
87{
88 if ( IsMain() )
89 {
90 wxMacAutoreleasePool pool;
91 const char* appname = "app";
92 UIApplicationMain( 1, (char**) &appname, nil, @"wxAppDelegate" );
93 }
94 else
95 {
96 wxCFEventLoop::DoRun();
97 }
98}
99
2439f1d9
SC
100wxModalEventLoop::wxModalEventLoop(wxWindow *winModal)
101{
102 m_modalWindow = dynamic_cast<wxNonOwnedWindow*> (winModal);
103 wxASSERT_MSG( m_modalWindow != NULL, "must pass in a toplevel window for modal event loop" );
104}
105
106void wxModalEventLoop::DoRun()
107{
108 // presentModalViewController:animated:
109}
110
111void wxModalEventLoop::DoStop()
112{
113 // (void)dismissModalViewControllerAnimated:(BOOL)animated
114}