@@ -0,0 +1,35 | |||
|
1 | INCLUDEPATH += $$PWD | |
|
2 | DEPENDPATH += $$PWD | |
|
3 | ||
|
4 | SOURCES += \ | |
|
5 | $$PWD/bar.cpp \ | |
|
6 | $$PWD/barchartmodel.cpp \ | |
|
7 | $$PWD/barlabel.cpp \ | |
|
8 | $$PWD/barpresenter.cpp \ | |
|
9 | $$PWD/barpresenterbase.cpp \ | |
|
10 | $$PWD/percentbarpresenter.cpp \ | |
|
11 | $$PWD/qbarcategory.cpp \ | |
|
12 | $$PWD/qbarchartseries.cpp \ | |
|
13 | $$PWD/qbarset.cpp \ | |
|
14 | $$PWD/qpercentbarchartseries.cpp \ | |
|
15 | $$PWD/qstackedbarchartseries.cpp \ | |
|
16 | $$PWD/separator.cpp \ | |
|
17 | $$PWD/stackedbarpresenter.cpp | |
|
18 | ||
|
19 | PRIVATE_HEADERS += \ | |
|
20 | $$PWD/bar_p.h \ | |
|
21 | $$PWD/barchartmodel_p.h \ | |
|
22 | $$PWD/barlabel_p.h \ | |
|
23 | $$PWD/barpresenter.h \ | |
|
24 | $$PWD/barpresenterbase.h \ | |
|
25 | $$PWD/percentbarpresenter.h \ | |
|
26 | $$PWD/separator_p.h \ | |
|
27 | $$PWD/stackedbarpresenter.h | |
|
28 | ||
|
29 | PUBLIC_HEADERS += \ | |
|
30 | $$PWD/qbarcategory.h \ | |
|
31 | $$PWD/qbarchartseries.h \ | |
|
32 | $$PWD/qbarset.h \ | |
|
33 | $$PWD/qpercentbarchartseries.h \ | |
|
34 | $$PWD/qstackedbarchartseries.h | |
|
35 | No newline at end of file |
@@ -0,0 +1,14 | |||
|
1 | INCLUDEPATH += $$PWD | |
|
2 | DEPENDPATH += $$PWD | |
|
3 | ||
|
4 | SOURCES += \ | |
|
5 | $$PWD/linechartanimationitem.cpp \ | |
|
6 | $$PWD/linechartitem.cpp \ | |
|
7 | $$PWD/qlinechartseries.cpp | |
|
8 | ||
|
9 | PRIVATE_HEADERS += \ | |
|
10 | $$PWD/linechartitem_p.h \ | |
|
11 | $$PWD/linechartanimationitem_p.h | |
|
12 | ||
|
13 | PUBLIC_HEADERS += \ | |
|
14 | $$PWD/qlinechartseries.h No newline at end of file |
@@ -7,22 +7,6 QT += core \ | |||
|
7 | 7 | CONFIG += debug_and_release |
|
8 | 8 | CONFIG(debug, debug|release):TARGET = QtCommercialChartd |
|
9 | 9 | SOURCES += \ |
|
10 | barchart/bar.cpp \ | |
|
11 | barchart/barlabel.cpp \ | |
|
12 | barchart/barchartmodel.cpp \ | |
|
13 | barchart/separator.cpp \ | |
|
14 | barchart/qbarset.cpp \ | |
|
15 | barchart/qbarcategory.cpp \ | |
|
16 | barchart/qbarchartseries.cpp \ | |
|
17 | barchart/qpercentbarchartseries.cpp \ | |
|
18 | barchart/qstackedbarchartseries.cpp \ | |
|
19 | barchart/barpresenterbase.cpp \ | |
|
20 | barchart/barpresenter.cpp \ | |
|
21 | barchart/stackedbarpresenter.cpp \ | |
|
22 | barchart/percentbarpresenter.cpp \ | |
|
23 | linechart/linechartanimationitem.cpp \ | |
|
24 | linechart/linechartitem.cpp \ | |
|
25 | linechart/qlinechartseries.cpp \ | |
|
26 | 10 | qchart.cpp \ |
|
27 | 11 | axisitem.cpp \ |
|
28 | 12 | qchartview.cpp \ |
@@ -32,40 +16,22 SOURCES += \ | |||
|
32 | 16 | chartdataset.cpp \ |
|
33 | 17 | chartpresenter.cpp \ |
|
34 | 18 | domain.cpp |
|
35 | PRIVATE_HEADERS += linechart/linechartitem_p.h \ | |
|
36 | linechart/linechartanimationitem_p.h \ | |
|
37 | barchart/barlabel_p.h \ | |
|
38 | barchart/bar_p.h \ | |
|
39 | barchart/separator_p.h \ | |
|
40 | barchart/barchartmodel_p.h \ | |
|
41 | barchart/barpresenter.h \ | |
|
42 | barchart/stackedbarpresenter.h \ | |
|
43 | barchart/percentbarpresenter.h \ | |
|
44 | barchart/barpresenterbase.h \ | |
|
19 | PRIVATE_HEADERS += \ | |
|
45 | 20 | axisitem_p.h \ |
|
46 | 21 | chartitem_p.h \ |
|
47 | 22 | charttheme_p.h \ |
|
48 | 23 | chartdataset_p.h \ |
|
49 | 24 | chartpresenter_p.h \ |
|
50 | 25 | domain_p.h |
|
51 | PUBLIC_HEADERS += linechart/qlinechartseries.h \ | |
|
52 | barchart/qbarchartseries.h \ | |
|
53 | barchart/qstackedbarchartseries.h \ | |
|
54 | barchart/qpercentbarchartseries.h \ | |
|
55 | barchart/barpresenter.h \ | |
|
56 | barchart/qstackedbarchartseries.h \ | |
|
57 | barchart/stackedbarpresenter.h \ | |
|
58 | barchart/qpercentbarchartseries.h \ | |
|
59 | barchart/percentbarpresenter.h \ | |
|
60 | barchart/barpresenterbase.h \ | |
|
61 | barchart/qbarset.h \ | |
|
62 | barchart/qbarcategory.h \ | |
|
26 | PUBLIC_HEADERS += \ | |
|
63 | 27 | qchartseries.h \ |
|
64 | 28 | qchart.h \ |
|
65 | 29 | qchartglobal.h \ |
|
66 | 30 | qchartview.h \ |
|
67 | 31 | qchartaxis.h |
|
68 | 32 | |
|
33 | include(linechart/linechart.pri) | |
|
34 | include(barchart/barchart.pri) | |
|
69 | 35 | include(piechart/piechart.pri) |
|
70 | 36 | include(scatterseries/scatter.pri) |
|
71 | 37 |
General Comments 0
You need to be logged in to leave comments.
Login now