1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "app.h"
19 #include "wx/gdicmn.h"
21 #include "wx/dialog.h"
23 #include "wx/module.h"
24 #include "wx/memory.h"
27 #include "wx/evtloop.h"
29 #include "wx/filename.h"
32 #include "wx/univ/theme.h"
33 #include "wx/univ/renderer.h"
36 #include "wx/thread.h"
39 #include "wx/x11/private.h"
43 //------------------------------------------------------------------------
45 //------------------------------------------------------------------------
47 extern wxList wxPendingDelete
;
49 wxWindowHash
*wxWidgetHashTable
= NULL
;
50 wxWindowHash
*wxClientWidgetHashTable
= NULL
;
52 static bool g_showIconic
= FALSE
;
53 static wxSize g_initialSize
= wxDefaultSize
;
55 // This is required for wxFocusEvent::SetWindow(). It will only
56 // work for focus events which we provoke ourselves (by calling
57 // SetFocus()). It will not work for those events, which X11
59 static wxWindow
*g_nextFocus
= NULL
;
60 static wxWindow
*g_prevFocus
= NULL
;
62 //------------------------------------------------------------------------
64 //------------------------------------------------------------------------
67 typedef int (*XErrorHandlerFunc
)(Display
*, XErrorEvent
*);
69 XErrorHandlerFunc gs_pfnXErrorHandler
= 0;
71 static int wxXErrorHandler(Display
*dpy
, XErrorEvent
*xevent
)
73 // just forward to the default handler for now
74 if (gs_pfnXErrorHandler
)
75 return gs_pfnXErrorHandler(dpy
, xevent
);
81 //------------------------------------------------------------------------
83 //------------------------------------------------------------------------
85 long wxApp::sm_lastMessageTime
= 0;
86 WXDisplay
*wxApp::ms_display
= NULL
;
88 IMPLEMENT_DYNAMIC_CLASS(wxApp
, wxEvtHandler
)
90 BEGIN_EVENT_TABLE(wxApp
, wxEvtHandler
)
91 EVT_IDLE(wxAppBase::OnIdle
)
94 bool wxApp::Initialize(int& argc
, wxChar
**argv
)
96 #if defined(__WXDEBUG__) && !wxUSE_NANOX
97 // install the X error handler
98 gs_pfnXErrorHandler
= XSetErrorHandler( wxXErrorHandler
);
101 wxString displayName
;
102 bool syncDisplay
= FALSE
;
105 for ( int i
= 0; i
< argcOrig
; i
++ )
107 if (wxStrcmp( argv
[i
], _T("-display") ) == 0)
113 displayName
= argv
[i
];
119 else if (wxStrcmp( argv
[i
], _T("-geometry") ) == 0)
126 if (wxSscanf(argv
[i
], _T("%dx%d"), &w
, &h
) != 2)
128 wxLogError( _("Invalid geometry specification '%s'"),
129 wxString(argv
[i
]).c_str() );
133 g_initialSize
= wxSize(w
, h
);
140 else if (wxStrcmp( argv
[i
], _T("-sync") ) == 0)
147 else if (wxStrcmp( argv
[i
], _T("-iconic") ) == 0)
156 if ( argc
!= argcOrig
)
158 // remove the argumens we consumed
159 for ( int i
= 0; i
< argc
; i
++ )
163 memmove(argv
+ i
, argv
+ i
+ 1, argcOrig
- i
);
170 if ( displayName
.empty() )
171 xdisplay
= XOpenDisplay( NULL
);
173 xdisplay
= XOpenDisplay( displayName
.ToAscii() );
176 wxLogError( _("wxWidgets could not open display. Exiting.") );
181 XSynchronize(xdisplay
, True
);
183 ms_display
= (WXDisplay
*) xdisplay
;
185 XSelectInput( xdisplay
, XDefaultRootWindow(xdisplay
), PropertyChangeMask
);
188 wxSetDetectableAutoRepeat( TRUE
);
190 if ( !wxAppBase::Initialize(argc
, argv
) )
192 XCloseDisplay(xdisplay
);
198 // Glib's type system required by Pango
203 wxFont::SetDefaultEncoding(wxLocale::GetSystemEncoding());
206 wxWidgetHashTable
= new wxWindowHash
;
207 wxClientWidgetHashTable
= new wxWindowHash
;
212 void wxApp::CleanUp()
214 delete wxWidgetHashTable
;
215 wxWidgetHashTable
= NULL
;
216 delete wxClientWidgetHashTable
;
217 wxClientWidgetHashTable
= NULL
;
219 wxAppBase::CleanUp();
224 // TODO: parse the command line
228 m_mainColormap
= (WXColormap
) NULL
;
229 m_topLevelWidget
= (WXWindow
) NULL
;
230 m_maxRequestSize
= 0;
231 m_showIconic
= FALSE
;
232 m_initialSize
= wxDefaultSize
;
247 //-----------------------------------------------------------------------
248 // X11 predicate function for exposure compression
249 //-----------------------------------------------------------------------
254 Bool found_non_matching
;
257 static Bool
expose_predicate (Display
*display
, XEvent
*xevent
, XPointer arg
)
259 wxExposeInfo
*info
= (wxExposeInfo
*) arg
;
261 if (info
->found_non_matching
)
264 if (xevent
->xany
.type
!= Expose
)
266 info
->found_non_matching
= TRUE
;
270 if (xevent
->xexpose
.window
!= info
->window
)
272 info
->found_non_matching
= TRUE
;
281 //-----------------------------------------------------------------------
282 // Processes an X event, returning TRUE if the event was processed.
283 //-----------------------------------------------------------------------
285 bool wxApp::ProcessXEvent(WXEvent
* _event
)
287 XEvent
* event
= (XEvent
*) _event
;
289 wxWindow
* win
= NULL
;
290 Window window
= XEventGetWindow(event
);
292 Window actualWindow
= window
;
295 // Find the first wxWindow that corresponds to this event window
296 // Because we're receiving events after a window
297 // has been destroyed, assume a 1:1 match between
298 // Window and wxWindow, so if it's not in the table,
299 // it must have been destroyed.
301 win
= wxGetWindowFromTable(window
);
304 #if wxUSE_TWO_WINDOWS
305 win
= wxGetClientWindowFromTable(window
);
312 wxString windowClass
= win
->GetClassInfo()->GetClassName();
319 #if wxUSE_TWO_WINDOWS && !wxUSE_NANOX
320 if (event
->xexpose
.window
!= (Window
)win
->GetClientAreaWindow())
324 info
.window
= event
->xexpose
.window
;
325 info
.found_non_matching
= FALSE
;
326 while (XCheckIfEvent( wxGlobalDisplay(), &tmp_event
, expose_predicate
, (XPointer
) &info
))
328 // Don't worry about optimizing redrawing the border etc.
330 win
->NeedUpdateNcAreaInIdle();
335 win
->GetUpdateRegion().Union( XExposeEventGetX(event
), XExposeEventGetY(event
),
336 XExposeEventGetWidth(event
), XExposeEventGetHeight(event
));
337 win
->GetClearRegion().Union( XExposeEventGetX(event
), XExposeEventGetY(event
),
338 XExposeEventGetWidth(event
), XExposeEventGetHeight(event
));
343 info
.window
= event
->xexpose
.window
;
344 info
.found_non_matching
= FALSE
;
345 while (XCheckIfEvent( wxGlobalDisplay(), &tmp_event
, expose_predicate
, (XPointer
) &info
))
347 win
->GetUpdateRegion().Union( tmp_event
.xexpose
.x
, tmp_event
.xexpose
.y
,
348 tmp_event
.xexpose
.width
, tmp_event
.xexpose
.height
);
350 win
->GetClearRegion().Union( tmp_event
.xexpose
.x
, tmp_event
.xexpose
.y
,
351 tmp_event
.xexpose
.width
, tmp_event
.xexpose
.height
);
355 // This simplifies the expose and clear areas to simple
357 win
->GetUpdateRegion() = win
->GetUpdateRegion().GetBox();
358 win
->GetClearRegion() = win
->GetClearRegion().GetBox();
360 // If we only have one X11 window, always indicate
361 // that borders might have to be redrawn.
362 if (win
->GetMainWindow() == win
->GetClientAreaWindow())
363 win
->NeedUpdateNcAreaInIdle();
365 // Only erase background, paint in idle time.
366 win
->SendEraseEvents();
378 wxLogTrace( _T("expose"), _T("GraphicsExpose from %s"), win
->GetName().c_str());
380 win
->GetUpdateRegion().Union( event
->xgraphicsexpose
.x
, event
->xgraphicsexpose
.y
,
381 event
->xgraphicsexpose
.width
, event
->xgraphicsexpose
.height
);
383 win
->GetClearRegion().Union( event
->xgraphicsexpose
.x
, event
->xgraphicsexpose
.y
,
384 event
->xgraphicsexpose
.width
, event
->xgraphicsexpose
.height
);
386 if (event
->xgraphicsexpose
.count
== 0)
388 // Only erase background, paint in idle time.
389 win
->SendEraseEvents();
399 if (!win
->IsEnabled())
402 wxKeyEvent
keyEvent(wxEVT_KEY_DOWN
);
403 wxTranslateKeyEvent(keyEvent
, win
, window
, event
);
405 // wxLogDebug( "OnKey from %s", win->GetName().c_str() );
407 // We didn't process wxEVT_KEY_DOWN, so send wxEVT_CHAR
408 if (win
->GetEventHandler()->ProcessEvent( keyEvent
))
411 keyEvent
.SetEventType(wxEVT_CHAR
);
412 // Do the translation again, retaining the ASCII
414 wxTranslateKeyEvent(keyEvent
, win
, window
, event
, TRUE
);
415 if (win
->GetEventHandler()->ProcessEvent( keyEvent
))
418 if ( (keyEvent
.m_keyCode
== WXK_TAB
) &&
419 win
->GetParent() && (win
->GetParent()->HasFlag( wxTAB_TRAVERSAL
)) )
421 wxNavigationKeyEvent new_event
;
422 new_event
.SetEventObject( win
->GetParent() );
423 /* GDK reports GDK_ISO_Left_Tab for SHIFT-TAB */
424 new_event
.SetDirection( (keyEvent
.m_keyCode
== WXK_TAB
) );
425 /* CTRL-TAB changes the (parent) window, i.e. switch notebook page */
426 new_event
.SetWindowChange( keyEvent
.ControlDown() );
427 new_event
.SetCurrentFocus( win
);
428 return win
->GetParent()->GetEventHandler()->ProcessEvent( new_event
);
435 if (!win
->IsEnabled())
438 wxKeyEvent
keyEvent(wxEVT_KEY_UP
);
439 wxTranslateKeyEvent(keyEvent
, win
, window
, event
);
441 return win
->GetEventHandler()->ProcessEvent( keyEvent
);
443 case ConfigureNotify
:
446 if (event
->update
.utype
== GR_UPDATE_SIZE
)
449 wxTopLevelWindow
*tlw
= wxDynamicCast(win
, wxTopLevelWindow
);
452 tlw
->SetConfigureGeometry( XConfigureEventGetX(event
), XConfigureEventGetY(event
),
453 XConfigureEventGetWidth(event
), XConfigureEventGetHeight(event
) );
456 if ( tlw
&& tlw
->IsShown() )
458 tlw
->SetNeedResizeInIdle();
462 wxSizeEvent
sizeEvent( wxSize(XConfigureEventGetWidth(event
), XConfigureEventGetHeight(event
)), win
->GetId() );
463 sizeEvent
.SetEventObject( win
);
465 return win
->GetEventHandler()->ProcessEvent( sizeEvent
);
473 //wxLogDebug("PropertyNotify: %s", windowClass.c_str());
474 return HandlePropertyChange(_event
);
478 if (!win
->IsEnabled())
481 Atom wm_delete_window
= XInternAtom(wxGlobalDisplay(), "WM_DELETE_WINDOW", True
);
482 Atom wm_protocols
= XInternAtom(wxGlobalDisplay(), "WM_PROTOCOLS", True
);
484 if (event
->xclient
.message_type
== wm_protocols
)
486 if ((Atom
) (event
->xclient
.data
.l
[0]) == wm_delete_window
)
497 printf( "destroy from %s\n", win
->GetName().c_str() );
502 printf( "create from %s\n", win
->GetName().c_str() );
507 printf( "map request from %s\n", win
->GetName().c_str() );
512 printf( "resize request from %s\n", win
->GetName().c_str() );
514 Display
*disp
= (Display
*) wxGetDisplay();
519 while( XCheckTypedWindowEvent (disp
, actualWindow
, ResizeRequest
, &report
));
521 wxSize sz
= win
->GetSize();
522 wxSizeEvent
sizeEvent(sz
, win
->GetId());
523 sizeEvent
.SetEventObject(win
);
525 return win
->GetEventHandler()->ProcessEvent( sizeEvent
);
530 case GR_EVENT_TYPE_CLOSE_REQ
:
547 if (!win
->IsEnabled())
550 // Here we check if the top level window is
551 // disabled, which is one aspect of modality.
553 while (tlw
&& !tlw
->IsTopLevel())
554 tlw
= tlw
->GetParent();
555 if (tlw
&& !tlw
->IsEnabled())
558 if (event
->type
== ButtonPress
)
560 if ((win
!= wxWindow::FindFocus()) && win
->AcceptsFocus())
562 // This might actually be done in wxWindow::SetFocus()
563 // and not here. TODO.
564 g_prevFocus
= wxWindow::FindFocus();
567 wxLogTrace( _T("focus"), _T("About to call SetFocus on %s of type %s due to button press"), win
->GetName().c_str(), win
->GetClassInfo()->GetClassName() );
569 // Record the fact that this window is
570 // getting the focus, because we'll need to
571 // check if its parent is getting a bogus
572 // focus and duly ignore it.
573 // TODO: may need to have this code in SetFocus, too.
574 extern wxWindow
* g_GettingFocus
;
575 g_GettingFocus
= win
;
581 if (event
->type
== LeaveNotify
|| event
->type
== EnterNotify
)
583 // Throw out NotifyGrab and NotifyUngrab
584 if (event
->xcrossing
.mode
!= NotifyNormal
)
588 wxMouseEvent wxevent
;
589 wxTranslateMouseEvent(wxevent
, win
, window
, event
);
590 return win
->GetEventHandler()->ProcessEvent( wxevent
);
594 if ((event
->xfocus
.detail
!= NotifyPointer
) &&
595 (event
->xfocus
.mode
== NotifyNormal
))
598 wxLogTrace( _T("focus"), _T("FocusIn from %s of type %s"), win
->GetName().c_str(), win
->GetClassInfo()->GetClassName() );
600 extern wxWindow
* g_GettingFocus
;
601 if (g_GettingFocus
&& g_GettingFocus
->GetParent() == win
)
603 // Ignore this, this can be a spurious FocusIn
604 // caused by a child having its focus set.
605 g_GettingFocus
= NULL
;
606 wxLogTrace( _T("focus"), _T("FocusIn from %s of type %s being deliberately ignored"), win
->GetName().c_str(), win
->GetClassInfo()->GetClassName() );
611 wxFocusEvent
focusEvent(wxEVT_SET_FOCUS
, win
->GetId());
612 focusEvent
.SetEventObject(win
);
613 focusEvent
.SetWindow( g_prevFocus
);
616 return win
->GetEventHandler()->ProcessEvent(focusEvent
);
623 if ((event
->xfocus
.detail
!= NotifyPointer
) &&
624 (event
->xfocus
.mode
== NotifyNormal
))
627 wxLogTrace( _T("focus"), _T("FocusOut from %s of type %s"), win
->GetName().c_str(), win
->GetClassInfo()->GetClassName() );
629 wxFocusEvent
focusEvent(wxEVT_KILL_FOCUS
, win
->GetId());
630 focusEvent
.SetEventObject(win
);
631 focusEvent
.SetWindow( g_nextFocus
);
633 return win
->GetEventHandler()->ProcessEvent(focusEvent
);
639 //wxString eventName = wxGetXEventName(XEvent& event);
640 //wxLogDebug(wxT("Event %s not handled"), eventName.c_str());
642 #endif // __WXDEBUG__
648 // This should be redefined in a derived class for
649 // handling property change events for XAtom IPC.
650 bool wxApp::HandlePropertyChange(WXEvent
*event
)
652 // by default do nothing special
653 // TODO: what to do for X11
654 // XtDispatchEvent((XEvent*) event);
658 void wxApp::WakeUpIdle()
660 // TODO: use wxMotif implementation?
662 // Wake up the idle handler processor, even if it is in another thread...
666 // Create display, and other initialization
667 bool wxApp::OnInitGui()
669 // Eventually this line will be removed, but for
670 // now we don't want to try popping up a dialog
671 // for error messages.
672 delete wxLog::SetActiveTarget(new wxLogStderr
);
674 if (!wxAppBase::OnInitGui())
677 GetMainColormap( wxApp::GetDisplay() );
679 m_maxRequestSize
= XMaxRequestSize( (Display
*) wxApp::GetDisplay() );
682 m_visualInfo
= new wxXVisualInfo
;
683 wxFillXVisualInfo( m_visualInfo
, (Display
*) wxApp::GetDisplay() );
691 #include <pango/pango.h>
692 #include <pango/pangox.h>
693 #ifdef HAVE_PANGO_XFT
694 #include <pango/pangoxft.h>
697 PangoContext
* wxApp::GetPangoContext()
699 static PangoContext
*ret
= NULL
;
703 Display
*xdisplay
= (Display
*) wxApp::GetDisplay();
705 #ifdef HAVE_PANGO_XFT
706 int xscreen
= DefaultScreen(xdisplay
);
707 static int use_xft
= -1;
710 wxString val
= wxGetenv( L
"GDK_USE_XFT" );
711 use_xft
= (val
== L
"1");
715 ret
= pango_xft_get_context( xdisplay
, xscreen
);
718 ret
= pango_x_get_context( xdisplay
);
720 if (!PANGO_IS_CONTEXT(ret
))
721 wxLogError( wxT("No pango context.") );
727 WXColormap
wxApp::GetMainColormap(WXDisplay
* display
)
729 if (!display
) /* Must be called first with non-NULL display */
730 return m_mainColormap
;
732 int defaultScreen
= DefaultScreen((Display
*) display
);
733 Screen
* screen
= XScreenOfDisplay((Display
*) display
, defaultScreen
);
735 Colormap c
= DefaultColormapOfScreen(screen
);
738 m_mainColormap
= (WXColormap
) c
;
740 return (WXColormap
) c
;
743 Window
wxGetWindowParent(Window window
)
745 wxASSERT_MSG( window
, _T("invalid window") );
750 // VMS chokes on unreacheable code
751 Window parent
, root
= 0;
755 unsigned int noChildren
= 0;
757 Window
* children
= NULL
;
759 // #define XQueryTree(d,w,r,p,c,nc) GrQueryTree(w,p,c,nc)
764 XQueryTree((Display
*) wxGetDisplay(), window
, & root
, & parent
,
765 & children
, & noChildren
);
779 wxAppConsole::Exit();
782 // Yield to other processes
784 bool wxApp::Yield(bool onlyIfNeeded
)
786 // Sometimes only 2 yields seem
787 // to do the trick, e.g. in the
790 for (i
= 0; i
< 2; i
++)
792 static bool s_inYield
= FALSE
;
798 wxFAIL_MSG( wxT("wxYield called recursively" ) );
806 // Make sure we have an event loop object,
807 // or Pending/Dispatch will fail
808 wxEventLoop
* eventLoop
= wxEventLoop::GetActive();
809 wxEventLoop
* newEventLoop
= NULL
;
812 newEventLoop
= new wxEventLoop
;
813 wxEventLoop::SetActive(newEventLoop
);
816 // Call dispatch at least once so that sockets
818 wxTheApp
->Dispatch();
820 while (wxTheApp
&& wxTheApp
->Pending())
821 wxTheApp
->Dispatch();
824 wxTimer::NotifyTimers();
830 wxEventLoop::SetActive(NULL
);
842 void wxApp::OnAssert(const wxChar
*file
, int line
, const wxChar
* cond
, const wxChar
*msg
)
844 // While the GUI isn't working that well, just print out the
847 wxAppBase::OnAssert(file
, line
, cond
, msg
);
850 msg2
.Printf("At file %s:%d: %s", file
, line
, msg
);
855 #endif // __WXDEBUG__