Louvre
v2.12.0-1
C++ library for Wayland compositors
|
Cursor role for surfaces. More...
Public Member Functions | |
LCursorRole (const void *params) noexcept | |
Constructor of the LCursorRole class. More... | |
~LCursorRole () | |
Destructor of the LCursorRole class. More... | |
virtual const LPoint & | rolePos () const override |
Position of the surface given the role. More... | |
virtual void | hotspotChanged () |
Notifies a hotspot change. More... | |
const LPoint & | hotspot () const noexcept |
Cursor hotspot in surface coordinates. More... | |
const LPoint & | hotspotB () const noexcept |
Cursor hotspot in buffer coordinates. More... | |
Public Member Functions inherited from LBaseSurfaceRole | |
LBaseSurfaceRole (LFactoryObject::Type type, LResource *resource, LSurface *surface, UInt32 roleId) noexcept | |
Constructor of LBaseSurfaceRole class. More... | |
~LBaseSurfaceRole () | |
The LBaseSurfaceRole class destructor. More... | |
virtual LOutput * | exclusiveOutput () const |
The output to which the surface should be constrained. More... | |
UInt32 | roleId () const noexcept |
Role ID. More... | |
LSurface * | surface () const noexcept |
Returns the surface that has acquired the role provided in the constructor. More... | |
LResource * | resource () const |
Returns the Wayland resource for this role given in the constructor. More... | |
LClient * | client () const noexcept |
Client owner of the surface role. More... | |
Public Member Functions inherited from LFactoryObject | |
Type | factoryObjectType () const noexcept |
Gets the base factory object type. More... | |
Public Member Functions inherited from LObject | |
LObject (const LObject &) noexcept | |
Copy constructor. More... | |
LObject & | operator= (const LObject &) noexcept |
Assignment operator (each object has its own individual LWeak reference count). More... | |
void | setUserData (UIntPtr data) const noexcept |
Store an unsigned integer value/pointer. More... | |
UIntPtr | userData () const noexcept |
Retrieves the stored unsigned integer value/pointer. More... | |
Additional Inherited Members | |
Public Types inherited from LBaseSurfaceRole | |
enum | CommitOrigin |
Commit origin. More... | |
Public Types inherited from LFactoryObject | |
enum class | Type : Int32 |
Base factory object types. More... | |
Protected Member Functions inherited from LBaseSurfaceRole | |
virtual bool | acceptCommitRequest (CommitOrigin origin) |
Asks if the surface commit should be processed. More... | |
virtual void | handleSurfaceBufferAttach (wl_resource *buffer, Int32 x, Int32 y) |
Notifies a new surface buffer attachment. More... | |
virtual void | handleParentCommit () |
Notifies a parent surface commit. More... | |
virtual void | handleParentMappingChange () |
Notifies when the mapping state of the parent surface changes. More... | |
virtual void | handleParentChange () |
Notifies when the parent surface changes. More... | |
Protected Member Functions inherited from LObject | |
LObject () noexcept=default | |
Constructor of the LObject class. More... | |
virtual | ~LObject () noexcept |
Destructor of the LObject class. More... | |
void | notifyDestruction () noexcept |
Notifies the object destruction. More... | |
Protected Attributes inherited from LBaseSurfaceRole | |
LPoint | m_rolePos |
Variable that stores the surface position given the role. More... | |
Cursor role for surfaces.
Clients create this role when they want to assign the compositor cursor texture and hotspot.
Instead of rendering this surface, the LCursor class should be employed, which displays the cursor using hardware composition, which is more efficient.
When clients want to assign the cursor, they trigger the LPointer::setCursorRequest(), providing the cursor in the form of an LClientCursor. That class serves as a wrapper for this role, and when assigned to LCursor with LCursor::setCursor(), it automatically updates its buffer, size, hotspot, and visibility.
|
noexcept |
Constructor of the LCursorRole class.
params | Internal parameters provided in LCompositor::createObjectRequest(). |
~LCursorRole | ( | ) |
Destructor of the LCursorRole class.
Invoked after LCompositor::onAnticipatedObjectDestruction().
|
overridevirtual |
Position of the surface given the role.
The cursor position given the role is calculated by subtracting the hotspot from LSurface::pos().
This position is generally not used since the cursor is usually rendered using the LCursor class.
However, it could be useful in cases where you do not want to use the LCursor class.
Implements LBaseSurfaceRole.
|
virtual |
Notifies a hotspot change.
|
inlinenoexcept |
Cursor hotspot in surface coordinates.
|
inlinenoexcept |
Cursor hotspot in buffer coordinates.