/usr/include/KF5/KCalUtils/kcalutils/stringify.h is in libkf5calendarutils-dev 4:15.12.3-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | /*
This file is part of the kcalutils library.
Copyright (c) 2001-2003 Cornelius Schumacher <schumacher@kde.org>
Copyright (c) 2004 Reinhold Kainhofer <reinhold@kainhofer.com>
Copyright (c) 2009-2010 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.net>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
/**
@file
This file is part of the API for handling calendar data and provides
static functions for formatting Incidence properties for various purposes.
@author Cornelius Schumacher \<schumacher@kde.org\>
@author Reinhold Kainhofer \<reinhold@kainhofer.com\>
@author Allen Winter \<allen@kdab.com\>
*/
#ifndef KCALUTILS_STRINGIFY_H
#define KCALUTILS_STRINGIFY_H
#include "kcalutils_export.h"
#include <kcalcore/schedulemessage.h>
#include <kcalcore/todo.h>
namespace KCalCore
{
class Exception;
}
namespace KCalUtils
{
/**
@brief
Provides methods to format Incidence properties in various ways for display purposes.
*/
namespace Stringify
{
KCALUTILS_EXPORT QString incidenceType(KCalCore::Incidence::IncidenceType type);
/**
Returns the incidence Secrecy as translated string.
@see incidenceSecrecyList().
*/
KCALUTILS_EXPORT QString incidenceSecrecy(KCalCore::Incidence::Secrecy secrecy);
/**
Returns a list of all available Secrecy types as a list of translated strings.
@see incidenceSecrecy().
*/
KCALUTILS_EXPORT QStringList incidenceSecrecyList();
KCALUTILS_EXPORT QString incidenceStatus(KCalCore::Incidence::Status status);
KCALUTILS_EXPORT QString incidenceStatus(const KCalCore::Incidence::Ptr &incidence);
KCALUTILS_EXPORT QString scheduleMessageStatus(KCalCore::ScheduleMessage::Status status);
/**
Returns string containing the date/time when the to-do was completed,
formatted according to the user's locale settings.
@param shortfmt If true, use a short date format; else use a long format.
*/
KCALUTILS_EXPORT QString todoCompletedDateTime(const KCalCore::Todo::Ptr &todo,
bool shortfmt = false);
KCALUTILS_EXPORT QString attendeeRole(KCalCore::Attendee::Role role);
KCALUTILS_EXPORT QStringList attendeeRoleList();
KCALUTILS_EXPORT QString attendeeStatus(KCalCore::Attendee::PartStat status);
KCALUTILS_EXPORT QStringList attendeeStatusList();
/**
Build a QString time representation of a KDateTime object.
@param date The date to be formatted.
@param shortfmt If true, display info in short format.
@param spec Time spec to use.
@see formatDate(), formatDateTime().
*/
KCALUTILS_EXPORT QString formatTime(const KDateTime &dt, bool shortfmt = true,
const KDateTime::Spec &spec = KDateTime::Spec());
/**
Build a QString date representation of a KDateTime object.
@param date The date to be formatted.
@param shortfmt If true, display info in short format.
@param spec Time spec to use.
@see formatDate(), formatDateTime().
*/
KCALUTILS_EXPORT QString formatDate(const KDateTime &dt, bool shortfmt = true,
const KDateTime::Spec &spec = KDateTime::Spec());
/**
Build a QString date/time representation of a KDateTime object.
@param date The date to be formatted.
@param dateOnly If true, don't print the time fields; print the date fields only.
@param shortfmt If true, display info in short format.
@param spec Time spec to use.
@see formatDate(), formatTime().
*/
KCALUTILS_EXPORT QString formatDateTime(const KDateTime &dt,
bool dateOnly = false,
bool shortfmt = true,
const KDateTime::Spec &spec = KDateTime::Spec());
/**
Build a translated message representing an exception
*/
KCALUTILS_EXPORT QString errorMessage(const KCalCore::Exception &exception);
KCALUTILS_EXPORT QString secrecyName(KCalCore::Incidence::Secrecy secrecy);
KCALUTILS_EXPORT QStringList secrecyList();
} // namespace Stringify
} //namespace KCalUtils
#endif
|