]>
Commit | Line | Data |
---|---|---|
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 | /* | |
46 | static 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 | 82 | @interface wxAppDelegate : NSObject <UIApplicationDelegate> { |
581c5049 SC |
83 | } |
84 | ||
80eee837 | 85 | @end |
581c5049 | 86 | |
80eee837 | 87 | @implementation wxAppDelegate |
0056673c | 88 | |
80eee837 SC |
89 | - (void)applicationDidFinishLaunching:(UIApplication *)application { |
90 | wxTheApp->OnInit(); | |
91 | } | |
581c5049 | 92 | |
80eee837 SC |
93 | - (void)applicationWillTerminate:(UIApplication *)application { |
94 | wxCloseEvent event; | |
95 | wxTheApp->OnEndSession(event); | |
96 | } | |
97 | ||
98 | - (void)dealloc { | |
99 | [super dealloc]; | |
581c5049 | 100 | } |
80eee837 SC |
101 | |
102 | @end | |
103 | ||
104 | wxGUIEventLoop::wxGUIEventLoop() | |
105 | { | |
106 | } | |
107 | ||
108 | void wxGUIEventLoop::DoRun() | |
109 | { | |
110 | if ( IsMain() ) | |
111 | { | |
112 | wxMacAutoreleasePool pool; | |
113 | const char* appname = "app"; | |
114 | UIApplicationMain( 1, (char**) &appname, nil, @"wxAppDelegate" ); | |
115 | } | |
116 | else | |
117 | { | |
118 | wxCFEventLoop::DoRun(); | |
119 | } | |
120 | } | |
121 | ||
2439f1d9 SC |
122 | wxModalEventLoop::wxModalEventLoop(wxWindow *winModal) |
123 | { | |
124 | m_modalWindow = dynamic_cast<wxNonOwnedWindow*> (winModal); | |
125 | wxASSERT_MSG( m_modalWindow != NULL, "must pass in a toplevel window for modal event loop" ); | |
126 | } | |
127 | ||
128 | void wxModalEventLoop::DoRun() | |
129 | { | |
130 | // presentModalViewController:animated: | |
131 | } | |
132 | ||
133 | void wxModalEventLoop::DoStop() | |
134 | { | |
135 | // (void)dismissModalViewControllerAnimated:(BOOL)animated | |
136 | } |