#include <qglobal.h>
#include "kdchart_export.h"
#include <QtAlgorithms>
#include <algorithm>
#include <Qt>
Go to the source code of this file.
#define KDAB_SET_OBJECT_NAME | ( | x | ) | __kdab__dereference_for_methodcall( x ).setObjectName( QLatin1String( #x ) ) |
Definition at line 47 of file KDChartGlobal.h.
#define KDCHART_DECLARE_DERIVED_DIAGRAM | ( | X, | |||
PLANE | ) |
#define KDCHART_DECLARE_PRIVATE_BASE_POLYMORPHIC | ( | X | ) |
#define KDCHART_DECLARE_PRIVATE_BASE_POLYMORPHIC_QWIDGET | ( | X | ) |
#define KDCHART_DECLARE_PRIVATE_BASE_VALUE | ( | X | ) |
#define KDCHART_DECLARE_PRIVATE_DERIVED | ( | X | ) |
#define KDCHART_DECLARE_PRIVATE_DERIVED_PARENT | ( | X, | |||
ParentType | ) |
#define KDCHART_DECLARE_PRIVATE_DERIVED_QWIDGET | ( | X | ) | KDCHART_DECLARE_PRIVATE_DERIVED_PARENT( X, QWidget* ) |
Definition at line 93 of file KDChartGlobal.h.
#define KDCHART_DECLARE_SWAP_BASE | ( | X | ) |
Value:
protected: \ void doSwap( X& other ) \ { qSwap( _d, other._d); }
Definition at line 225 of file KDChartGlobal.h.
#define KDCHART_DECLARE_SWAP_DERIVED | ( | X | ) | void swap( X& other ) { doSwap( other ); } |
Definition at line 230 of file KDChartGlobal.h.
#define KDCHART_DECLARE_SWAP_SPECIALISATION | ( | X | ) |
Value:
template <> inline void qSwap<X>( X & lhs, X & rhs ) \ { lhs.swap( rhs ); } \ namespace std { \ template <> inline void swap<X>( X & lhs, X & rhs ) \ { lhs.swap( rhs ); } \ }
Definition at line 210 of file KDChartGlobal.h.
#define KDCHART_DECLARE_SWAP_SPECIALISATION_DERIVED | ( | X | ) | KDCHART_DECLARE_SWAP_SPECIALISATION( X ) |
Definition at line 222 of file KDChartGlobal.h.
#define KDCHART_DERIVED_PRIVATE_FOOTER | ( | CLASS, | |||
PARENT | ) |
Value:
inline CLASS::CLASS( Private * p ) \ : PARENT( p ) { init(); } \ inline CLASS::Private * CLASS::d_func() \ { return static_cast<Private*>( PARENT::d_func() ); } \ inline const CLASS::Private * CLASS::d_func() const \ { return static_cast<const Private*>( PARENT::d_func() ); }
Definition at line 154 of file KDChartGlobal.h.
#define KDCHART_IMPL_DERIVED_DIAGRAM | ( | CLASS, | |||
PARENT, | |||||
PLANE | ) |
Value:
inline CLASS::CLASS( Private * p ) \ : PARENT( p ) { init(); } \ inline CLASS::CLASS( \ Private * p, QWidget* parent, PLANE * plane ) \ : PARENT( p, parent, plane ) { init(); } \ inline CLASS::Private * CLASS::d_func() \ { return static_cast<Private *>( PARENT::d_func() ); } \ inline const CLASS::Private * CLASS::d_func() const \ { return static_cast<const Private *>( PARENT::d_func() ); }
Definition at line 186 of file KDChartGlobal.h.
#define KDCHART_IMPL_DERIVED_PLANE | ( | CLASS, | |||
BASEPLANE | ) |
Value:
inline CLASS::CLASS( Private * p, Chart* parent ) \ : BASEPLANE( p, parent ) { init(); } \ inline CLASS::Private * CLASS::d_func() \ { return static_cast<Private *>( BASEPLANE::d_func() ); } \ inline const CLASS::Private * CLASS::d_func() const \ { return static_cast<const Private *>( BASEPLANE::d_func() ); }
Definition at line 198 of file KDChartGlobal.h.
T& __kdab__dereference_for_methodcall | ( | T * | o | ) |
T& __kdab__dereference_for_methodcall | ( | T & | o | ) |