PowerDesigner/include/global.h

20 lines
461 B
C
Raw Permalink Normal View History

2024-08-16 11:39:30 +08:00
#ifndef GLOBAL_H
#define GLOBAL_H
#include <QGraphicsItem>
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