* @brief Blits the cached QImage produced by the last script execution. */
| 206 | * @brief Blits the cached QImage produced by the last script execution. |
| 207 | */ |
| 208 | void Widgets::Painter::paint(QPainter* painter) |
| 209 | { |
| 210 | if (m_cache.isNull()) |
| 211 | return; |
| 212 | |
| 213 | painter->drawImage(QRectF(0.0, 0.0, width(), height()), m_cache); |
| 214 | } |
| 215 | |
| 216 | //-------------------------------------------------------------------------------------------------- |
| 217 | // Public surface |