##// END OF EJS Templates
removed barlabel. label visibility control is now per series instead of per set
removed barlabel. label visibility control is now per series instead of per set

File last commit:

r1050:9c2134399082
r1246:5512aa7e284d
Show More
qchartglobal.h
72 lines | 2.4 KiB | text/x-c | CLexer
Jani Honkonen
Add license headers
r794 /****************************************************************************
**
** Copyright (C) 2012 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the Qt Commercial Charts Add-on.
**
** $QT_BEGIN_LICENSE$
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/
Tero Ahola
Renamed to QtCommercialChart
r30 #ifndef CHARTGLOBAL_H
#define CHARTGLOBAL_H
#define QTCOMMERCIALCHART_VERSION_STR "1.0"
#define QTCOMMERCIALCHART_VERSION 0x01
#if defined(QTCOMMERCIALCHART_LIBRARY)
# define QTCOMMERCIALCHART_EXPORT Q_DECL_EXPORT
#else
# define QTCOMMERCIALCHART_EXPORT Q_DECL_IMPORT
#endif
Michal Klocek
Adds visibility hidden compilation flag, adds EXPORT_AUTO macro for interal unit testing
r1050
#if defined(BUILD_PRIVATE_UNIT_TESTS) && defined(QTCOMMERCIALCHART_LIBRARY)
# define QTCOMMERCIALCHART_AUTOTEST_EXPORT Q_DECL_EXPORT
#elif defined(BUILD_PRIVATE_UNIT_TESTS) && !defined(QTCOMMERCIALCHART_LIBRARY)
# define QTCOMMERCIALCHART_AUTOTEST_EXPORT Q_DECL_IMPORT
#else
# define QTCOMMERCIALCHART_AUTOTEST_EXPORT
#endif
Tero Ahola
Renamed to QtCommercialChart
r30
#define QTCOMMERCIALCHART_NAMESPACE QtCommercialChart
#ifdef QTCOMMERCIALCHART_NAMESPACE
# define QTCOMMERCIALCHART_BEGIN_NAMESPACE namespace QTCOMMERCIALCHART_NAMESPACE {
# define QTCOMMERCIALCHART_END_NAMESPACE }
# define QTCOMMERCIALCHART_USE_NAMESPACE using namespace QTCOMMERCIALCHART_NAMESPACE;
#else
# define QTCOMMERCIALCHART_BEGIN_NAMESPACE
# define QTCOMMERCIALCHART_END_NAMESPACE
# define QTCOMMERCIALCHART_USE_NAMESPACE
#endif
Michal Klocek
Updates development_build option
r998 #if defined(DEVELOPMENT_BUILD) && !defined(QT_NO_DEBUG)
Michal Klocek
Improves build configuration...
r996 #define CHART_DEBUG chartDebug(3,__LINE__,__FILE__,__FUNCTION__)
Michal Klocek
Refactors qchart , adds line animation...
r131
#include <stdarg.h>
#include <QDebug>
Michal Klocek
Improves build configuration...
r996 static inline QDebug chartDebug(int numargs,...)
Michal Klocek
Refactors qchart , adds line animation...
r131 {
va_list valist;
va_start(valist,numargs);
//for( int i = 0 ; i < numargs; i++ )
int line=va_arg(valist,int);
char* file=va_arg(valist,char*);
char* function=va_arg(valist,char*);
va_end(valist);
return qDebug()<<QString().append(function).append("(").append(file).append(":%1)").arg(line);
}
Michal Klocek
Improves build configuration...
r996 #endif
Tero Ahola
Renamed to QtCommercialChart
r30 #endif