Drop use of COMPAT_TQT_VERSION define

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/8/head
Michele Calgaro 11 months ago
parent a3a44b5dae
commit c45ec5d9bd
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -83,39 +83,6 @@ KDChartAxesPainter::~KDChartAxesPainter()
}
#if COMPAT_TQT_VERSION < 0x030000
TQDateTime dateTimeFromString( const TQString& s ) // only ISODate is allowed
{
int year( s.mid( 0, 4 ).toInt() );
int month( s.mid( 5, 2 ).toInt() );
int day( s.mid( 8, 2 ).toInt() );
TQString t( s.mid( 11 ) );
int hour( t.mid( 0, 2 ).toInt() );
int minute( t.mid( 3, 2 ).toInt() );
int second( t.mid( 6, 2 ).toInt() );
int msec( t.mid( 9, 3 ).toInt() );
if ( year && month && day )
return TQDateTime( TQDate( year, month, day ),
TQTime( hour, minute, second, msec ) );
else
return TQDateTime();
}
TQString dateTimeToString( const TQDateTime& dt ) // ISODate is returned
{
TQString date;
TQString month(
TQString::number( dt.date().month() ).rightJustify( 2, '0' ) );
TQString day(
TQString::number( dt.date().day() ).rightJustify( 2, '0' ) );
date = TQString::number( dt.date().year() ) + "-" + month + "-" + day;
TQString time;
time.sprintf( "%.2d:%.2d:%.2d",
dt.time().hour(), dt.time().minute(), dt.time().second() );
return date + "T" + time;
}
#endif
/**
ReCalculate the labels based upon given nDelta and nDeltaPix.
@ -577,11 +544,7 @@ void KDChartAxesPainter::paintAxes( TQPainter* painter,
if( sameDay ){
commonDtHeader = TQString::number( dLow.day() )
+ ". "
#if COMPAT_TQT_VERSION >= 0x030000
+ TQDate::longMonthName( dLow.month() )
#else
+ dLow.monthName( dLow.month() )
#endif
+ ' '
+ TQString::number( dLow.year() );
if( sameHour ){
@ -614,11 +577,7 @@ void KDChartAxesPainter::paintAxes( TQPainter* painter,
commonDtHeader += "00";
}
}else if( sameMonth )
#if COMPAT_TQT_VERSION >= 0x030000
commonDtHeader = TQDate::longMonthName( dLow.month() )
#else
commonDtHeader = dLow.monthName( dLow.month() )
#endif
+ ' '
+ TQString::number( dLow.year() );
else if( sameYear )
@ -689,14 +648,9 @@ void KDChartAxesPainter::paintAxes( TQPainter* painter,
TQString text;
if( cv.isDateTime ){
#if COMPAT_TQT_VERSION >= 0x030000
TQDateTime dt( TQDateTime::fromString( *it,
Qt::ISODate ) );
text = dt.toString( formatDT );
#else
TQDateTime dt( dateTimeFromString( *it ) );
text = dt.toString();
#endif
}else{
text = *it;
}
@ -1690,14 +1644,9 @@ void KDChartAxesPainter::paintAxes( TQPainter* painter,
++labelIter ) {
TQDateTime dt;
if( cv.isDateTime ){
#if COMPAT_TQT_VERSION >= 0x030000
dt = TQDateTime::fromString( *labelIter,
Qt::ISODate );
label = dt.toString( formatDT );
#else
dt = dateTimeFromString( *labelIter );
label = dt.toString();
#endif
}else{
label = *labelIter;
}
@ -3282,11 +3231,7 @@ void KDChartAxesPainter::calculateLabelTexts(
if( autoDtLabels )
labelTexts.append( "x" );
else
#if COMPAT_TQT_VERSION >= 0x030000
labelTexts.append( dt.toString( Qt::ISODate ) );
#else
labelTexts.append( dateTimeToString( dt ) );
#endif
bDone = (goDown ? (dt < dtLow ) : (dt > dtHigh));
/*if( bDone ){
dtHigh = dt;
@ -4430,12 +4375,7 @@ void KDChartAxesPainter::paintData( TQPainter* painter,
//ourClipRect.setRight( ourClipRect.right() - 1 );
const TQWMatrix & world = painter->worldMatrix();
ourClipRect =
#if COMPAT_TQT_VERSION >= 0x030000
world.mapRect( ourClipRect );
#else
world.map( ourClipRect );
#endif
ourClipRect = world.mapRect( ourClipRect );
painter->setClipRect( ourClipRect );
painter->translate( _dataRect.x(), _dataRect.y() );

@ -50,32 +50,15 @@
\brief Definition of global macros.
*/
#if defined(_MSC_VER)
#ifndef TQT_NO_STL
#define TQT_NO_STL // Avoid a name clash
#endif
#endif
// --- new format since TQt 3.0.0 or since 3.0.4 ???
#ifndef COMPAT_TQT_VERSION
#if defined(_MSC_VER)
#pragma message( "using TQt > 2.3.2" )
#endif
//#define COMPAT_TQT_VERSION [[[TQT_VERSION IS DEPRECATED]]]
#define COMPAT_TQT_VERSION 0x039999
#endif
// since TQt 3.1 they do /not/ include limits.h or climits on windows anymore
// so we must include that manually
#if COMPAT_TQT_VERSION > 0x030099
#if defined(_MSC_VER)
#include <climits>
#endif
#endif
#include <tqmemarray.h>
#include <tqptrlist.h>

@ -119,15 +119,9 @@ KDChartParams::KDChartParams()
setAllowOverlappingDataValueTexts( false );
#if COMPAT_TQT_VERSION >= 0x030100
setOptimizeOutputForScreen( false );
#else
setOptimizeOutputForScreen( true );
#endif
setGlobalLeading( 0,0,0,0 );
// Default type is bar charts
setChartType( Bar );

@ -95,13 +95,7 @@ void KDChartPiePainter::paintData( TQPainter* painter,
ourClipRect.addCoords( -1,-1,1,1 );
const TQWMatrix & world = painter->worldMatrix();
ourClipRect =
#if COMPAT_TQT_VERSION >= 0x030000
world.mapRect( ourClipRect );
#else
world.map( ourClipRect );
#endif
ourClipRect = world.mapRect( ourClipRect );
painter->setClipRect( ourClipRect );
// find which dataset to paint

@ -95,13 +95,7 @@ void KDChartPolarPainter::paintData( TQPainter* painter,
//
const TQWMatrix & world = painter->worldMatrix();
ourClipRect =
#if COMPAT_TQT_VERSION >= 0x030000
world.mapRect( ourClipRect );
#else
world.map( ourClipRect );
#endif
ourClipRect = world.mapRect( ourClipRect );
painter->setClipRect( ourClipRect );

@ -90,13 +90,7 @@ void KDChartRingPainter::paintData( TQPainter* painter,
TQRect ourClipRect( _dataRect );
const TQWMatrix & world = painter->worldMatrix();
ourClipRect =
#if COMPAT_TQT_VERSION >= 0x030000
world.mapRect( ourClipRect );
#else
world.map( ourClipRect );
#endif
ourClipRect = world.mapRect( ourClipRect );
ourClipRect.setTop(ourClipRect.top()-1);
ourClipRect.setLeft(ourClipRect.left()-1);
ourClipRect.setBottom(ourClipRect.bottom()+1);

@ -33,15 +33,8 @@
#include <KDChartGlobal.h>
#include <KDChartListTable.h>
#if COMPAT_TQT_VERSION >= 0x030000
#include <KDChartVectorTable.h>
#endif
#if COMPAT_TQT_VERSION >= 0x030000
typedef KDChartVectorTableData KDChartTableData;
#else
typedef KDChartListTableData KDChartTableData;
#endif
#endif

@ -72,12 +72,7 @@ double KDChartVectorSeries::maxValue( int coordinate, bool &ok ) const
double maxValue = 0.0;
bool bStart = true;
#if COMPAT_TQT_VERSION >= 0x030000
KDChartVectorSeries::const_iterator i;
#else
KDChartVectorSeries::ConstIterator i;
#endif
for ( i = begin(); i != end(); i ++ )
{
const KDChartData& d = *i;
@ -104,12 +99,7 @@ double KDChartVectorSeries::minValue( int coordinate, bool &ok ) const
double minValue = 0.0;
bool bStart = true;
#if COMPAT_TQT_VERSION >= 0x030000
KDChartVectorSeries::const_iterator i;
#else
KDChartVectorSeries::ConstIterator i;
#endif
for ( i = begin(); i != end(); i ++ )
{
const KDChartData& d = *i;

@ -227,10 +227,6 @@ namespace KDXML {
createIntNode( doc, fontElement, "PointSize", font.pointSize() );
createIntNode( doc, fontElement, "Weight", font.weight() );
createBoolNode( doc, fontElement, "Italic", font.italic() );
#if COMPAT_TQT_VERSION < 0x030000
// TQt 3 handles the charset internally.
createIntNode( doc, fontElement, "CharSet", font.charSet() );
#endif
}
@ -619,10 +615,6 @@ namespace KDXML {
font.setPointSize( pointSize );
font.setWeight( weight );
font.setItalic( italic );
#if COMPAT_TQT_VERSION < 0x030000
// TQt 3 handles charsets internally.
font.setCharSet( (TQFont::CharSet)charSet );
#endif
}
return ok;

Loading…
Cancel
Save