@@ -64,6 +64,10 mac: { | |||
|
64 | 64 | QMAKE_LFLAGS *= -mmacosx-version-min=10.5 |
|
65 | 65 | } |
|
66 | 66 | |
|
67 | linux-arm*: { | |
|
68 | DEFINES+=QT_ON_ARM | |
|
69 | } | |
|
70 | ||
|
67 | 71 | ##################### INCLUDES ############################################################ |
|
68 | 72 | |
|
69 | 73 |
@@ -30,6 +30,10 SUBDIRS += \ | |||
|
30 | 30 | donut \ |
|
31 | 31 | donutbreakdown \ |
|
32 | 32 | scrollchart \ |
|
33 | datetimeaxis \ | |
|
34 | 33 | populationpyramid \ |
|
35 | 34 | donutchart |
|
35 | ||
|
36 | !linux-arm*: { | |
|
37 | SUBDIRS += \ | |
|
38 | datetimeaxis | |
|
39 | } |
@@ -29,10 +29,13 | |||
|
29 | 29 | #include "declarativescatterseries.h" |
|
30 | 30 | #include "qbarcategoryaxis.h" |
|
31 | 31 | #include "qvalueaxis.h" |
|
32 | #include "qdatetimeaxis.h" | |
|
33 | 32 | #include "qcategoryaxis.h" |
|
34 | 33 | #include "qabstractseries_p.h" |
|
35 | 34 | |
|
35 | #ifndef QT_ON_ARM | |
|
36 | #include "qdatetimeaxis.h" | |
|
37 | #endif | |
|
38 | ||
|
36 | 39 | QTCOMMERCIALCHART_BEGIN_NAMESPACE |
|
37 | 40 | |
|
38 | 41 | /*! |
@@ -638,9 +641,11 void DeclarativeChart::createDefaultAxes(QAbstractSeries* series) | |||
|
638 | 641 | case QAbstractAxis::AxisTypeCategory: |
|
639 | 642 | m_chart->setAxisX(new QCategoryAxis(this), series); |
|
640 | 643 | break; |
|
644 | #ifndef QT_ON_ARM | |
|
641 | 645 | case QAbstractAxis::AxisTypeDateTime: |
|
642 | 646 | m_chart->setAxisX(new QDateTimeAxis(this), series); |
|
643 | 647 | break; |
|
648 | #endif | |
|
644 | 649 | default: |
|
645 | 650 | // Do nothing, assume AxisTypeNoAxis |
|
646 | 651 | break; |
@@ -659,9 +664,11 void DeclarativeChart::createDefaultAxes(QAbstractSeries* series) | |||
|
659 | 664 | case QAbstractAxis::AxisTypeCategory: |
|
660 | 665 | m_chart->setAxisY(new QCategoryAxis(this), series); |
|
661 | 666 | break; |
|
667 | #ifndef QT_ON_ARM | |
|
662 | 668 | case QAbstractAxis::AxisTypeDateTime: |
|
663 | 669 | m_chart->setAxisY(new QDateTimeAxis(this), series); |
|
664 | 670 | break; |
|
671 | #endif | |
|
665 | 672 | default: |
|
666 | 673 | // Do nothing, assume AxisTypeNoAxis |
|
667 | 674 | break; |
@@ -3,14 +3,12 | |||
|
3 | 3 | INCLUDEPATH += $$PWD \ |
|
4 | 4 | $$PWD/valueaxis \ |
|
5 | 5 | $$PWD/barcategoryaxis \ |
|
6 |
$$PWD/categoryaxis |
|
|
7 | $$PWD/datetimeaxis | |
|
6 | $$PWD/categoryaxis | |
|
8 | 7 | |
|
9 | 8 | DEPENDPATH += $$PWD \ |
|
10 | 9 | $$PWD/valueaxis \ |
|
11 | 10 | $$PWD/barcategoryaxis \ |
|
12 |
$$PWD/categoryaxis |
|
|
13 | $$PWD/datetimeaxis | |
|
11 | $$PWD/categoryaxis | |
|
14 | 12 | |
|
15 | 13 | SOURCES += \ |
|
16 | 14 | $$PWD/chartaxis.cpp \ |
@@ -23,10 +21,7 SOURCES += \ | |||
|
23 | 21 | $$PWD/barcategoryaxis/qbarcategoryaxis.cpp \ |
|
24 | 22 | $$PWD/categoryaxis/chartcategoryaxisx.cpp \ |
|
25 | 23 | $$PWD/categoryaxis/chartcategoryaxisy.cpp \ |
|
26 |
$$PWD/categoryaxis/qcategoryaxis.cpp |
|
|
27 | $$PWD/datetimeaxis/chartdatetimeaxisx.cpp \ | |
|
28 | $$PWD/datetimeaxis/chartdatetimeaxisy.cpp \ | |
|
29 | $$PWD/datetimeaxis/qdatetimeaxis.cpp | |
|
24 | $$PWD/categoryaxis/qcategoryaxis.cpp | |
|
30 | 25 | |
|
31 | 26 | PRIVATE_HEADERS += \ |
|
32 | 27 | $$PWD/chartaxis_p.h \ |
@@ -39,14 +34,31 PRIVATE_HEADERS += \ | |||
|
39 | 34 | $$PWD/barcategoryaxis/qbarcategoryaxis_p.h \ |
|
40 | 35 | $$PWD/categoryaxis/chartcategoryaxisx_p.h \ |
|
41 | 36 | $$PWD/categoryaxis/chartcategoryaxisy_p.h \ |
|
42 |
$$PWD/categoryaxis/qcategoryaxis_p.h |
|
|
43 | $$PWD/datetimeaxis/chartdatetimeaxisx_p.h \ | |
|
44 | $$PWD/datetimeaxis/chartdatetimeaxisy_p.h \ | |
|
45 | $$PWD/datetimeaxis/qdatetimeaxis_p.h | |
|
37 | $$PWD/categoryaxis/qcategoryaxis_p.h | |
|
46 | 38 | |
|
47 | 39 | PUBLIC_HEADERS += \ |
|
48 | 40 | $$PWD/qabstractaxis.h \ |
|
49 | 41 | $$PWD/valueaxis/qvalueaxis.h \ |
|
50 | 42 | $$PWD/barcategoryaxis/qbarcategoryaxis.h \ |
|
51 |
$$PWD/categoryaxis/qcategoryaxis.h |
|
|
43 | $$PWD/categoryaxis/qcategoryaxis.h | |
|
44 | ||
|
45 | !linux-arm*: { | |
|
46 | INCLUDEPATH += \ | |
|
47 | $$PWD/datetimeaxis | |
|
48 | ||
|
49 | DEPENDPATH += \ | |
|
50 | $$PWD/datetimeaxis | |
|
51 | ||
|
52 | SOURCES += \ | |
|
53 | $$PWD/datetimeaxis/chartdatetimeaxisx.cpp \ | |
|
54 | $$PWD/datetimeaxis/chartdatetimeaxisy.cpp \ | |
|
55 | $$PWD/datetimeaxis/qdatetimeaxis.cpp | |
|
56 | ||
|
57 | PRIVATE_HEADERS += \ | |
|
58 | $$PWD/datetimeaxis/chartdatetimeaxisx_p.h \ | |
|
59 | $$PWD/datetimeaxis/chartdatetimeaxisy_p.h \ | |
|
60 | $$PWD/datetimeaxis/qdatetimeaxis_p.h | |
|
61 | ||
|
62 | PUBLIC_HEADERS += \ | |
|
52 | 63 | $$PWD/datetimeaxis/qdatetimeaxis.h |
|
64 | } |
@@ -24,13 +24,16 | |||
|
24 | 24 | #include "qbarcategoryaxis.h" |
|
25 | 25 | #include "qvalueaxis_p.h" |
|
26 | 26 | #include "qcategoryaxis.h" |
|
27 | #include "qdatetimeaxis.h" | |
|
28 | 27 | #include "qabstractseries_p.h" |
|
29 | 28 | #include "qabstractbarseries.h" |
|
30 | 29 | #include "qstackedbarseries.h" |
|
31 | 30 | #include "qpercentbarseries.h" |
|
32 | 31 | #include "qpieseries.h" |
|
33 | 32 | |
|
33 | #ifndef QT_ON_ARM | |
|
34 | #include "qdatetimeaxis.h" | |
|
35 | #endif | |
|
36 | ||
|
34 | 37 | QTCOMMERCIALCHART_BEGIN_NAMESPACE |
|
35 | 38 | |
|
36 | 39 | ChartDataSet::ChartDataSet(QChart *parent):QObject(parent) |
@@ -187,9 +190,11 QAbstractAxis* ChartDataSet::createAxis(QAbstractAxis::AxisType type, Qt::Orient | |||
|
187 | 190 | case QAbstractAxis::AxisTypeCategory: |
|
188 | 191 | axis = new QCategoryAxis(this); |
|
189 | 192 | break; |
|
193 | #ifndef Q_WS_QWS | |
|
190 | 194 | case QAbstractAxis::AxisTypeDateTime: |
|
191 | 195 | axis = new QDateTimeAxis(this); |
|
192 | 196 | break; |
|
197 | #endif | |
|
193 | 198 | default: |
|
194 | 199 | axis = 0; |
|
195 | 200 | break; |
General Comments 0
You need to be logged in to leave comments.
Login now