| 1234567891011121314151617181920 |
- #include <QWidget>
- class Canvas : public QWidget
- {
- Q_OBJECT
- public:
- explicit Canvas( QWidget *parent = nullptr);
- ~Canvas();
- const QColor &backgroundColor() const;
- void setBackgroundColor(const QColor &newBackgroundColor);
- protected:
- void paintEvent(QPaintEvent *event) override;
- private:
- QColor m_backgroundColor;
- };
|