Qt 4.8
qplatformwindow_qpa.cpp
Go to the documentation of this file.
1 /****************************************************************************
2 **
3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the QtGui module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia. For licensing terms and
14 ** conditions see http://qt.digia.com/licensing. For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file. Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights. These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file. Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 
42 #include "qplatformwindow_qpa.h"
43 
44 #include <QtGui/qwindowsysteminterface_qpa.h>
45 #include <QtGui/qwidget.h>
46 
48 {
51  Qt::WindowFlags flags;
52  friend class QPlatformWindow;
53 };
54 
61 {
63  d->tlw = tlw;
64  tlw->setPlatformWindow(this);
65 }
66 
71 {
72 }
73 
78 {
79  Q_D(const QPlatformWindow);
80  return d->tlw;
81 }
82 
90 {
92  d->rect = rect;
93 }
94 
99 {
100  Q_D(const QPlatformWindow);
101  return d->rect;
102 }
103 
108 void QPlatformWindow::setVisible(bool visible)
109 {
110  Q_UNUSED(visible);
111 }
116 Qt::WindowFlags QPlatformWindow::setWindowFlags(Qt::WindowFlags flags)
117 {
119  d->flags = flags;
120  return flags;
121 }
122 
126 Qt::WindowFlags QPlatformWindow::windowFlags() const
127 {
128  Q_D(const QPlatformWindow);
129  return d->flags;
130 }
131 
135 WId QPlatformWindow::winId() const { return WId(0); }
136 
142 //jl: It would be useful to have a property on the platform window which indicated if the sub-class
143 // supported the setParent. If not, then geometry would be in screen coordinates.
145 {
146  Q_UNUSED(parent);
147  qWarning("This plugin does not support setParent!");
148 }
149 
154 
158 void QPlatformWindow::raise() { qWarning("This plugin does not support raise()"); }
159 
163 void QPlatformWindow::lower() { qWarning("This plugin does not support lower()"); }
164 
169 {
170  Q_UNUSED(level);
171  qWarning("This plugin does not support setting window opacity");
172 }
173 
188 {
190 }
191 
196 {
197  return 0;
198 }
199 
double d
Definition: qnumeric_p.h:62
virtual void setWindowTitle(const QString &title)
Reimplement to set the window title to title.
unsigned long WId
Definition: qwindowdefs.h:119
double qreal
Definition: qglobal.h:1193
virtual void setGeometry(const QRect &rect)
This function is called by Qt whenever a window is moved or the window is resized.
virtual QRect geometry() const
Returnes the current geometry of a window.
The QWidget class is the base class of all user interface objects.
Definition: qwidget.h:150
virtual void setParent(const QPlatformWindow *window)
This function is called to enable native child widgets in QPA.
virtual WId winId() const
Reimplement in subclasses to return a handle to the native window.
The QString class provides a Unicode character string.
Definition: qstring.h:83
The QPlatformWindow class provides an abstraction for top-level windows.
#define Q_D(Class)
Definition: qglobal.h:2482
QPlatformWindow(QWidget *tlw)
Constructs a platform window with the given top level widget.
static void handleWindowActivated(QWidget *w)
Q_CORE_EXPORT void qWarning(const char *,...)
virtual void requestActivateWindow()
Reimplement to let Qt be able to request activation/focus for a window.
virtual void lower()
Reimplement to be able to let Qt lower windows to the bottom of the desktop.
virtual QPlatformGLContext * glContext() const
Reimplement to return the glContext associated with the window.
The QPlatformGLContext class provides an abstraction for native GL contexts.
virtual void setVisible(bool visible)
Reimplemented in subclasses to show the surface if visible is true, and hide it if visible is false...
The QRect class defines a rectangle in the plane using integer precision.
Definition: qrect.h:58
virtual ~QPlatformWindow()
Virtual destructor does not delete its top level widget.
virtual Qt::WindowFlags windowFlags() const
Returns the effective window flags for this surface.
QScopedPointer< QPlatformWindowPrivate > d_ptr
#define Q_UNUSED(x)
Indicates to the compiler that the parameter with the specified name is not used in the body of a fun...
Definition: qglobal.h:1729
virtual void setOpacity(qreal level)
Reimplement to be able to let Qt set the opacity level of a window.
virtual void raise()
Reimplement to be able to let Qt rais windows to the top of the desktop.
QWidget * widget() const
Returnes the widget which belongs to the QPlatformWindow.
virtual Qt::WindowFlags setWindowFlags(Qt::WindowFlags flags)
Requests setting the window flags of this surface to type.