painting/qplatformbackingstore.cpp

Switch to Source codePreprocessed file
LineSource CodeCoverage
1 -
2 -
3 -
4class QPlatformBackingStorePrivate -
5{ -
6public: -
7 QPlatformBackingStorePrivate(QWindow *w) -
8 : window(w) -
9 { -
10 }
executed: }
Execution Count:2500
2500
11 -
12 QWindow *window; -
13 QSize size; -
14}; -
15QPlatformBackingStore::QPlatformBackingStore(QWindow *window) -
16 : d_ptr(new QPlatformBackingStorePrivate(window)) -
17{ -
18}
executed: }
Execution Count:2500
2500
19 -
20 -
21 -
22 -
23QPlatformBackingStore::~QPlatformBackingStore() -
24{ -
25 delete d_ptr; -
26}
executed: }
Execution Count:2499
2499
27 -
28 -
29 -
30 -
31 -
32QWindow* QPlatformBackingStore::window() const -
33{ -
34 return d_ptr->window;
executed: return d_ptr->window;
Execution Count:5406
5406
35} -
36void QPlatformBackingStore::beginPaint(const QRegion &) -
37{ -
38} -
39 -
40 -
41 -
42 -
43 -
44 -
45 -
46void QPlatformBackingStore::endPaint() -
47{ -
48} -
49 -
50 -
51 -
52 -
53 -
54 -
55 -
56bool 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 -
Switch to Source codePreprocessed file

Generated by Squish Coco Non-Commercial