/* * This file is part of Fluid. * * Copyright (C) 2017 Pier Luigi Fiorini * Copyright (C) 2017 Michael Spencer * * $BEGIN_LICENSE:MPL2$ * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * $END_LICENSE$ */ #pragma once #ifdef FLUID_LOCAL #define FLUID_EXPORT #else #include #endif #include #include namespace Fluid { class FLUID_EXPORT DateUtils : public QObject { Q_OBJECT public: enum DurationFormat { Long, Short }; Q_ENUM(DurationFormat) enum DurationType { Seconds, Minutes, Hours, Any }; Q_ENUM(DurationType) static QString formatDuration(qlonglong duration, DurationFormat format = Short, DurationType type = Any); static QString friendlyTime(const QDateTime &time, bool standalone); }; } // namespace Fluid