]> git.sesse.net Git - vlc/blob - modules/gui/skins2/macosx/macosx_loop.cpp
Playtree: handle delete nicely
[vlc] / modules / gui / skins2 / macosx / macosx_loop.cpp
1 /*****************************************************************************
2  * macosx_loop.cpp
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifdef MACOSX_SKINS
25
26 #include <Carbon/Carbon.h>
27 #include "macosx_loop.hpp"
28
29
30 MacOSXLoop::MacOSXLoop( intf_thread_t *pIntf ):
31     OSLoop( pIntf ), m_exit( false )
32 {
33 }
34
35
36 MacOSXLoop::~MacOSXLoop()
37 {
38 }
39
40
41 OSLoop *MacOSXLoop::instance( intf_thread_t *pIntf )
42 {
43     if( pIntf->p_sys->p_osLoop == NULL )
44     {
45         OSLoop *pOsLoop = new MacOSXLoop( pIntf );
46         pIntf->p_sys->p_osLoop = pOsLoop;
47     }
48     return pIntf->p_sys->p_osLoop;
49 }
50
51
52 void MacOSXLoop::destroy( intf_thread_t *pIntf )
53 {
54     if( pIntf->p_sys->p_osLoop )
55     {
56         delete pIntf->p_sys->p_osLoop;
57         pIntf->p_sys->p_osLoop = NULL;
58     }
59 }
60
61
62 void MacOSXLoop::run()
63 {
64     // Main event loop
65     while( !m_exit )
66     {
67         EventRef pEvent;
68         OSStatus err = ReceiveNextEvent( 0, NULL, kEventDurationForever, true,
69                                          &pEvent );
70         if( err != noErr )
71         {
72             // Get the event type
73             UInt32 evClass = GetEventClass( pEvent );
74
75             switch( evClass )
76             {
77                 case kEventClassMouse:
78                 {
79                     break;
80                 }
81
82                 case kEventClassKeyboard:
83                 {
84                     break;
85                 }
86
87                 case kEventClassWindow:
88                 {
89                     handleWindowEvent( pEvent );
90                     break;
91                 }
92
93                 default:
94                 {
95                     EventTargetRef pTarget;
96                     pTarget = GetEventDispatcherTarget();
97                     SendEventToEventTarget( pEvent, pTarget );
98                     ReleaseEvent( pEvent );
99                 }
100             }
101         }
102     }
103 }
104
105
106 void MacOSXLoop::exit()
107 {
108     m_exit = true;
109 }
110
111
112 void MacOSXLoop::handleWindowEvent( EventRef pEvent )
113 {
114     UInt32 evKind = GetEventKind( pEvent );
115
116 }
117
118
119 #endif