Document Window::interactiveMoveOffset()

This commit is contained in:
Vlad Zahorodnii 2024-03-14 13:01:50 +02:00
parent 2d5a69b1d2
commit 5d313fdd7b

View file

@ -1590,6 +1590,13 @@ protected:
{
m_interactiveMoveResize.unrestricted = set;
}
/**
* Normalized position of the move resize anchor point relative to the top-left window
* corner when the move resize operation started.
*
* QPointF(0, 0) corresponds to the top left window corner, QPointF(1, 1) corresponds to
* the bottom right window corner.
*/
QPointF interactiveMoveOffset() const
{
return m_interactiveMoveResize.offset;