blob: 7b70fd5d03b578debc702a895d10f455b1ee827a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/****************************************************************************
**
** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the $MODULE$ of the Qt Toolkit.
**
** $TROLLTECH_DUAL_EMBEDDED_LICENSE$
**
****************************************************************************/
#ifndef QWINDOWSURFACE_S60_P_H
#define QWINDOWSURFACE_S60_P_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists for the convenience
// of other Qt classes. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include <qglobal.h>
#include "private/qwindowsurface_p.h"
class CFbsBitmap;
QT_BEGIN_NAMESPACE
struct QS60WindowSurfacePrivate;
class QS60WindowSurface : public QWindowSurface
{
public:
QS60WindowSurface(QWidget *widget);
~QS60WindowSurface();
QPaintDevice *paintDevice();
void flush(QWidget *widget, const QRegion ®ion, const QPoint &offset);
bool scroll(const QRegion &area, int dx, int dy);
void beginPaint(const QRegion &);
void endPaint(const QRegion &);
void setGeometry(const QRect &rect);
static void lockBitmapHeap();
static void unlockBitmapHeap();
CFbsBitmap *symbianBitmap() const;
private:
void updatePaintDeviceOnBitmap();
private:
QS60WindowSurfacePrivate* d_ptr;
};
QT_END_NAMESPACE
#endif // QWINDOWSURFACE_S60_P_H
|