Line | Source Code | Coverage |
---|
1 | | - |
2 | | - |
3 | | - |
4 | class QPlatformBackingStorePrivate | - |
5 | { | - |
6 | public: | - |
7 | QPlatformBackingStorePrivate(QWindow *w) | - |
8 | : window(w) | - |
9 | { | - |
10 | } executed: } Execution Count:2500 | 2500 |
11 | | - |
12 | QWindow *window; | - |
13 | QSize size; | - |
14 | }; | - |
15 | QPlatformBackingStore::QPlatformBackingStore(QWindow *window) | - |
16 | : d_ptr(new QPlatformBackingStorePrivate(window)) | - |
17 | { | - |
18 | } executed: } Execution Count:2500 | 2500 |
19 | | - |
20 | | - |
21 | | - |
22 | | - |
23 | QPlatformBackingStore::~QPlatformBackingStore() | - |
24 | { | - |
25 | delete d_ptr; | - |
26 | } executed: } Execution Count:2499 | 2499 |
27 | | - |
28 | | - |
29 | | - |
30 | | - |
31 | | - |
32 | QWindow* QPlatformBackingStore::window() const | - |
33 | { | - |
34 | return d_ptr->window; executed: return d_ptr->window; Execution Count:5406 | 5406 |
35 | } | - |
36 | void QPlatformBackingStore::beginPaint(const QRegion &) | - |
37 | { | - |
38 | } | - |
39 | | - |
40 | | - |
41 | | - |
42 | | - |
43 | | - |
44 | | - |
45 | | - |
46 | void QPlatformBackingStore::endPaint() | - |
47 | { | - |
48 | } | - |
49 | | - |
50 | | - |
51 | | - |
52 | | - |
53 | | - |
54 | | - |
55 | | - |
56 | bool QPlatformBackingStore::scroll(const QRegion &area, int dx, int dy) | - |
57 | { | - |
58 | (void)area;; | - |
59 | (void)dx;; | - |
60 | (void)dy;; | - |
61 | | - |
62 | return false; never executed: return false; | 0 |
63 | } | - |
64 | | - |
65 | | - |
66 | | - |
| | |