mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
968f72f303
Added new basic class for date/time format. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5825 b45a01b8-16f6-495d-af2f-9b41ad6348cc
56 lines
1.9 KiB
C++
56 lines
1.9 KiB
C++
/****************************************************************
|
|
* This file is distributed under the following license:
|
|
*
|
|
* Copyright (c) 20120, RetroShare Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
****************************************************************/
|
|
|
|
#ifndef _DATETIME_H
|
|
#define _DATETIME_H
|
|
|
|
#include <QString>
|
|
|
|
class QDateTime;
|
|
class QDate;
|
|
class QTime;
|
|
|
|
class DateTime
|
|
{
|
|
public:
|
|
/* format long date and time e.g. "September 30, 2012" */
|
|
static QString formatLongDate(time_t dateValue);
|
|
static QString formatLongDate(const QDate &dateValue);
|
|
|
|
/* format long date and time e.g. "September 30, 2012 01:05 PM" */
|
|
static QString formatLongDateTime(time_t datetimeValue);
|
|
static QString formatLongDateTime(const QDateTime &datetimeValue);
|
|
|
|
/* format date e.g. "9/30/12", "30.09.12" */
|
|
static QString formatDate(time_t dateValue);
|
|
static QString formatDate(const QDate &dateValue);
|
|
|
|
/* format time e.g. "13:05:12" */
|
|
static QString formatTime(time_t timeValue);
|
|
static QString formatTime(const QTime &timeValue);
|
|
|
|
/* format date and time (see formatDate & formatTime) */
|
|
static QString formatDateTime(time_t datetimeValue);
|
|
static QString formatDateTime(const QDateTime &datetimeValue);
|
|
};
|
|
|
|
#endif
|