Line | Source Code | Coverage |
---|
1 | /**************************************************************************** | - |
2 | ** | - |
3 | ** Copyright (C) 2013 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 "qsurface.h" | - |
43 | | - |
44 | QT_BEGIN_NAMESPACE | - |
45 | | - |
46 | | - |
47 | /*! | - |
48 | \class QSurface | - |
49 | \inmodule QtGui | - |
50 | \since 5.0 | - |
51 | \brief The QSurface class is an abstraction of renderable surfaces in Qt. | - |
52 | | - |
53 | The size of the surface is accessible with the size() function. The rendering | - |
54 | specific attributes of the surface are accessible through the format() function. | - |
55 | */ | - |
56 | | - |
57 | | - |
58 | /*! | - |
59 | \enum QSurface::SurfaceClass | - |
60 | | - |
61 | The SurfaceClass enum describes the actual subclass of the surface. | - |
62 | | - |
63 | \value Window The surface is an instance of QWindow. | - |
64 | */ | - |
65 | | - |
66 | | - |
67 | /*! | - |
68 | \enum QSurface::SurfaceType | - |
69 | | - |
70 | The SurfaceType enum describes what type of surface this is. | - |
71 | | - |
72 | \value RasterSurface The surface is is composed of pixels and can be rendered to using | - |
73 | a software rasterizer like Qt's raster paint engine. | - |
74 | \value OpenGLSurface The surface is an OpenGL compatible surface and can be used | - |
75 | in conjunction with QOpenGLContext. | - |
76 | */ | - |
77 | | - |
78 | | - |
79 | /*! | - |
80 | \fn QSurfaceFormat QSurface::format() const | - |
81 | | - |
82 | Returns the format of the surface. | - |
83 | */ | - |
84 | | - |
85 | /*! | - |
86 | \fn QPlatformSurface *QSurface::surfaceHandle() const | - |
87 | | - |
88 | Returns a handle to the platform-specific implementation of the surface. | - |
89 | */ | - |
90 | | - |
91 | /*! | - |
92 | \fn SurfaceType QSurface::surfaceType() const | - |
93 | | - |
94 | Returns the type of the surface. | - |
95 | */ | - |
96 | | - |
97 | /*! | - |
98 | \fn QSize QSurface::size() const | - |
99 | | - |
100 | Returns the size of the surface in pixels. | - |
101 | */ | - |
102 | | - |
103 | /*! | - |
104 | Creates a surface with the given \a type. | - |
105 | */ | - |
106 | QSurface::QSurface(SurfaceClass type) | - |
107 | : m_type(type), m_reserved(0) | - |
108 | { | - |
109 | } executed: } Execution Count:3534 | 3534 |
110 | | - |
111 | /*! | - |
112 | Destroys the surface. | - |
113 | */ | - |
114 | QSurface::~QSurface() | - |
115 | { | - |
116 | } | - |
117 | | - |
118 | /*! | - |
119 | Returns the surface class of this surface. | - |
120 | */ | - |
121 | QSurface::SurfaceClass QSurface::surfaceClass() const | - |
122 | { | - |
123 | return m_type; never executed: return m_type; | 0 |
124 | } | - |
125 | | - |
126 | QT_END_NAMESPACE | - |
127 | | - |
128 | | - |
| | |