Advertisement
Valderman

QDMGraphicsScene.hpp

Apr 11th, 2022
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. class QDMGraphicsScene : public QGraphicsScene
  2. {
  3.     public:
  4.         QDMGraphicsScene(QWidget* pobj = 0);
  5.  
  6.         void drawBackground(QPainter *painter, const QRectF &rect);
  7.     private:
  8.         const int32_t scnWidth  = 64'000;
  9.        const int32_t scnHeight = 64'000;
  10.         const uint8_t grdSize   = 20;
  11. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement