KMime::DateFormatter

Search for usage in LXR

#include <kmime_dateformatter.h>

Public Types

enum  FormatType { CTime , Localized , Fancy , Custom }
 

Public Member Functions

 DateFormatter (FormatType ftype=DateFormatter::Fancy)
 
 ~DateFormatter ()
 
QString customFormat () const
 
QString dateString (const QDateTime &dtime, const QString &lang=QString(), bool shortFormat=true) const
 
FormatType format () const
 
void setCustomFormat (const QString &format)
 
void setFormat (FormatType ftype)
 

Static Public Member Functions

static QString formatCurrentDate (DateFormatter::FormatType ftype, const QString &data=QString(), bool shortFormat=true)
 
static QString formatDate (DateFormatter::FormatType ftype, const QDateTime &t, const QString &data=QString(), bool shortFormat=true)
 

Detailed Description

A class for abstracting date formatting.

This class deals with different kinds of date display formats. The formats supported include:

  • fancy "Today 02:08:35"
  • ctime as with the ctime function, eg. "Sun Mar 31 02:08:35 2002"
  • localized according to the control center setting, eg. "2002-03-31 02:08"
  • custom "whatever you like"

Definition at line 56 of file kmime_dateformatter.h.

Member Enumeration Documentation

◆ FormatType

The different types of date formats.

Enumerator
CTime 

ctime "Sun Mar 31 02:08:35 2002"

Localized 

localized "2002-03-31 02:08"

Fancy 

fancy "Today 02:08:35"

Custom 

custom "whatever you like"

Definition at line 62 of file kmime_dateformatter.h.

Constructor & Destructor Documentation

◆ DateFormatter()

DateFormatter::DateFormatter ( FormatType ftype = DateFormatter::Fancy)
explicit

Constructs a date formatter with a default FormatType.

Parameters
ftypeis the default FormatType to use.

Definition at line 83 of file kmime_dateformatter.cpp.

◆ ~DateFormatter()

DateFormatter::~DateFormatter ( )
default

Destroys the date formatter.

Member Function Documentation

◆ customFormat()

QString DateFormatter::customFormat ( ) const

Returns the custom format string.

See also
setCustomFormat().

Definition at line 141 of file kmime_dateformatter.cpp.

◆ dateString()

QString DateFormatter::dateString ( const QDateTime & dtime,
const QString & lang = QString(),
bool shortFormat = true ) const

Constructs a formatted date string from QDateTime dtime.

Parameters
dtimeis the QDateTime to use for formatting.
langis the language, only used if FormatType is Localized.
shortFormatif true, create the short version of the date string, only used if FormatType is Localized.
Returns
a QString containing the formatted date.

Definition at line 101 of file kmime_dateformatter.cpp.

◆ format()

DateFormatter::FormatType DateFormatter::format ( ) const

Returns the FormatType currently set.

See also
setFormat().

Definition at line 91 of file kmime_dateformatter.cpp.

◆ formatCurrentDate()

QString DateFormatter::formatCurrentDate ( DateFormatter::FormatType ftype,
const QString & data = QString(),
bool shortFormat = true )
static

Convenience function, same as formatDate() but returns the current time formatted.

Parameters
ftypeis the FormatType to use.
datais either the format when FormatType is Custom, or language when FormatType is Localized.
shortFormatif true, create the short version of the date string, only used if FormatType is Localized.
Returns
a QString containing the formatted date.

Definition at line 223 of file kmime_dateformatter.cpp.

◆ formatDate()

QString DateFormatter::formatDate ( DateFormatter::FormatType ftype,
const QDateTime & t,
const QString & data = QString(),
bool shortFormat = true )
static

Convenience function dateString.

Parameters
ftypeis the FormatType to use.
tis the time to use for formatting.
datais either the format when FormatType is Custom, or language when FormatType is Localized.
shortFormatif true, create the short version of the date string, only used if FormatType is Localized.
Returns
a QString containing the formatted date.

Definition at line 213 of file kmime_dateformatter.cpp.

◆ setCustomFormat()

void DateFormatter::setCustomFormat ( const QString & format)

Sets the custom format for date to string conversions to format.

This method accepts the same arguments as QDateTime::toString(), but also supports the "Z" expression which is substituted with the RFC2822 (Section 3.3) style numeric timezone (-0500).

Parameters
formatis a QString containing the custom format.
See also
QDateTime::toString(), customFormat().

Definition at line 135 of file kmime_dateformatter.cpp.

◆ setFormat()

void DateFormatter::setFormat ( FormatType ftype)

Sets the date format to ftype.

Parameters
ftypeis the FormatType.
See also
format().

Definition at line 96 of file kmime_dateformatter.cpp.


The documentation for this class was generated from the following files:
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:20:12 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.