Classes | Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes | List of all members
QwtDateScaleEngine Class Reference

A scale engine for date/time values. More...

#include <qwt_date_scale_engine.h>

Inheritance diagram for QwtDateScaleEngine:
Inheritance graph
[legend]

Classes

class  PrivateData
 

Public Member Functions

virtual void autoScale (int maxNumSteps, double &x1, double &x2, double &stepSize) const QWT_OVERRIDE
 
virtual QwtScaleDiv divideScale (double x1, double x2, int maxMajorSteps, int maxMinorSteps, double stepSize=0.0) const QWT_OVERRIDE
 Calculate a scale division for a date/time interval. More...
 
virtual QwtDate::IntervalType intervalType (const QDateTime &, const QDateTime &, int maxSteps) const
 
int maxWeeks () const
 
 QwtDateScaleEngine (Qt::TimeSpec=Qt::LocalTime)
 Constructor. More...
 
void setMaxWeeks (int)
 
void setTimeSpec (Qt::TimeSpec)
 
void setUtcOffset (int seconds)
 
void setWeek0Type (QwtDate::Week0Type)
 
Qt::TimeSpec timeSpec () const
 
QDateTime toDateTime (double) const
 
int utcOffset () const
 
QwtDate::Week0Type week0Type () const
 
virtual ~QwtDateScaleEngine ()
 Destructor. More...
 
- Public Member Functions inherited from QwtLinearScaleEngine
 QwtLinearScaleEngine (uint base=10)
 
virtual ~QwtLinearScaleEngine ()
 Destructor. More...
 
- Public Member Functions inherited from QwtScaleEngine
Attributes attributes () const
 
uint base () const
 
double lowerMargin () const
 
 QwtScaleEngine (uint base=10)
 
double reference () const
 
void setAttribute (Attribute, bool on=true)
 
void setAttributes (Attributes)
 
void setBase (uint base)
 
void setMargins (double lower, double upper)
 Specify margins at the scale's endpoints. More...
 
void setReference (double)
 Specify a reference point. More...
 
void setTransformation (QwtTransform *)
 
bool testAttribute (Attribute) const
 
QwtTransformtransformation () const
 
double upperMargin () const
 
virtual ~QwtScaleEngine ()
 Destructor. More...
 

Protected Member Functions

virtual QDateTime alignDate (const QDateTime &, double stepSize, QwtDate::IntervalType, bool up) const
 
- Protected Member Functions inherited from QwtLinearScaleEngine
QwtInterval align (const QwtInterval &, double stepSize) const
 Align an interval to a step size. More...
 
QList< double > buildMajorTicks (const QwtInterval &interval, double stepSize) const
 Calculate major ticks for an interval. More...
 
void buildMinorTicks (const QList< double > &majorTicks, int maxMinorSteps, double stepSize, QList< double > &minorTicks, QList< double > &mediumTicks) const
 Calculate minor/medium ticks for major ticks. More...
 
void buildTicks (const QwtInterval &, double stepSize, int maxMinorSteps, QList< double > ticks[QwtScaleDiv::NTickTypes]) const
 Calculate ticks for an interval. More...
 
- Protected Member Functions inherited from QwtScaleEngine
QwtInterval buildInterval (double value) const
 Build an interval around a value. More...
 
bool contains (const QwtInterval &, double value) const
 
double divideInterval (double intervalSize, int numSteps) const
 
QList< double > strip (const QList< double > &, const QwtInterval &) const
 

Private Member Functions

QwtScaleDiv buildScaleDiv (const QDateTime &, const QDateTime &, int maxMajorSteps, int maxMinorSteps, QwtDate::IntervalType) const
 

Private Attributes

PrivateDatad_data
 

Additional Inherited Members

- Public Types inherited from QwtScaleEngine
enum  Attribute {
  NoAttribute = 0x00, IncludeReference = 0x01, Symmetric = 0x02, Floating = 0x04,
  Inverted = 0x08
}
 
typedef QFlags< AttributeAttributes
 Layout attributes. More...
 

Detailed Description

A scale engine for date/time values.

QwtDateScaleEngine builds scales from a time intervals. Together with QwtDateScaleDraw it can be used for axes according to date/time values.

Years, months, weeks, days, hours and minutes are organized in steps with non constant intervals. QwtDateScaleEngine classifies intervals and aligns the boundaries and tick positions according to this classification.

QwtDateScaleEngine supports representations depending on Qt::TimeSpec specifications. The valid range for scales is limited by the range of QDateTime, that differs between Qt4 and Qt5.

Datetime values are expected as the number of milliseconds since 1970-01-01T00:00:00 Universal Coordinated Time - also known as "The Epoch", that can be converted to QDateTime using QwtDate::toDateTime().

See also
QwtDate, QwtPlot::setAxisScaleEngine(), QwtAbstractScale::setScaleEngine()

Definition at line 42 of file qwt_date_scale_engine.h.

Constructor & Destructor Documentation

QwtDateScaleEngine::QwtDateScaleEngine ( Qt::TimeSpec  timeSpec = Qt::LocalTime)
explicit

Constructor.

The engine is initialized to build scales for the given time specification. It classifies intervals > 4 weeks as >= Qt::Month. The first week of a year is defined like for QwtDate::FirstThursday.

Parameters
timeSpecTime specification
See also
setTimeSpec(), setMaxWeeks(), setWeek0Type()

Definition at line 751 of file qwt_date_scale_engine.cpp.

QwtDateScaleEngine::~QwtDateScaleEngine ( )
virtual

Destructor.

Definition at line 758 of file qwt_date_scale_engine.cpp.

Member Function Documentation

QDateTime QwtDateScaleEngine::alignDate ( const QDateTime &  dateTime,
double  stepSize,
QwtDate::IntervalType  intervalType,
bool  up 
) const
protectedvirtual

Align a date/time value for a step size

For Qt::Day alignments there is no "natural day 0" - instead the first day of the year is used to avoid jumping major ticks positions when panning a scale. For other alignments ( f.e according to the first day of the month ) alignDate() has to be overloaded.

Parameters
dateTimeDate/time value
stepSizeStep size
intervalTypeInterval type
upWhen true dateTime is ceiled - otherwise it is floored
Returns
Aligned date/time value

Definition at line 1112 of file qwt_date_scale_engine.cpp.

void QwtDateScaleEngine::autoScale ( int  maxNumSteps,
double &  x1,
double &  x2,
double &  stepSize 
) const
virtual

Align and divide an interval

The algorithm aligns and divides the interval into steps.

Datetime interval divisions are usually not equidistant and the calculated stepSize can only be used as an approximation for the steps calculated by divideScale().

Parameters
maxNumStepsMax. number of steps
x1First limit of the interval (In/Out)
x2Second limit of the interval (In/Out)
stepSizeStep size (Out)
See also
QwtScaleEngine::setAttribute()

Reimplemented from QwtLinearScaleEngine.

Definition at line 929 of file qwt_date_scale_engine.cpp.

QwtScaleDiv QwtDateScaleEngine::buildScaleDiv ( const QDateTime &  minDate,
const QDateTime &  maxDate,
int  maxMajorSteps,
int  maxMinorSteps,
QwtDate::IntervalType  intervalType 
) const
private

Definition at line 1052 of file qwt_date_scale_engine.cpp.

QwtScaleDiv QwtDateScaleEngine::divideScale ( double  x1,
double  x2,
int  maxMajorSteps,
int  maxMinorSteps,
double  stepSize = 0.0 
) const
virtual

Calculate a scale division for a date/time interval.

Parameters
x1First interval limit
x2Second interval limit
maxMajorStepsMaximum for the number of major steps
maxMinorStepsMaximum number of minor steps
stepSizeStep size. If stepSize == 0, the scaleEngine calculates one.
Returns
Calculated scale division

Reimplemented from QwtLinearScaleEngine.

Definition at line 996 of file qwt_date_scale_engine.cpp.

QwtDate::IntervalType QwtDateScaleEngine::intervalType ( const QDateTime &  minDate,
const QDateTime &  maxDate,
int  maxSteps 
) const
virtual

Classification of a date/time interval division

Parameters
minDateMinimum ( = earlier ) of the interval
maxDateMaximum ( = later ) of the interval
maxStepsMaximum for the number of steps
Returns
Interval classification

Definition at line 869 of file qwt_date_scale_engine.cpp.

int QwtDateScaleEngine::maxWeeks ( ) const
Returns
Upper limit for the number of weeks, when an interval can be classified as Qt::Week.
See also
setMaxWeeks(), week0Type()

Definition at line 855 of file qwt_date_scale_engine.cpp.

void QwtDateScaleEngine::setMaxWeeks ( int  weeks)

Set a upper limit for the number of weeks, when an interval can be classified as Qt::Week.

The default setting is 4 weeks.

Parameters
weeksUpper limit for the number of weeks
Note
In business charts a year is often divided into weeks [1-52]
See also
maxWeeks(), setWeek0Type()

Definition at line 845 of file qwt_date_scale_engine.cpp.

void QwtDateScaleEngine::setTimeSpec ( Qt::TimeSpec  timeSpec)

Set the time specification used by the engine

Parameters
timeSpecTime specification
See also
timeSpec(), setUtcOffset(), toDateTime()

Definition at line 769 of file qwt_date_scale_engine.cpp.

void QwtDateScaleEngine::setUtcOffset ( int  seconds)

Set the offset in seconds from Coordinated Universal Time

Parameters
secondsOffset in seconds
Note
The offset has no effect beside for the time specification Qt::OffsetFromUTC.
See also
QDate::utcOffset(), setTimeSpec(), toDateTime()

Definition at line 793 of file qwt_date_scale_engine.cpp.

void QwtDateScaleEngine::setWeek0Type ( QwtDate::Week0Type  week0Type)

Sets how to identify the first week of a year.

Parameters
week0TypeMode how to identify the first week of a year
See also
week0Type(), setMaxWeeks()
Note
week0Type has no effect beside for intervals classified as QwtDate::Week.

Definition at line 819 of file qwt_date_scale_engine.cpp.

Qt::TimeSpec QwtDateScaleEngine::timeSpec ( ) const
Returns
Time specification used by the engine
See also
setTimeSpec(), utcOffset(), toDateTime()

Definition at line 778 of file qwt_date_scale_engine.cpp.

QDateTime QwtDateScaleEngine::toDateTime ( double  value) const

Translate a double value into a QDateTime object.

For QDateTime result is bounded by QwtDate::minDate() and QwtDate::maxDate()

Returns
QDateTime object initialized with timeSpec() and utcOffset().
See also
timeSpec(), utcOffset(), QwtDate::toDateTime()

Definition at line 1302 of file qwt_date_scale_engine.cpp.

int QwtDateScaleEngine::utcOffset ( ) const
Returns
Offset in seconds from Coordinated Universal Time
Note
The offset has no effect beside for the time specification Qt::OffsetFromUTC.
See also
QDate::setUtcOffset(), setTimeSpec(), toDateTime()

Definition at line 805 of file qwt_date_scale_engine.cpp.

QwtDate::Week0Type QwtDateScaleEngine::week0Type ( ) const
Returns
Setting how to identify the first week of a year.
See also
setWeek0Type(), maxWeeks()

Definition at line 828 of file qwt_date_scale_engine.cpp.

Member Data Documentation

PrivateData* QwtDateScaleEngine::d_data
private

Definition at line 84 of file qwt_date_scale_engine.h.


The documentation for this class was generated from the following files:


plotjuggler
Author(s): Davide Faconti
autogenerated on Sun Dec 6 2020 04:02:50