]>
git.saurik.com Git - wxWidgets.git/blob - src/motif/toplevel.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/motif/toplevel.cpp
3 // Purpose: wxTopLevelWindow Motif implementation
4 // Author: Mattia Barbon
8 // Copyright: (c) Mattia Barbon
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
23 #include "wx/toplevel.h"
24 #include "wx/settings.h"
32 #pragma message disable nosimpint
36 #include <X11/Shell.h>
45 #pragma message enable nosimpint
48 #include "wx/motif/private.h"
50 wxList wxModelessWindows
; // Frames and modeless dialogs
52 // ---------------------------------------------------------------------------
54 // ---------------------------------------------------------------------------
56 static void wxCloseTLWCallback( Widget widget
, XtPointer client_data
,
57 XmAnyCallbackStruct
*cbs
);
58 static void wxTLWEventHandler( Widget wid
,
59 XtPointer client_data
,
61 Boolean
*continueToDispatch
);
63 // ===========================================================================
64 // wxTopLevelWindowMotif implementation
65 // ===========================================================================
67 void wxTopLevelWindowMotif::PreDestroy()
69 wxModelessWindows
.DeleteObject(this);
73 // MessageDialog and FileDialog do not have a client widget
74 if( GetClientWidget() )
76 XtRemoveEventHandler( (Widget
)GetClientWidget(),
77 ButtonPressMask
| ButtonReleaseMask
|
78 PointerMotionMask
| KeyPressMask
,
85 wxTopLevelWindowMotif::~wxTopLevelWindowMotif()
87 SetMainWidget( (WXWidget
)0 );
90 void wxTopLevelWindowMotif::Init()
95 bool wxTopLevelWindowMotif::Create( wxWindow
*parent
, wxWindowID id
,
96 const wxString
& title
,
100 const wxString
& name
)
103 m_windowStyle
= style
;
106 parent
->AddChild(this);
108 wxTopLevelWindows
.Append(this);
110 m_windowId
= ( id
> -1 ) ? id
: NewControlId();
111 // MBN: More backward compatible, but uglier
112 m_font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
113 m_inheritFont
= true;
115 bool retval
= XmDoCreateTLW( parent
, id
, title
, pos
, size
, style
, name
);
117 if( !retval
) return false;
119 // Intercept CLOSE messages from the window manager
120 Widget shell
= (Widget
)GetShellWidget();
121 Atom WM_DELETE_WINDOW
= XmInternAtom( XtDisplay( shell
),
122 "WM_DELETE_WINDOW", False
);
124 // Remove and add WM_DELETE_WINDOW so ours is only handler
125 // This only appears to be necessary for wxDialog, but does not hurt
127 XmRemoveWMProtocols( shell
, &WM_DELETE_WINDOW
, 1 );
128 XmAddWMProtocols( shell
, &WM_DELETE_WINDOW
, 1 );
129 XmActivateWMProtocol( shell
, WM_DELETE_WINDOW
);
131 // Modified Steve Hammes for Motif 2.0
132 #if (XmREVISION > 1 || XmVERSION > 1)
133 XmAddWMProtocolCallback( shell
, WM_DELETE_WINDOW
,
134 (XtCallbackProc
)wxCloseTLWCallback
,
136 #elif XmREVISION == 1
137 XmAddWMProtocolCallback( shell
, WM_DELETE_WINDOW
,
138 (XtCallbackProc
)wxCloseTLWCallback
,
141 XmAddWMProtocolCallback( shell
, WM_DELETE_WINDOW
,
142 (void (*)())wxCloseTLWCallback
, (caddr_t
)this );
145 // This patch come from Torsten Liermann lier@lier1.muc.de
146 if( XmIsMotifWMRunning( shell
) )
149 if( !(m_windowStyle
& wxNO_BORDER
) )
150 decor
|= MWM_DECOR_BORDER
;
151 if( m_windowStyle
& wxRESIZE_BORDER
)
152 decor
|= MWM_DECOR_RESIZEH
;
153 if( m_windowStyle
& wxSYSTEM_MENU
)
154 decor
|= MWM_DECOR_MENU
;
155 if( ( m_windowStyle
& wxCAPTION
) ||
156 ( m_windowStyle
& wxTINY_CAPTION
) )
157 decor
|= MWM_DECOR_TITLE
;
158 if( m_windowStyle
& wxRESIZE_BORDER
)
159 decor
|= MWM_DECOR_BORDER
;
160 if( m_windowStyle
& wxMINIMIZE_BOX
)
161 decor
|= MWM_DECOR_MINIMIZE
;
162 if( m_windowStyle
& wxMAXIMIZE_BOX
)
163 decor
|= MWM_DECOR_MAXIMIZE
;
165 XtVaSetValues( shell
,
166 XmNmwmDecorations
, decor
,
171 // This allows non-Motif window managers to support at least the
172 // no-decorations case.
173 if( ( m_windowStyle
& wxCAPTION
) != wxCAPTION
)
174 XtVaSetValues( shell
,
175 XmNoverrideRedirect
, True
,
179 XtAddEventHandler( (Widget
)GetClientWidget(),
180 ButtonPressMask
| ButtonReleaseMask
|
181 PointerMotionMask
| KeyPressMask
,
189 void wxTopLevelWindowMotif::DoGetPosition(int *x
, int *y
) const
191 Widget top
= (Widget
) GetTopWidget();
192 Window parent_window
= XtWindow((Widget
) top
),
193 next_parent
= XtWindow((Widget
) top
),
194 root
= RootWindowOfScreen(XtScreen((Widget
) top
));
196 // search for the parent that is child of ROOT, because the WM may
197 // reparent twice and notify only the next parent (like FVWM)
198 while (next_parent
!= root
) {
199 Window
*theChildren
; unsigned int n
;
200 parent_window
= next_parent
;
201 XQueryTree(XtDisplay((Widget
) top
), parent_window
, &root
,
202 &next_parent
, &theChildren
, &n
);
203 XFree(theChildren
); // not needed
205 int xx
, yy
; unsigned int dummy
;
206 XGetGeometry(XtDisplay((Widget
) top
), parent_window
, &root
,
207 &xx
, &yy
, &dummy
, &dummy
, &dummy
, &dummy
);
212 void wxTopLevelWindowMotif::Raise()
214 Widget top
= (Widget
) GetTopWidget();
215 Window parent_window
= XtWindow( top
),
216 next_parent
= XtWindow( top
),
217 root
= RootWindowOfScreen( XtScreen( top
) );
218 // search for the parent that is child of ROOT, because the WM may
219 // reparent twice and notify only the next parent (like FVWM)
220 while( next_parent
!= root
)
225 parent_window
= next_parent
;
226 XQueryTree( XtDisplay( top
), parent_window
, &root
,
227 &next_parent
, &theChildren
, &n
);
228 XFree( theChildren
); // not needed
230 XRaiseWindow( XtDisplay( top
), parent_window
);
233 void wxTopLevelWindowMotif::Lower()
235 Widget top
= (Widget
) GetTopWidget();
236 Window parent_window
= XtWindow( top
),
237 next_parent
= XtWindow( top
),
238 root
= RootWindowOfScreen( XtScreen( top
) );
239 // search for the parent that is child of ROOT, because the WM may
240 // reparent twice and notify only the next parent (like FVWM)
241 while( next_parent
!= root
)
246 parent_window
= next_parent
;
247 XQueryTree( XtDisplay( top
), parent_window
, &root
,
248 &next_parent
, &theChildren
, &n
);
249 XFree( theChildren
); // not needed
251 XLowerWindow( XtDisplay( top
), parent_window
);
254 static inline Widget
GetShell( const wxTopLevelWindowMotif
* tlw
)
256 Widget main
= (Widget
) tlw
->GetMainWidget();
257 if( !main
) return (Widget
) NULL
;
259 return XtParent( main
);
262 WXWidget
wxTopLevelWindowMotif::GetShellWidget() const
264 return (WXWidget
) GetShell( this );
267 bool wxTopLevelWindowMotif::ShowFullScreen( bool WXUNUSED(show
),
268 long WXUNUSED(style
) )
274 bool wxTopLevelWindowMotif::IsFullScreen() const
280 void wxTopLevelWindowMotif::Restore()
282 Widget shell
= GetShell( this );
285 XtVaSetValues( shell
,
290 void wxTopLevelWindowMotif::Iconize( bool iconize
)
292 Widget shell
= GetShell( this );
298 XtVaSetValues( shell
,
299 XmNiconic
, (Boolean
)iconize
,
303 bool wxTopLevelWindowMotif::IsIconized() const
305 Widget shell
= GetShell( this );
311 XtVaGetValues( shell
,
315 return (iconic
== True
);
318 void wxTopLevelWindowMotif::Maximize( bool maximize
)
326 bool wxTopLevelWindowMotif::IsMaximized() const
331 void wxTopLevelWindowMotif::DoSetSizeHints( int minW
, int minH
,
335 wxTopLevelWindowBase::DoSetSizeHints( minW
, minH
, maxW
, maxH
, incW
, incH
);
340 if( minW
> -1 ) { XtSetArg( args
[count
], XmNminWidth
, minW
); ++count
; }
341 if( minH
> -1 ) { XtSetArg( args
[count
], XmNminHeight
, minH
); ++count
; }
342 if( maxW
> -1 ) { XtSetArg( args
[count
], XmNmaxWidth
, maxW
); ++count
; }
343 if( maxH
> -1 ) { XtSetArg( args
[count
], XmNmaxHeight
, maxH
); ++count
; }
344 if( incW
> -1 ) { XtSetArg( args
[count
], XmNwidthInc
, incW
); ++count
; }
345 if( incH
> -1 ) { XtSetArg( args
[count
], XmNheightInc
, incH
); ++count
; }
347 XtSetValues( (Widget
)GetShellWidget(), args
, count
);
350 bool wxTopLevelWindowMotif::SetShape( const wxRegion
& region
)
352 return wxDoSetShape( (Display
*)GetXDisplay(),
353 XtWindow( (Widget
)GetShellWidget() ),
357 // ---------------------------------------------------------------------------
358 // Callback definition
359 // ---------------------------------------------------------------------------
361 // Handle a close event from the window manager
362 static void wxCloseTLWCallback( Widget
WXUNUSED(widget
), XtPointer client_data
,
363 XmAnyCallbackStruct
*WXUNUSED(cbs
) )
365 wxTopLevelWindowMotif
* tlw
= (wxTopLevelWindowMotif
*)client_data
;
366 wxCloseEvent
closeEvent( wxEVT_CLOSE_WINDOW
, tlw
->GetId() );
367 closeEvent
.SetEventObject( tlw
);
369 // May delete the dialog (with delayed deletion)
370 tlw
->HandleWindowEvent(closeEvent
);
373 void wxTLWEventHandler( Widget wid
,
374 XtPointer
WXUNUSED(client_data
),
376 Boolean
* continueToDispatch
)
378 wxTopLevelWindowMotif
* tlw
=
379 (wxTopLevelWindowMotif
*)wxGetWindowFromTable( wid
);
383 wxMouseEvent
wxevent( wxEVT_NULL
);
385 if( wxTranslateMouseEvent( wxevent
, tlw
, wid
, event
) )
387 wxevent
.SetEventObject( tlw
);
388 wxevent
.SetId( tlw
->GetId() );
389 tlw
->HandleWindowEvent( wxevent
);
393 // An attempt to implement OnCharHook by calling OnCharHook first;
394 // if this returns true, set continueToDispatch to False
395 // (don't continue processing).
396 // Otherwise set it to True and call OnChar.
397 wxKeyEvent
keyEvent( wxEVT_CHAR
);
398 if( wxTranslateKeyEvent( keyEvent
, tlw
, wid
, event
))
400 keyEvent
.SetEventObject( tlw
);
401 keyEvent
.SetId( tlw
->GetId() );
402 keyEvent
.SetEventType( wxEVT_CHAR_HOOK
);
403 if( tlw
->HandleWindowEvent( keyEvent
) )
405 *continueToDispatch
= False
;
410 // For simplicity, OnKeyDown is the same as OnChar
411 // TODO: filter modifier key presses from OnChar
412 keyEvent
.SetEventType( wxEVT_KEY_DOWN
);
414 // Only process OnChar if OnKeyDown didn't swallow it
415 if( !tlw
->HandleWindowEvent( keyEvent
) )
417 keyEvent
.SetEventType( wxEVT_CHAR
);
418 tlw
->HandleWindowEvent( keyEvent
);
425 *continueToDispatch
= True
;