Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #if OSL_DEBUG_LEVEL > 1
21 : #include <stdio.h>
22 : #endif
23 :
24 : #include <prex.h>
25 : #include <X11/extensions/shape.h>
26 : #include <postx.h>
27 : #include <tools/debug.hxx>
28 :
29 : #include <vcl/keycodes.hxx>
30 :
31 : #include <unx/salunx.h>
32 : #include <unx/saldata.hxx>
33 : #include <unx/salinst.h>
34 : #include <unx/saldisp.hxx>
35 : #include <unx/salframe.h>
36 : #include <unx/salobj.h>
37 :
38 : #include <salwtype.hxx>
39 :
40 : // SalInstance member to create and destroy a SalObject
41 :
42 0 : SalObject* X11SalInstance::CreateObject( SalFrame* pParent, SystemWindowData* pWindowData, bool bShow )
43 : {
44 0 : return X11SalObject::CreateObject( pParent, pWindowData, bShow );
45 : }
46 :
47 0 : X11SalObject* X11SalObject::CreateObject( SalFrame* pParent, SystemWindowData* pWindowData, bool bShow )
48 : {
49 : int error_base, event_base;
50 0 : X11SalObject* pObject = new X11SalObject();
51 0 : SystemEnvData* pObjData = const_cast<SystemEnvData*>(pObject->GetSystemData());
52 :
53 0 : if ( ! XShapeQueryExtension( (Display*)pObjData->pDisplay,
54 0 : &event_base, &error_base ) )
55 : {
56 0 : delete pObject;
57 0 : return NULL;
58 : }
59 :
60 0 : pObject->mpParent = pParent;
61 :
62 0 : SalDisplay* pSalDisp = GetGenericData()->GetSalDisplay();
63 0 : const SystemEnvData* pEnv = pParent->GetSystemData();
64 0 : Display* pDisp = pSalDisp->GetDisplay();
65 0 : XLIB_Window aObjectParent = (XLIB_Window)pEnv->aWindow;
66 :
67 : // find out on which screen that window is
68 : XWindowAttributes aParentAttr;
69 0 : XGetWindowAttributes( pDisp, aObjectParent, &aParentAttr );
70 0 : SalX11Screen nXScreen( XScreenNumberOfScreen( aParentAttr.screen ) );
71 0 : Visual* pVisual = (pWindowData && pWindowData->pVisual) ?
72 : (Visual*)pWindowData->pVisual :
73 0 : pSalDisp->GetVisual( nXScreen ).GetVisual();
74 : // get visual info
75 0 : VisualID aVisID = XVisualIDFromVisual( pVisual );
76 : XVisualInfo aTemplate;
77 0 : aTemplate.visualid = aVisID;
78 0 : int nVisuals = 0;
79 0 : XVisualInfo* pInfos = XGetVisualInfo( pDisp, VisualIDMask, &aTemplate, &nVisuals );
80 : // only one VisualInfo structure can match the visual id
81 : DBG_ASSERT( nVisuals == 1, "match count for visual id is not 1" );
82 0 : unsigned int nDepth = pInfos->depth;
83 0 : XFree( pInfos );
84 : XSetWindowAttributes aAttribs;
85 : aAttribs.event_mask = StructureNotifyMask
86 : | ButtonPressMask
87 : | ButtonReleaseMask
88 : | PointerMotionMask
89 : | EnterWindowMask
90 : | LeaveWindowMask
91 : | FocusChangeMask
92 : | ExposureMask
93 0 : ;
94 :
95 : pObject->maPrimary =
96 : XCreateSimpleWindow( pDisp,
97 : aObjectParent,
98 : 0, 0,
99 : 1, 1, 0,
100 0 : pSalDisp->GetColormap( nXScreen ).GetBlackPixel(),
101 0 : pSalDisp->GetColormap( nXScreen ).GetWhitePixel()
102 0 : );
103 0 : if( aVisID == pSalDisp->GetVisual( nXScreen ).GetVisualId() )
104 : {
105 : pObject->maSecondary =
106 : XCreateSimpleWindow( pDisp,
107 : pObject->maPrimary,
108 : 0, 0,
109 : 1, 1, 0,
110 0 : pSalDisp->GetColormap( nXScreen ).GetBlackPixel(),
111 0 : pSalDisp->GetColormap( nXScreen ).GetWhitePixel()
112 0 : );
113 : }
114 : else
115 : {
116 : #if OSL_DEBUG_LEVEL > 1
117 : fprintf( stderr, "visual id of vcl %x, of visual %x\n",
118 : static_cast<unsigned int> (pSalDisp->GetVisual( nXScreen ).GetVisualId()),
119 : static_cast<unsigned int> (aVisID) );
120 : #endif
121 0 : GetGenericData()->ErrorTrapPush();
122 :
123 : // create colormap for visual - there might not be one
124 : pObject->maColormap = aAttribs.colormap = XCreateColormap(
125 : pDisp,
126 : pSalDisp->GetRootWindow( nXScreen ),
127 : pVisual,
128 0 : AllocNone );
129 :
130 : pObject->maSecondary =
131 : XCreateWindow( pDisp,
132 : pSalDisp->GetRootWindow( nXScreen ),
133 : 0, 0,
134 : 1, 1, 0,
135 : nDepth, InputOutput,
136 : pVisual,
137 0 : CWEventMask|CWColormap, &aAttribs );
138 0 : XSync( pDisp, False );
139 0 : if( GetGenericData()->ErrorTrapPop( false ) )
140 : {
141 0 : pObject->maSecondary = None;
142 0 : delete pObject;
143 0 : return NULL;
144 : }
145 0 : XReparentWindow( pDisp, pObject->maSecondary, pObject->maPrimary, 0, 0 );
146 : }
147 :
148 0 : GetGenericData()->ErrorTrapPush();
149 0 : if( bShow ) {
150 0 : XMapWindow( pDisp, pObject->maSecondary );
151 0 : XMapWindow( pDisp, pObject->maPrimary );
152 : }
153 :
154 0 : pObjData->pDisplay = pDisp;
155 0 : pObjData->aWindow = pObject->maSecondary;
156 0 : pObjData->pWidget = NULL;
157 0 : pObjData->pVisual = pVisual;
158 0 : pObjData->nDepth = nDepth;
159 0 : pObjData->aColormap = aVisID == pSalDisp->GetVisual( nXScreen ).GetVisualId() ?
160 0 : pSalDisp->GetColormap( nXScreen ).GetXColormap() : None;
161 0 : pObjData->pAppContext = NULL;
162 :
163 0 : XSync(pDisp, False);
164 0 : if( GetGenericData()->ErrorTrapPop( false ) )
165 : {
166 0 : delete pObject;
167 0 : return NULL;
168 : }
169 :
170 0 : return pObject;
171 : }
172 :
173 0 : void X11SalInstance::DestroyObject( SalObject* pObject )
174 : {
175 0 : delete pObject;
176 0 : }
177 :
178 : // SalClipRegion is a member of SalObject
179 : // definition of SalClipRegion my be found in unx/inc/salobj.h
180 :
181 0 : SalClipRegion::SalClipRegion()
182 : {
183 0 : ClipRectangleList = NULL;
184 0 : numClipRectangles = 0;
185 0 : maxClipRectangles = 0;
186 0 : nClipRegionType = SAL_OBJECT_CLIP_INCLUDERECTS;
187 0 : }
188 :
189 0 : SalClipRegion::~SalClipRegion()
190 : {
191 0 : if ( ClipRectangleList )
192 0 : delete [] ClipRectangleList;
193 0 : }
194 :
195 : void
196 0 : SalClipRegion::BeginSetClipRegion( sal_uLong nRects )
197 : {
198 0 : if (ClipRectangleList)
199 0 : delete [] ClipRectangleList;
200 :
201 0 : ClipRectangleList = new XRectangle[nRects];
202 0 : numClipRectangles = 0;
203 0 : maxClipRectangles = nRects;
204 0 : }
205 :
206 : void
207 0 : SalClipRegion::UnionClipRegion( long nX, long nY, long nWidth, long nHeight )
208 : {
209 0 : if ( nWidth && nHeight && (numClipRectangles < maxClipRectangles) )
210 : {
211 0 : XRectangle *aRect = ClipRectangleList + numClipRectangles;
212 :
213 0 : aRect->x = (short) nX;
214 0 : aRect->y = (short) nY;
215 0 : aRect->width = (unsigned short) nWidth;
216 0 : aRect->height= (unsigned short) nHeight;
217 :
218 0 : numClipRectangles++;
219 : }
220 0 : }
221 :
222 : // SalObject Implementation
223 0 : X11SalObject::X11SalObject()
224 : : mpParent(NULL)
225 : , maPrimary(0)
226 : , maSecondary(0)
227 : , maColormap(0)
228 0 : , mbVisible(false)
229 : {
230 0 : maSystemChildData.nSize = sizeof( SystemEnvData );
231 0 : maSystemChildData.pDisplay = GetGenericData()->GetSalDisplay()->GetDisplay();
232 0 : maSystemChildData.aWindow = None;
233 0 : maSystemChildData.pSalFrame = 0;
234 0 : maSystemChildData.pWidget = 0;
235 0 : maSystemChildData.pVisual = 0;
236 0 : maSystemChildData.nDepth = 0;
237 0 : maSystemChildData.aColormap = 0;
238 0 : maSystemChildData.pAppContext = NULL;
239 0 : maSystemChildData.aShellWindow = 0;
240 0 : maSystemChildData.pShellWidget = NULL;
241 :
242 0 : std::list< SalObject* >& rObjects = GetGenericData()->GetSalDisplay()->getSalObjects();
243 0 : rObjects.push_back( this );
244 0 : }
245 :
246 0 : X11SalObject::~X11SalObject()
247 : {
248 0 : std::list< SalObject* >& rObjects = GetGenericData()->GetSalDisplay()->getSalObjects();
249 0 : rObjects.remove( this );
250 :
251 0 : GetGenericData()->ErrorTrapPush();
252 0 : if ( maSecondary )
253 0 : XDestroyWindow( (Display*)maSystemChildData.pDisplay, maSecondary );
254 0 : if ( maPrimary )
255 0 : XDestroyWindow( (Display*)maSystemChildData.pDisplay, maPrimary );
256 0 : if ( maColormap )
257 0 : XFreeColormap((Display*)maSystemChildData.pDisplay, maColormap);
258 0 : XSync( (Display*)maSystemChildData.pDisplay, False );
259 0 : GetGenericData()->ErrorTrapPop();
260 0 : }
261 :
262 : void
263 0 : X11SalObject::ResetClipRegion()
264 : {
265 0 : maClipRegion.ResetClipRegion();
266 :
267 0 : const int dest_kind = ShapeBounding;
268 0 : const int op = ShapeSet;
269 0 : const int ordering = YSorted;
270 :
271 : XWindowAttributes win_attrib;
272 : XRectangle win_size;
273 :
274 0 : XLIB_Window aShapeWindow = maPrimary;
275 :
276 : XGetWindowAttributes ( (Display*)maSystemChildData.pDisplay,
277 : aShapeWindow,
278 0 : &win_attrib );
279 :
280 0 : win_size.x = 0;
281 0 : win_size.y = 0;
282 0 : win_size.width = win_attrib.width;
283 0 : win_size.height = win_attrib.height;
284 :
285 : XShapeCombineRectangles ( (Display*)maSystemChildData.pDisplay,
286 : aShapeWindow,
287 : dest_kind,
288 : 0, 0, // x_off, y_off
289 : &win_size, // list of rectangles
290 : 1, // number of rectangles
291 0 : op, ordering );
292 0 : }
293 :
294 : void
295 0 : X11SalObject::BeginSetClipRegion( sal_uLong nRectCount )
296 : {
297 0 : maClipRegion.BeginSetClipRegion ( nRectCount );
298 0 : }
299 :
300 : void
301 0 : X11SalObject::UnionClipRegion( long nX, long nY, long nWidth, long nHeight )
302 : {
303 0 : maClipRegion.UnionClipRegion ( nX, nY, nWidth, nHeight );
304 0 : }
305 :
306 : void
307 0 : X11SalObject::EndSetClipRegion()
308 : {
309 0 : XRectangle *pRectangles = maClipRegion.EndSetClipRegion ();
310 0 : const int nType = maClipRegion.GetClipRegionType();
311 0 : const int nRectangles = maClipRegion.GetRectangleCount();
312 :
313 0 : const int dest_kind = ShapeBounding;
314 0 : const int ordering = YSorted;
315 : int op;
316 :
317 0 : switch ( nType )
318 : {
319 : case SAL_OBJECT_CLIP_INCLUDERECTS :
320 0 : op = ShapeSet;
321 0 : break;
322 : case SAL_OBJECT_CLIP_EXCLUDERECTS :
323 0 : op = ShapeSubtract;
324 0 : break;
325 : case SAL_OBJECT_CLIP_ABSOLUTE :
326 0 : op = ShapeSet;
327 0 : break;
328 : default :
329 0 : op = ShapeUnion;
330 : }
331 :
332 0 : XLIB_Window aShapeWindow = maPrimary;
333 :
334 : XShapeCombineRectangles ( (Display*)maSystemChildData.pDisplay,
335 : aShapeWindow,
336 : dest_kind,
337 : 0, 0, // x_off, y_off
338 : pRectangles,
339 : nRectangles,
340 0 : op, ordering );
341 0 : }
342 :
343 : sal_uInt16
344 0 : X11SalObject::GetClipRegionType()
345 : {
346 0 : return maClipRegion.GetClipRegionType();
347 : }
348 :
349 : void
350 0 : X11SalObject::SetPosSize( long nX, long nY, long nWidth, long nHeight )
351 : {
352 0 : if ( maPrimary && maSecondary && nWidth && nHeight )
353 : {
354 : XMoveResizeWindow( (Display*)maSystemChildData.pDisplay,
355 : maPrimary,
356 0 : nX, nY, nWidth, nHeight );
357 : XMoveResizeWindow( (Display*)maSystemChildData.pDisplay,
358 : maSecondary,
359 0 : 0, 0, nWidth, nHeight );
360 : }
361 0 : }
362 :
363 : void
364 0 : X11SalObject::Show( bool bVisible )
365 : {
366 0 : if ( ! maSystemChildData.aWindow )
367 0 : return;
368 :
369 0 : if ( bVisible ) {
370 : XMapWindow( (Display*)maSystemChildData.pDisplay,
371 0 : maSecondary );
372 : XMapWindow( (Display*)maSystemChildData.pDisplay,
373 0 : maPrimary );
374 : } else {
375 : XUnmapWindow( (Display*)maSystemChildData.pDisplay,
376 0 : maPrimary );
377 : XUnmapWindow( (Display*)maSystemChildData.pDisplay,
378 0 : maSecondary );
379 : }
380 0 : mbVisible = bVisible;
381 : }
382 :
383 0 : void X11SalObject::GrabFocus()
384 : {
385 0 : if( mbVisible )
386 : XSetInputFocus( (Display*)maSystemChildData.pDisplay,
387 : maSystemChildData.aWindow,
388 : RevertToNone,
389 0 : CurrentTime );
390 0 : }
391 :
392 0 : const SystemEnvData* X11SalObject::GetSystemData() const
393 : {
394 0 : return &maSystemChildData;
395 : }
396 :
397 0 : static sal_uInt16 sal_GetCode( int state )
398 : {
399 0 : sal_uInt16 nCode = 0;
400 :
401 0 : if( state & Button1Mask )
402 0 : nCode |= MOUSE_LEFT;
403 0 : if( state & Button2Mask )
404 0 : nCode |= MOUSE_MIDDLE;
405 0 : if( state & Button3Mask )
406 0 : nCode |= MOUSE_RIGHT;
407 :
408 0 : if( state & ShiftMask )
409 0 : nCode |= KEY_SHIFT;
410 0 : if( state & ControlMask )
411 0 : nCode |= KEY_MOD1;
412 0 : if( state & Mod1Mask )
413 0 : nCode |= KEY_MOD2;
414 0 : if( state & Mod3Mask )
415 0 : nCode |= KEY_MOD3;
416 :
417 0 : return nCode;
418 : }
419 :
420 0 : bool X11SalObject::Dispatch( XEvent* pEvent )
421 : {
422 0 : std::list< SalObject* >& rObjects = GetGenericData()->GetSalDisplay()->getSalObjects();
423 :
424 0 : for( std::list< SalObject* >::iterator it = rObjects.begin(); it != rObjects.end(); ++it )
425 : {
426 0 : X11SalObject* pObject = static_cast<X11SalObject*>(*it);
427 0 : if( pEvent->xany.window == pObject->maPrimary ||
428 0 : pEvent->xany.window == pObject->maSecondary )
429 : {
430 0 : if( pObject->IsMouseTransparent() && (
431 0 : pEvent->type == ButtonPress ||
432 0 : pEvent->type == ButtonRelease ||
433 0 : pEvent->type == EnterNotify ||
434 0 : pEvent->type == LeaveNotify ||
435 0 : pEvent->type == MotionNotify
436 : )
437 : )
438 : {
439 : SalMouseEvent aEvt;
440 0 : const SystemEnvData* pParentData = pObject->mpParent->GetSystemData();
441 : int dest_x, dest_y;
442 0 : XLIB_Window aChild = None;
443 : XTranslateCoordinates( pEvent->xbutton.display,
444 : pEvent->xbutton.root,
445 : pParentData->aWindow,
446 : pEvent->xbutton.x_root,
447 : pEvent->xbutton.y_root,
448 : &dest_x, &dest_y,
449 0 : &aChild );
450 0 : aEvt.mnX = dest_x;
451 0 : aEvt.mnY = dest_y;
452 0 : aEvt.mnTime = pEvent->xbutton.time;
453 0 : aEvt.mnCode = sal_GetCode( pEvent->xbutton.state );
454 0 : aEvt.mnButton = 0;
455 0 : sal_uInt16 nEvent = 0;
456 0 : if( pEvent->type == ButtonPress ||
457 0 : pEvent->type == ButtonRelease )
458 : {
459 0 : switch( pEvent->xbutton.button )
460 : {
461 0 : case Button1: aEvt.mnButton = MOUSE_LEFT;break;
462 0 : case Button2: aEvt.mnButton = MOUSE_MIDDLE;break;
463 0 : case Button3: aEvt.mnButton = MOUSE_RIGHT;break;
464 : }
465 0 : nEvent = (pEvent->type == ButtonPress) ?
466 : SALEVENT_MOUSEBUTTONDOWN :
467 0 : SALEVENT_MOUSEBUTTONUP;
468 : }
469 0 : else if( pEvent->type == EnterNotify )
470 0 : nEvent = SALEVENT_MOUSELEAVE;
471 : else
472 0 : nEvent = SALEVENT_MOUSEMOVE;
473 0 : pObject->mpParent->CallCallback( nEvent, &aEvt );
474 : }
475 : else
476 : {
477 0 : switch( pEvent->type )
478 : {
479 : case UnmapNotify:
480 0 : pObject->mbVisible = false;
481 0 : return true;
482 : case MapNotify:
483 0 : pObject->mbVisible = true;
484 0 : return true;
485 : case ButtonPress:
486 0 : pObject->CallCallback( SALOBJ_EVENT_TOTOP, NULL );
487 0 : return true;
488 : case FocusIn:
489 0 : pObject->CallCallback( SALOBJ_EVENT_GETFOCUS, NULL );
490 0 : return true;
491 : case FocusOut:
492 0 : pObject->CallCallback( SALOBJ_EVENT_LOSEFOCUS, NULL );
493 0 : return true;
494 0 : default: break;
495 : }
496 : }
497 0 : return false;
498 : }
499 : }
500 0 : return false;
501 0 : }
502 :
503 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|