summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/eglfs/qeglfsscreen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/platforms/eglfs/qeglfsscreen.h')
-rw-r--r--src/plugins/platforms/eglfs/qeglfsscreen.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/platforms/eglfs/qeglfsscreen.h b/src/plugins/platforms/eglfs/qeglfsscreen.h
index 8c67bf1956..ca1a3ef91b 100644
--- a/src/plugins/platforms/eglfs/qeglfsscreen.h
+++ b/src/plugins/platforms/eglfs/qeglfsscreen.h
@@ -51,6 +51,7 @@
QT_BEGIN_NAMESPACE
class QPlatformOpenGLContext;
+class QEglFSCursor;
class QEglFSScreen : public QPlatformScreen //huh: FullScreenScreen ;) just to follow namespace
{
@@ -62,6 +63,8 @@ public:
int depth() const;
QImage::Format format() const;
+ QPlatformCursor *cursor() const;
+
QPlatformOpenGLContext *platformContext() const;
EGLSurface surface() const { return m_surface; }
@@ -77,6 +80,7 @@ private:
EGLDisplay m_dpy;
EGLSurface m_surface;
EGLNativeWindowType m_window;
+ QEglFSCursor *m_cursor;
};
QT_END_NAMESPACE