simpletypes.lua

---@meta

---@class QRect
---@field x integer The x position of the rectangle.
---@field y integer The y position of the rectangle.
---@field width integer The width of the rectangle.
---@field height integer The height of the rectangle.
QRect = {}

---@class QSize
---@field width integer The width of the size.
---@field height integer The height of the size.
QSize = {}

---@class QPoint
---@field x integer The x position of the point.
---@field y integer The y position of the point.
QPoint = {}

---@class QPointF
---@field x number The x position of the floating point.
---@field y number The y position of the floating point.
QPointF = {}

---@class QSizeF
---@field width number The width of the floating point size.
---@field height number The height of the floating point size.
QSizeF = {}

---@class QRectF
---@field x number The x position of the floating point rectangle.
---@field y number The y position of the floating point rectangle.
---@field width number The width of the floating point rectangle.
---@field height number The height of the floating point rectangle.
QRectF = {}

©2024 The Qt Company Ltd. 本文档中的文档贡献属于其各自所有者。所提供的文档是根据自由软件基金会发布的 GNU 自由文档许可协议版本 1.3 的条款许可的。Qt 以及相关的标志是芬兰和/或其他国家的 The Qt Company Ltd 的商标。所有其他商标均归其各自所有者所有。