summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/kernel/tqdesktopwidget_x11.cpp
blob: 84da179a0449a6e63804f0c8f5c36e078e0c7f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
/****************************************************************************
**
** Implementation of TQDesktopWidget class.
**
** Copyright (C) 2010 Timothy Pearson and (C) 1992-2008 Trolltech ASA.
**
** This file is part of the kernel module of the TQt GUI Toolkit.
**
** This file may be used under the terms of the GNU General
** Public License versions 2.0 or 3.0 as published by the Free
** Software Foundation and appearing in the files LICENSE.GPL2
** and LICENSE.GPL3 included in the packaging of this file.
** Alternatively you may (at your option) use any later version
** of the GNU General Public License if such license has been
** publicly approved by Trolltech ASA (or its successors, if any)
** and the KDE Free TQt Foundation.
**
** Please review the following information to ensure GNU General
** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/.
** If you are unsure which license is appropriate for your use, please
** review the following information:
** http://trolltech.com/products/qt/licenses/licensing/licensingoverview
** or contact the sales department at sales@trolltech.com.
**
** This file may be used under the terms of the Q Public License as
** defined by Trolltech ASA and appearing in the file LICENSE.TQPL
** included in the packaging of this file.  Licensees holding valid TQt
** Commercial licenses may use this file in accordance with the TQt
** Commercial License Agreement provided with the Software.
**
** This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE. Trolltech reserves all rights not granted
** herein.
**
**********************************************************************/

#include "tqdesktopwidget.h"
#include "tqapplication.h"
#include "tqobjectlist.h"
#include "tqt_x11_p.h"

#ifdef USE_QT4

#else // USE_QT4

// defined in qwidget_x11.cpp
extern int qt_x11_create_desktop_on_screen;

// defined in qapplication_x11.cpp
extern Atom qt_net_workarea;
extern bool qt_net_supports(Atom atom);

// function to update the workarea of the screen
static bool qt_desktopwidget_workarea_dirty = TRUE;
void qt_desktopwidget_update_workarea()
{
    qt_desktopwidget_workarea_dirty = TRUE;
}


class TQSingleDesktopWidget : public TQWidget
{
public:
    TQSingleDesktopWidget();
    ~TQSingleDesktopWidget();
};

TQSingleDesktopWidget::TQSingleDesktopWidget()
    : TQWidget( 0, "desktop", WType_Desktop )
{
}

TQSingleDesktopWidget::~TQSingleDesktopWidget()
{
    while ( !childrenListObject().isEmpty() )
        removeChild( childrenListObject().getFirst() );
}


class TQDesktopWidgetPrivate
{
public:
    TQDesktopWidgetPrivate();
    ~TQDesktopWidgetPrivate();

    void init();

    bool use_xinerama;
    int defaultScreen;
    int screenCount;

    TQWidget **screens;
    TQRect *rects;
    TQRect *workareas;
};

TQDesktopWidgetPrivate::TQDesktopWidgetPrivate()
    : use_xinerama(FALSE), defaultScreen(0), screenCount(1),
      screens( 0 ), rects( 0 ), workareas( 0 )
{
}

TQDesktopWidgetPrivate::~TQDesktopWidgetPrivate()
{
    if ( screens ) {
	for ( int i = 0; i < screenCount; ++i ) {
	    if (i == defaultScreen) continue;
	    delete screens[i];
	    screens[i] = 0;
	}

	free(screens);
    }

    if ( rects )     delete [] rects;
    if ( workareas ) delete [] workareas;
}

void TQDesktopWidgetPrivate::init()
{
    // get the screen count
    int newScreenCount;

#ifndef TQT_NO_XINERAMA
    XineramaScreenInfo *xinerama_screeninfo = 0;
    int unused;
    use_xinerama = (XineramaQueryExtension(TQPaintDevice::x11AppDisplay(),
					   &unused, &unused) &&
		    XineramaIsActive(TQPaintDevice::x11AppDisplay()));

    if (use_xinerama) {
	xinerama_screeninfo =
	    XineramaQueryScreens(TQPaintDevice::x11AppDisplay(), &newScreenCount);

    if (xinerama_screeninfo)
	defaultScreen = 0;
    } else
#endif // TQT_NO_XINERAMA
    {
	defaultScreen = DefaultScreen(TQPaintDevice::x11AppDisplay());
	newScreenCount = ScreenCount(TQPaintDevice::x11AppDisplay());
        use_xinerama = false;
    }

    delete [] rects;
    rects     = new TQRect[ newScreenCount ];
    delete [] workareas;
    workareas = new TQRect[ newScreenCount ];

    // get the tqgeometry of each screen
    int i, j, x, y, w, h;
    for ( i = 0, j = 0; i < newScreenCount; i++ ) {

#ifndef TQT_NO_XINERAMA
	if (use_xinerama) {
	    x = xinerama_screeninfo[i].x_org;
	    y = xinerama_screeninfo[i].y_org;
	    w = xinerama_screeninfo[i].width;
	    h = xinerama_screeninfo[i].height;
	} else
#endif // TQT_NO_XINERAMA
	    {
		x = 0;
		y = 0;
		w = WidthOfScreen(ScreenOfDisplay(TQPaintDevice::x11AppDisplay(), i));
		h = HeightOfScreen(ScreenOfDisplay(TQPaintDevice::x11AppDisplay(), i));
	    }

	workareas[i] = TQRect();
	rects[j].setRect(x, y, w, h);

        // overlapping?
        if (j > 0 && rects[j-1].intersects(rects[j])) {
            // pick the bigger one, ignore the other
            if ((rects[j].width()*rects[j].height()) >
                (rects[j-1].width()*rects[j-1].height()))
            rects[j-1] = rects[j];
        }
        else
            j++;
    }

    if (screens) {
        // leaks TQWidget* pointers on purpose, can't delete them as pointer escapes
        screens = (TQWidget**) realloc(screens, j * sizeof(TQWidget*));
        if (j > screenCount)
            memset(&screens[screenCount], 0, (j-screenCount) * sizeof(TQWidget*));
    }

    screenCount = j;

#ifndef TQT_NO_XINERAMA
    if (use_xinerama && screenCount == 1)
        use_xinerama = false;

    if (xinerama_screeninfo)
	XFree(xinerama_screeninfo);
#endif // TQT_NO_XINERAMA

}

// the TQDesktopWidget itself will be created on the default screen
// as qt_x11_create_desktop_on_screen defaults to -1
TQDesktopWidget::TQDesktopWidget()
    : TQWidget( 0, "desktop", WType_Desktop )
{
    d = new TQDesktopWidgetPrivate();

    /*
      we don't call d->init() here, since the initial resize event
      will end up calling init() a second time, which is inefficient.
      instead, for the sending of all posted event to the desktop
      widget (including the initial resize event, which calls
      d->init()).
    */
    TQApplication::sendPostedEvents( this, 0 );
}

TQDesktopWidget::~TQDesktopWidget()
{
    delete d;
}

bool TQDesktopWidget::isVirtualDesktop() const
{
    return d->use_xinerama;
}

int TQDesktopWidget::primaryScreen() const
{
    return d->defaultScreen;
}

int TQDesktopWidget::numScreens() const
{
    return d->screenCount;
}

TQWidget *TQDesktopWidget::screen( int screen )
{
    if (d->use_xinerama)
	return this;

    if ( screen < 0 || screen >= d->screenCount )
	screen = d->defaultScreen;

    if ( ! d->screens ) {
	d->screens = (TQWidget**) calloc( d->screenCount, sizeof(TQWidget*));
	d->screens[ d->defaultScreen ] = this;
    }

    if ( ! d->screens[screen] ||               // not created yet
	 ! d->screens[screen]->isDesktop() ) { // reparented away
	qt_x11_create_desktop_on_screen = screen;
	d->screens[screen] = new TQSingleDesktopWidget;
	qt_x11_create_desktop_on_screen = -1;
    }

    return d->screens[screen];
}

const TQRect& TQDesktopWidget::availableGeometry( int screen ) const
{
    if ( qt_desktopwidget_workarea_dirty ) {
	// the workareas are dirty, tqinvalidate them
	for ( int i = 0; i < d->screenCount; ++i )
	    d->workareas[i] = TQRect();
	qt_desktopwidget_workarea_dirty = FALSE;
    }

    if ( screen < 0 || screen >= d->screenCount )
	screen = d->defaultScreen;

    if ( d->workareas[screen].isValid() )
	return d->workareas[screen];

    if ( ! isVirtualDesktop() && qt_net_supports( qt_net_workarea ) ) {
	Atom ret;
	int format, e;
	unsigned char *data = 0;
	unsigned long nitems, after;

	e = XGetWindowProperty( TQPaintDevice::x11AppDisplay(),
				TQPaintDevice::x11AppRootWindow( screen ),
				qt_net_workarea, 0, 4, False, XA_CARDINAL,
				&ret, &format, &nitems, &after, &data );

	if (e == Success && ret == XA_CARDINAL &&
	    format == 32 && nitems == 4) {
	    long *workarea = (long *) data;
	    d->workareas[screen].setRect( workarea[0], workarea[1],
					  workarea[2], workarea[3] );
	} else {
	    d->workareas[screen] = screenGeometry(screen);
	}
	if ( data )
	    XFree( data );
    } else {
	d->workareas[screen] = screenGeometry(screen);
    }

    return d->workareas[screen];
}

const TQRect& TQDesktopWidget::screenGeometry( int screen ) const
{
    if ( screen < 0 || screen >= d->screenCount )
	screen = d->defaultScreen;

    return d->rects[ screen ];
}

int TQDesktopWidget::screenNumber( TQWidget *widget ) const
{
    if ( !widget )
	return d->defaultScreen;

#ifndef TQT_NO_XINERAMA
    if (d->use_xinerama) {
	// this is how we do it for xinerama
	TQRect frame = widget->frameGeometry();
	if ( !widget->isTopLevel() )
	    frame.moveTopLeft( widget->mapToGlobal( TQPoint( 0, 0 ) ) );

	int maxSize = -1;
	int maxScreen = -1;

	for ( int i = 0; i < d->screenCount; ++i ) {
	    TQRect sect = d->rects[i].intersect( frame );
	    int size = sect.width() * sect.height();
	    if ( size > maxSize && sect.width() > 0 && sect.height() > 0 ) {
		maxSize = size;
		maxScreen = i;
	    }
	}
	return maxScreen;
    }
#endif // TQT_NO_XINERAMA

    return widget->x11Screen();
}

int TQDesktopWidget::screenNumber( const TQPoint &point ) const
{
    for ( int i = 0; i < d->screenCount; ++i ) {
	if ( d->rects[i].tqcontains( point ) )
	    return i;
    }
    return -1;
}

void TQDesktopWidget::resizeEvent( TQResizeEvent *event )
{
    d->init();
    qt_desktopwidget_workarea_dirty = TRUE;
    TQWidget::resizeEvent( event );
}

#endif // USE_QT4