|
KD Chart 2 [rev.2.4]
|
#include <KDChartWidget.h>#include <KDChartWidget_p.h>#include <KDChartAbstractDiagram.h>#include <KDChartBarDiagram.h>#include <KDChartChart.h>#include <KDChartAbstractCoordinatePlane.h>#include <KDChartLineDiagram.h>#include <KDChartPlotter.h>#include <KDChartPieDiagram.h>#include <KDChartPolarDiagram.h>#include <KDChartRingDiagram.h>#include <KDChartLegend.h>#include <QDebug>#include <KDABLibFakes>Go to the source code of this file.
Defines | |
| #define | d d_func() |
| #define | SET_SUB_TYPE(DIAGRAM, SUBTYPE) |
| #define | TEST_SUB_TYPE(DIAGRAM, INTERNALSUBTYPE, SUBTYPE) |
Functions | |
| static bool | isCartesian (KDChart::Widget::ChartType type) |
| static bool | isPolar (KDChart::Widget::ChartType type) |
| #define d d_func() |
Definition at line 41 of file KDChartWidget.cpp.
Referenced by KDChart::Widget::addHeaderFooter(), KDChart::Widget::addLegend(), KDChart::Widget::allHeadersFooters(), KDChart::Widget::allLegends(), KDChart::Widget::coordinatePlane(), KDChart::Widget::firstHeaderFooter(), KDChart::Widget::globalLeadingBottom(), KDChart::Widget::globalLeadingLeft(), KDChart::Widget::globalLeadingRight(), KDChart::Widget::globalLeadingTop(), KDChart::Widget::legend(), KDChart::Widget::replaceHeaderFooter(), KDChart::Widget::replaceLegend(), KDChart::Widget::resetData(), KDChart::Widget::setDataCell(), KDChart::Widget::setDataset(), KDChart::Widget::setGlobalLeading(), KDChart::Widget::setGlobalLeadingBottom(), KDChart::Widget::setGlobalLeadingLeft(), KDChart::Widget::setGlobalLeadingRight(), KDChart::Widget::setGlobalLeadingTop(), KDChart::Widget::setType(), KDChart::Widget::takeHeaderFooter(), and KDChart::Widget::takeLegend().
| #define SET_SUB_TYPE | ( | DIAGRAM, | |
| SUBTYPE | |||
| ) |
{ \
if( DIAGRAM ) \
DIAGRAM->setType( SUBTYPE ); \
}
Referenced by KDChart::Widget::setSubType().
| #define TEST_SUB_TYPE | ( | DIAGRAM, | |
| INTERNALSUBTYPE, | |||
| SUBTYPE | |||
| ) |
{ \
if( DIAGRAM && DIAGRAM->type() == INTERNALSUBTYPE ) \
retVal = SUBTYPE; \
}
Referenced by KDChart::Widget::subType().
| static bool isCartesian | ( | KDChart::Widget::ChartType | type | ) | [static] |
Definition at line 382 of file KDChartWidget.cpp.
References KDChart::Widget::Bar, and KDChart::Widget::Line.
Referenced by KDChart::Widget::setType().
| static bool isPolar | ( | KDChart::Widget::ChartType | type | ) | [static] |
Definition at line 387 of file KDChartWidget.cpp.
References KDChart::Widget::Pie, KDChart::Widget::Polar, and KDChart::Widget::Ring.
Referenced by KDChart::Widget::setType().