Qt 4.8
Public Functions | Properties | List of all members
QWaylandReadbackEglWindow Class Reference

#include <qwaylandreadbackeglwindow.h>

Inheritance diagram for QWaylandReadbackEglWindow:
QWaylandShmWindow QWaylandWindow QPlatformWindow

Public Functions

QPlatformGLContextglContext () const
 Reimplement to return the glContext associated with the window. More...
 
 QWaylandReadbackEglWindow (QWidget *window, QWaylandReadbackEglIntegration *eglIntegration)
 
void setGeometry (const QRect &rect)
 This function is called by Qt whenever a window is moved or the window is resized. More...
 
WindowType windowType () const
 
- Public Functions inherited from QWaylandShmWindow
QPlatformGLContextglContext () const
 Reimplement to return the glContext associated with the window. More...
 
 QWaylandShmWindow (QWidget *widget)
 
WindowType windowType () const
 
 ~QWaylandShmWindow ()
 
- Public Functions inherited from QWaylandWindow
void attach (QWaylandBuffer *buffer)
 
void configure (uint32_t time, uint32_t edges, int32_t x, int32_t y, int32_t width, int32_t height)
 
void damage (const QRect &rect)
 
 QWaylandWindow (QWidget *window)
 
void setParent (const QPlatformWindow *parent)
 This function is called to enable native child widgets in QPA. More...
 
void setVisible (bool visible)
 Reimplemented in subclasses to show the surface if visible is true, and hide it if visible is false. More...
 
void waitForFrameSync ()
 
WId winId () const
 Reimplement in subclasses to return a handle to the native window. More...
 
struct wl_surface * wl_surface () const
 
 ~QWaylandWindow ()
 
- Public Functions inherited from QPlatformWindow
virtual QRect geometry () const
 Returnes the current geometry of a window. More...
 
virtual void lower ()
 Reimplement to be able to let Qt lower windows to the bottom of the desktop. More...
 
 QPlatformWindow (QWidget *tlw)
 Constructs a platform window with the given top level widget. More...
 
virtual void raise ()
 Reimplement to be able to let Qt rais windows to the top of the desktop. More...
 
virtual void requestActivateWindow ()
 Reimplement to let Qt be able to request activation/focus for a window. More...
 
virtual void setOpacity (qreal level)
 Reimplement to be able to let Qt set the opacity level of a window. More...
 
virtual Qt::WindowFlags setWindowFlags (Qt::WindowFlags flags)
 Requests setting the window flags of this surface to type. More...
 
virtual void setWindowTitle (const QString &title)
 Reimplement to set the window title to title. More...
 
QWidgetwidget () const
 Returnes the widget which belongs to the QPlatformWindow. More...
 
virtual Qt::WindowFlags windowFlags () const
 Returns the effective window flags for this surface. More...
 
virtual ~QPlatformWindow ()
 Virtual destructor does not delete its top level widget. More...
 

Properties

QWaylandReadbackEglContextmContext
 
QWaylandReadbackEglIntegrationmEglIntegration
 

Additional Inherited Members

- Public Types inherited from QWaylandWindow
enum  WindowType { Shm, Egl }
 
- Protected Functions inherited from QWaylandWindow
virtual void newSurfaceCreated ()
 
- Protected Variables inherited from QWaylandWindow
QWaylandBuffermBuffer
 
QWaylandDisplaymDisplay
 
QWaitCondition mFrameSyncWait
 
struct wl_surfacemSurface
 
bool mWaitingForFrameSync
 
WId mWindowId
 
- Protected Variables inherited from QPlatformWindow
QScopedPointer< QPlatformWindowPrivated_ptr
 

Detailed Description

Definition at line 50 of file qwaylandreadbackeglwindow.h.

Constructors and Destructors

◆ QWaylandReadbackEglWindow()

QWaylandReadbackEglWindow::QWaylandReadbackEglWindow ( QWidget window,
QWaylandReadbackEglIntegration eglIntegration 
)

Definition at line 46 of file qwaylandreadbackeglwindow.cpp.

47  : QWaylandShmWindow(window)
48  , mEglIntegration(eglIntegration)
49  , mContext(0)
50 {
51 }
QWaylandReadbackEglContext * mContext
QWaylandReadbackEglIntegration * mEglIntegration
QWaylandShmWindow(QWidget *widget)

Functions

◆ glContext()

QPlatformGLContext * QWaylandReadbackEglWindow::glContext ( ) const
virtual

Reimplement to return the glContext associated with the window.

Reimplemented from QPlatformWindow.

Definition at line 60 of file qwaylandreadbackeglwindow.cpp.

61 {
62  if (!mContext) {
63  QWaylandReadbackEglWindow *that = const_cast<QWaylandReadbackEglWindow *>(this);
65  }
66  return mContext;
67 }
QWaylandReadbackEglContext * mContext
QWaylandReadbackEglIntegration * mEglIntegration

◆ setGeometry()

void QWaylandReadbackEglWindow::setGeometry ( const QRect rect)
virtual

This function is called by Qt whenever a window is moved or the window is resized.

The resize can happen programatically(from ie. user application) or by the window manager. This means that there is no need to call this function specifically from the window manager callback, instead call QWindowSystemInterface::handleGeometryChange(QWidget *w, const QRect &newRect);

Reimplemented from QPlatformWindow.

Definition at line 69 of file qwaylandreadbackeglwindow.cpp.

70 {
72 
73  if (mContext)
75 }
QWaylandReadbackEglContext * mContext
virtual void setGeometry(const QRect &rect)
This function is called by Qt whenever a window is moved or the window is resized.

◆ windowType()

QWaylandWindow::WindowType QWaylandReadbackEglWindow::windowType ( ) const
virtual

Implements QWaylandWindow.

Definition at line 53 of file qwaylandreadbackeglwindow.cpp.

54 {
55  //We'r lying, maybe we should add a type, but for now it will do
56  //since this is primarly used by the windowsurface.
57  return QWaylandWindow::Egl;
58 }

Properties

◆ mContext

QWaylandReadbackEglContext* QWaylandReadbackEglWindow::mContext
private

Definition at line 63 of file qwaylandreadbackeglwindow.h.

Referenced by glContext(), and setGeometry().

◆ mEglIntegration

QWaylandReadbackEglIntegration* QWaylandReadbackEglWindow::mEglIntegration
private

Definition at line 62 of file qwaylandreadbackeglwindow.h.

Referenced by glContext().


The documentation for this class was generated from the following files: