2024-08-16 11:39:30 +08:00
|
|
|
#ifndef GLOBAL_H
|
|
|
|
|
#define GLOBAL_H
|
|
|
|
|
|
|
|
|
|
#include <QGraphicsItem>
|
|
|
|
|
|
2024-08-23 15:28:59 +08:00
|
|
|
const double g_dGriaphicsScene_Width = 1200;
|
|
|
|
|
const double g_dGriaphicsScene_Height = 900;
|
2024-08-16 11:39:30 +08:00
|
|
|
|
|
|
|
|
enum GraphicsItemType
|
|
|
|
|
{
|
|
|
|
|
GIT_base = QGraphicsItem::UserType + 1,
|
|
|
|
|
GIT_line = QGraphicsItem::UserType + 2,
|
|
|
|
|
GIT_rect = QGraphicsItem::UserType + 3,
|
|
|
|
|
GIT_roundRect = QGraphicsItem::UserType + 4,
|
|
|
|
|
GIT_ellipse = QGraphicsItem::UserType + 5,
|
|
|
|
|
GIT_polygon = QGraphicsItem::UserType + 6
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|