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 = {}