The QWaylandSurface class represents a rectangular area on an output device. 更多...
| 頭: | #include <QWaylandSurface> |
| qmake: | QT += waylandcompositor |
| Since: | Qt 5.8 |
| 繼承: | QWaylandObject |
| enum | Origin { OriginTopLeft, OriginBottomLeft } |
|
|
| QWaylandSurface () | |
| QWaylandSurface (QWaylandCompositor * compositor , QWaylandClient * client , uint id , int version ) | |
| virtual | ~QWaylandSurface () |
| int | bufferScale () const |
| QWaylandClient * | client () const |
| QWaylandCompositor * | compositor () const |
| Qt::ScreenOrientation | contentOrientation () const |
| void | destroy () |
| void | frameStarted () |
| bool | hasContent () const |
| void | initialize (QWaylandCompositor * compositor , QWaylandClient * client , uint id , int version ) |
| QWaylandInputMethodControl * | inputMethodControl () const |
| bool | inputRegionContains (const QPoint & p ) const |
| bool | isCursorSurface () const |
| bool | isDestroyed () const |
| bool | isInitialized () const |
| void | markAsCursorSurface (bool cursorSurface ) |
| Origin | origin () const |
| QWaylandView * | primaryView () const |
| QWaylandSurfaceRole * | role () const |
| void | sendFrameCallbacks () |
| void | setPrimaryView (QWaylandView * view ) |
| QSize | size () const |
| QList<QWaylandView *> | views () const |
| void | updateSelection () |
| void | bufferScaleChanged () |
| void | childAdded (QWaylandSurface * child ) |
| void | configure (bool hasBuffer ) |
| void | contentOrientationChanged () |
| void | cursorSurfaceChanged () |
| void | damaged (const QRegion & rect ) |
| void | dragStarted (QWaylandDrag * drag ) |
| void | hasContentChanged () |
| void | offsetForNextFrame (const QPoint & offset ) |
| void | originChanged () |
| void | parentChanged (QWaylandSurface * newParent , QWaylandSurface * oldParent ) |
| void | redraw () |
| void | sizeChanged () |
| void | subsurfacePlaceAbove (QWaylandSurface * sibling ) |
| void | subsurfacePlaceBelow (QWaylandSurface * sibling ) |
| void | subsurfacePositionChanged (const QPoint & position ) |
| void | surfaceDestroyed () |
The QWaylandSurface class represents a rectangular area on an output device.
This class encapsulates a rectangular area of pixels that is displayed on an output device. It corresponds to the interface
wl_surface
in the Wayland protocol.
This enum type is used to specify the origin of a QWaylandSurface 's buffer.
| 常量 | 值 | 描述 |
|---|---|---|
QWaylandSurface::OriginTopLeft
|
0
|
The origin is the top left corner of the buffer. |
QWaylandSurface::OriginBottomLeft
|
1
|
The origin is the bottom left corner of the buffer. |
此特性保持 QWaylandSurface 's buffer scale. The buffer scale lets a client supply higher resolution buffer data for use on high resolution outputs.
訪問函數:
| int | bufferScale () const |
通知程序信號:
| void | bufferScaleChanged () |
This property holds the client using this QWaylandSurface .
訪問函數:
| QWaylandClient * | client () const |
This property holds the orientation of the QWaylandSurface 's contents.
訪問函數:
| Qt::ScreenOrientation | contentOrientation () const |
通知程序信號:
| void | contentOrientationChanged () |
另請參閱 QWaylandOutput::transform .
This property holds whether the QWaylandSurface is a cursor surface.
訪問函數:
| bool | isCursorSurface () const |
| void | markAsCursorSurface (bool cursorSurface ) |
通知程序信號:
| void | cursorSurfaceChanged () |
This property holds whether the QWaylandSurface has content.
訪問函數:
| bool | hasContent () const |
通知程序信號:
| void | hasContentChanged () |
This property holds the origin of the QWaylandSurface 's buffer, or QWaylandSurface::OriginTopLeft if the surface has no buffer.
訪問函數:
| Origin | origin () const |
通知程序信號:
| void | originChanged () |
此特性保持 QWaylandSurface 's size in pixels.
訪問函數:
| QSize | size () const |
通知程序信號:
| void | sizeChanged () |
Constructs a an uninitialized QWaylandSurface .
Constructs and initializes a QWaylandSurface 為給定 compositor and client ,和采用給定 id and version .
[虛擬]
QWaylandSurface::
~QWaylandSurface
()
銷毀 QWaylandSurface .
[signal]
void
QWaylandSurface::
childAdded
(
QWaylandSurface
*
child
)
Returns the compositor for this QWaylandSurface .
[signal]
void
QWaylandSurface::
configure
(
bool
hasBuffer
)
[signal]
void
QWaylandSurface::
damaged
(const
QRegion
&
rect
)
銷毀 QWaylandSurface .
[signal]
void
QWaylandSurface::
dragStarted
(
QWaylandDrag
*
drag
)
This signal is emitted when a drag has started from this surface.
Prepares all frame callbacks for sending.
初始化 QWaylandSurface 采用給定 compositor and client ,和采用給定 id and version .
返迴
true
若
QWaylandSurface
's input region contains the point
p
. Otherwise returns
false
.
返迴 true 若 QWaylandSurface has been destroyed. Otherwise returns false.
返迴 true 若 QWaylandSurface has been initialized.
[signal]
void
QWaylandSurface::
offsetForNextFrame
(const
QPoint
&
offset
)
[signal]
void
QWaylandSurface::
parentChanged
(
QWaylandSurface
*
newParent
,
QWaylandSurface
*
oldParent
)
Returns this QWaylandSurface 's primary view.
另請參閱 QWaylandView::advance () 和 QWaylandSurface::setPrimaryView ().
[signal]
void
QWaylandSurface::
redraw
()
Sends pending frame callbacks.
設置此 QWaylandSurface 's primary view to view , in case there are multiple views of this surface. The primary view is the view that governs the client's refresh rate. It takes care of discarding buffer references when QWaylandView::advance () is called. See the documentation for QWaylandView::advance () 瞭解更多細節。
In shell surface integrations, such as QWaylandWlShellIntegration and QWaylandXdgShellV5Integration, maximize and fullscreen requests from the client will only have an effect if the integration has the primary view of the surface.
另請參閱 primaryView () 和 QWaylandView::advance ().
[signal]
void
QWaylandSurface::
subsurfacePlaceAbove
(
QWaylandSurface
*
sibling
)
[signal]
void
QWaylandSurface::
subsurfacePlaceBelow
(
QWaylandSurface
*
sibling
)
[signal]
void
QWaylandSurface::
subsurfacePositionChanged
(const
QPoint
&
position
)
[signal]
void
QWaylandSurface::
surfaceDestroyed
()
[slot]
void
QWaylandSurface::
updateSelection
()
Updates the surface with the compositor's retained clipboard selection. Although this is done automatically when the surface receives keyboard focus, this function is useful for updating clients which do not have keyboard focus.
Returns the views for this QWaylandSurface .