summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/directfb/qdirectfbwindowsurface.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2011-09-11 14:54:20 +0200
committerQt by Nokia <qt-info@nokia.com>2011-10-21 16:54:45 +0200
commitd8fc8aa585ed791ea90a52b953dbd7335248e845 (patch)
tree51ce6e2e7ae35f84c02a8bfec6ca8b7b6d3abc1c /src/plugins/platforms/directfb/qdirectfbwindowsurface.h
parentab50b60f5cc237d5620f3ff3b2eb44c857f8f60b (diff)
[directfb] Rename class from WindowSurface to BackingStore
Catch up with the naming by renaming the file from windowsurface to backingstore, update the class names and include files. Change-Id: I1b16826b60c19490946a77f61518e18f8099adce Reviewed-by: Jørgen Lind <jorgen.lind@nokia.com>
Diffstat (limited to 'src/plugins/platforms/directfb/qdirectfbwindowsurface.h')
-rw-r--r--src/plugins/platforms/directfb/qdirectfbwindowsurface.h77
1 files changed, 0 insertions, 77 deletions
diff --git a/src/plugins/platforms/directfb/qdirectfbwindowsurface.h b/src/plugins/platforms/directfb/qdirectfbwindowsurface.h
deleted file mode 100644
index 2b6cb58aef..0000000000
--- a/src/plugins/platforms/directfb/qdirectfbwindowsurface.h
+++ /dev/null
@@ -1,77 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
-**
-** This file is part of the plugins of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** GNU Lesser General Public License Usage
-** This file may be used under the terms of the GNU Lesser General Public
-** License version 2.1 as published by the Free Software Foundation and
-** appearing in the file LICENSE.LGPL included in the packaging of this
-** file. Please review the following information to ensure the GNU Lesser
-** General Public License version 2.1 requirements will be met:
-** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Nokia gives you certain additional
-** rights. These rights are described in the Nokia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU General
-** Public License version 3.0 as published by the Free Software Foundation
-** and appearing in the file LICENSE.GPL included in the packaging of this
-** file. Please review the following information to ensure the GNU General
-** Public License version 3.0 requirements will be met:
-** http://www.gnu.org/copyleft/gpl.html.
-**
-** Other Usage
-** Alternatively, this file may be used in accordance with the terms and
-** conditions contained in a signed written agreement between you and Nokia.
-**
-**
-**
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#ifndef QWINDOWSURFACE_DIRECTFB_H
-#define QWINDOWSURFACE_DIRECTFB_H
-
-#include <qplatformbackingstore_qpa.h>
-#include <private/qpixmap_blitter_p.h>
-
-#include <directfb.h>
-
-QT_BEGIN_NAMESPACE
-
-class QDirectFbWindowSurface : public QPlatformBackingStore
-{
-public:
- QDirectFbWindowSurface(QWindow *window);
- ~QDirectFbWindowSurface();
-
- QPaintDevice *paintDevice();
- void flush(QWindow *window, const QRegion &region, const QPoint &offset);
- void resize (const QSize &size, const QRegion &staticContents);
- bool scroll(const QRegion &area, int dx, int dy);
-
- void beginPaint(const QRegion &region);
- void endPaint(const QRegion &region);
-
-private:
- void lockSurfaceToImage();
-
- QPixmap *m_pixmap;
- QBlittablePlatformPixmap *m_pmdata;
-
- IDirectFBSurface *m_dfbSurface;
-};
-
-QT_END_NAMESPACE
-
-#endif