-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVIPainter.pro
103 lines (88 loc) · 2.19 KB
/
VIPainter.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#-------------------------------------------------
#
# Project created by QtCreator 2017-06-26T11:24:42
#
#-------------------------------------------------
W
QT += core gui svg
CONFIG += c++11
CONFIG += c++11s
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = VIPainter
TEMPLATE = app
INCLUDEPATH += Shapes Tools
SOURCES += \
canvassizedialog.cpp \
changetextdialog.cpp \
main.cpp \
mainwindow.cpp \
penstyledialog.cpp \
vcursortype.cpp \
vdelegate.cpp \
vdocktitlebar.cpp \
vlistview.cpp \
Tools/vvector.cpp \
Tools/vtransform.cpp \
Tools/vsize.cpp \
Tools/vpoint.cpp \
Tools/vmagnification.cpp \
Tools/interpolation.cpp \
Shapes/vtype.cpp \
Shapes/vtext.cpp \
Shapes/vshape.cpp \
Shapes/vroundedrectangle.cpp \
Shapes/vpolyline.cpp \
Shapes/vpolygon.cpp \
Shapes/vpointgroupshape.cpp \
Shapes/vgroupshape.cpp \
Shapes/vellipse.cpp \
Shapes/vcurveline.cpp \
Shapes/vbeziercurve.cpp \
vectorgraphwidget.cpp \
paintwidget.cpp \
Tools/swapqueue.cpp \
imagewidget.cpp \
Shapes/vimageshape.cpp
HEADERS += \
canvassizedialog.h \
changetextdialog.h \
mainwindow.h \
penstyledialog.h \
vcursortype.h \
vdelegate.h \
vdocktitlebar.h \
vlistview.h \
Tools/vvector.h \
Tools/vtransform.h \
Tools/vsize.h \
Tools/vpoint.h \
Tools/vmagnification.h \
Shapes/vtype.h \
Shapes/vtext.h \
Shapes/vshape.h \
Shapes/vroundedrectangle.h \
Shapes/vpolyline.h \
Shapes/vpolygon.h \
Shapes/vpointgroupshape.h \
Shapes/vgroupshape.h \
Shapes/vellipse.h \
Shapes/vcurveline.h \
Shapes/vbeziercurve.h \
vectorgraphwidget.h \
paintwidget.h \
Tools/swapqueue.h \
imagewidget.h \
Shapes/vimageshape.h \
Tools/interpolation.h
FORMS += mainwindow.ui \
canvassizedialog.ui \
changetextdialog.ui \
penstyledialog.ui
RESOURCES += \
resourse.qrc
TRANSLATIONS+=translate/zh_CN.ts
RC_ICONS = icon/VIPainter.ico
inst.files += VIPainter
inst.path = /usr/bin
INSTALLS += inst
DISTFILES +=