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 "qpaintdevice.h" | - |
43 | | - |
44 | QT_BEGIN_NAMESPACE | - |
45 | | - |
46 | QPaintDevice::QPaintDevice() | - |
47 | { | - |
48 | reserved = 0; executed (the execution status of this line is deduced): reserved = 0; | - |
49 | painters = 0; executed (the execution status of this line is deduced): painters = 0; | - |
50 | } executed: } Execution Count:587457 | 587457 |
51 | | - |
52 | QPaintDevice::~QPaintDevice() | - |
53 | { | - |
54 | if (paintingActive()) partially evaluated: paintingActive() no Evaluation Count:0 | yes Evaluation Count:583014 |
| 0-583014 |
55 | qWarning("QPaintDevice: Cannot destroy paint device that is being " never executed: QMessageLogger("painting/qpaintdevice.cpp", 55, __PRETTY_FUNCTION__).warning("QPaintDevice: Cannot destroy paint device that is being " "painted"); | 0 |
56 | "painted"); never executed: QMessageLogger("painting/qpaintdevice.cpp", 55, __PRETTY_FUNCTION__).warning("QPaintDevice: Cannot destroy paint device that is being " "painted"); | 0 |
57 | } executed: } Execution Count:583014 | 583014 |
58 | | - |
59 | | - |
60 | /*! | - |
61 | \internal | - |
62 | */ | - |
63 | void QPaintDevice::initPainter(QPainter *) const | - |
64 | { | - |
65 | } | - |
66 | | - |
67 | /*! | - |
68 | \internal | - |
69 | */ | - |
70 | QPaintDevice *QPaintDevice::redirected(QPoint *) const | - |
71 | { | - |
72 | return 0; executed: return 0; Execution Count:5357 | 5357 |
73 | } | - |
74 | | - |
75 | /*! | - |
76 | \internal | - |
77 | */ | - |
78 | QPainter *QPaintDevice::sharedPainter() const | - |
79 | { | - |
80 | return 0; executed: return 0; Execution Count:9483 | 9483 |
81 | } | - |
82 | | - |
83 | Q_GUI_EXPORT int qt_paint_device_metric(const QPaintDevice *device, QPaintDevice::PaintDeviceMetric metric) | - |
84 | { | - |
85 | return device->metric(metric); never executed: return device->metric(metric); | 0 |
86 | } | - |
87 | | - |
88 | int QPaintDevice::metric(PaintDeviceMetric m) const | - |
89 | { | - |
90 | qWarning("QPaintDevice::metrics: Device has no metric information"); never executed (the execution status of this line is deduced): QMessageLogger("painting/qpaintdevice.cpp", 90, __PRETTY_FUNCTION__).warning("QPaintDevice::metrics: Device has no metric information"); | - |
91 | if (m == PdmDpiX) { never evaluated: m == PdmDpiX | 0 |
92 | return 72; never executed: return 72; | 0 |
93 | } else if (m == PdmDpiY) { never evaluated: m == PdmDpiY | 0 |
94 | return 72; never executed: return 72; | 0 |
95 | } else if (m == PdmNumColors) { never evaluated: m == PdmNumColors | 0 |
96 | // FIXME: does this need to be a real value? | - |
97 | return 256; never executed: return 256; | 0 |
98 | } else { | - |
99 | qDebug("Unrecognised metric %d!",m); never executed (the execution status of this line is deduced): QMessageLogger("painting/qpaintdevice.cpp", 99, __PRETTY_FUNCTION__).debug("Unrecognised metric %d!",m); | - |
100 | return 0; never executed: return 0; | 0 |
101 | } | - |
102 | } | - |
103 | | - |
104 | QT_END_NAMESPACE | - |
105 | | - |
| | |