This file is indexed.

/usr/include/kalarmcal/kacalendar.h is in kdepimlibs5-dev 4:4.14.10-1ubuntu7.

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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/*
 *  kacalendar.h  -  KAlarm kcal library calendar and event categorisation
 *  This file is part of kalarmcal library, which provides access to KAlarm
 *  calendar data.
 *  Copyright © 2005-2012 by David Jarvie <djarvie@kde.org>
 *
 *  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.
 */

#ifndef KALARM_KACALENDAR_H
#define KALARM_KACALENDAR_H

#include "kalarmcal_export.h"
#ifndef KALARMCAL_USE_KRESOURCES
#include <kcalcore/filestorage.h>
#include <kcalcore/calendar.h>
#include <kcalcore/event.h>
#include <akonadi/collection.h>
#endif
#include <QtCore/QByteArray>
#include <QtCore/QStringList>

#ifndef KALARMCAL_USE_KRESOURCES
namespace KCalCore {
  class Alarm;
}
#else
namespace KCal {
  class Event;
  class Alarm;
  class CalendarLocal;
}
#endif

namespace KAlarmCal
{

#ifndef KALARMCAL_USE_KRESOURCES
extern const QLatin1String KALARMCAL_EXPORT MIME_BASE;      //!< The base mime type for KAlarm alarms
extern const QLatin1String KALARMCAL_EXPORT MIME_ACTIVE;    //!< The mime type for KAlarm active alarms
extern const QLatin1String KALARMCAL_EXPORT MIME_ARCHIVED;  //!< The mime type for KAlarm archived alarms
extern const QLatin1String KALARMCAL_EXPORT MIME_TEMPLATE;  //!< The mime type for KAlarm alarm templates
#endif

/**
 * @short Class representing attributes of a KAlarm calendar.
 *
 * KACalendar provides methods to check and convert the KAlarm calendar format
 * version, and to get and set the iCalendar product ID (which contains the
 * identity of the application which wrote the calendar).
 *
 * @author David Jarvie <djarvie@kde.org>
 */
namespace KACalendar
{
#ifndef KALARMCAL_USE_KRESOURCES
    /** Compatibility of resource backend calendar format. */
    enum Compatibility
    {
        Unknown      = 0,               //!< format not determined
        Current      = 0x02,            //!< in current KAlarm format
        Converted    = Current | 0x01,  //!< in current KAlarm format, but not yet saved
        Convertible  = 0x04,            //!< in an older KAlarm format
        Incompatible = 0x08             //!< not written by KAlarm, or in a newer KAlarm version
    };
    Q_DECLARE_FLAGS(Compat, Compatibility)
#else
    /** Compatibility of resource calendar format. */
    enum Compat
    {
        Current,       //!< in current KAlarm format
        Converted,     //!< in current KAlarm format, but not yet saved
        Convertible,   //!< in an older KAlarm format
        Incompatible,  //!< not written by KAlarm, or in a newer KAlarm version
        ByEvent        //!< individual events have their own compatibility status
    };
#endif

    /** Special calendar storage format version codes.
     *  Positive version values are actual KAlarm format version numbers.
     */
    enum
    {
        CurrentFormat      = 0,    //!< current KAlarm format
#ifndef KALARMCAL_USE_KRESOURCES
        MixedFormat        = -2,   //!< calendar may contain more than one version
#endif
        IncompatibleFormat = -1    //!< not written by KAlarm, or a newer KAlarm version
    };

    /** Check the version of KAlarm which wrote a calendar file, and convert
     *  it in memory to the current KAlarm format if possible. The storage
     *  file is not updated. The compatibility of the calendar format is
     *  indicated by the return value.
     *
     *  @param calendar       calendar stored in @p localFile
     *  @param localFile      full path of the calendar's file storage
     *  @param versionString  receives calendar's KAlarm version as a string
     *  @return CurrentFormat if the calendar is in the current KAlarm format;
     *          IncompatibleFormat calendar is not a KAlarm format or is an
                                   unknown KAlarm format;
     *          >0 the older KAlarm version which wrote the calendar
     */
#ifndef KALARMCAL_USE_KRESOURCES
    KALARMCAL_EXPORT int updateVersion(const KCalCore::FileStorage::Ptr&, QString& versionString);
#else
    KALARMCAL_EXPORT int updateVersion(KCal::CalendarLocal& calendar, const QString& localFile, QString& versionString);
#endif

#ifndef KALARMCAL_USE_KRESOURCES
    /** Set the KAlarm version custom property for a calendar. */
    KALARMCAL_EXPORT void setKAlarmVersion(const KCalCore::Calendar::Ptr&);
#else
    KALARMCAL_EXPORT void setKAlarmVersion(KCal::CalendarLocal&);
#endif

    /** Set the program name and version for use in calendars. */
    KALARMCAL_EXPORT void setProductId(const QByteArray& progName, const QByteArray& progVersion);

    /** Return the product ID string for use in calendars.
     *  setProductId() must have been called previously.
     */
    KALARMCAL_EXPORT QByteArray  icalProductId();

    extern const QByteArray APPNAME;    //!< The application name ("KALARM") used in calendar properties
} // namespace KACalendar

//

/**
 * @short Class representing type attributes of a KAlarm event.
 *
 * CalEvent provides methods to manipulate a KAEvent UID according to its category
 * (active, archived or template). It also provides methods to access KAEvent
 * mime types.
 *
 * @author David Jarvie <djarvie@kde.org>
 */
namespace CalEvent
{
    /** The category of an event, indicated by the middle part of its UID. */
    enum Type
    {
        EMPTY      = 0,       //!< the event has no alarms
        ACTIVE     = 0x01,    //!< the event is currently active
        ARCHIVED   = 0x02,    //!< the event is archived
        TEMPLATE   = 0x04,    //!< the event is an alarm template
        DISPLAYING = 0x08     //!< the event is currently being displayed
    };
    Q_DECLARE_FLAGS(Types, Type)

    KALARMCAL_EXPORT QString uid(const QString& id, Type);
#ifndef KALARMCAL_USE_KRESOURCES
    KALARMCAL_EXPORT Type    status(const KCalCore::Event::Ptr&, QString* param = 0);
    KALARMCAL_EXPORT void    setStatus(const KCalCore::Event::Ptr&, Type, const QString& param = QString());

    /** Return the alarm Type for a mime type string. */
    KALARMCAL_EXPORT Type    type(const QString& mimeType);
    /** Return the alarm Types for a list of mime type strings. */
    KALARMCAL_EXPORT Types   types(const QStringList& mimeTypes);
    /** Return the mime type string corresponding to an alarm Type. */
    KALARMCAL_EXPORT QString mimeType(Type);
    /** Return the mime type strings corresponding to alarm Types. */
    KALARMCAL_EXPORT QStringList mimeTypes(Types);
#else
    KALARMCAL_EXPORT Type    status(const KCal::Event*, QString* param = 0);
    KALARMCAL_EXPORT void    setStatus(KCal::Event*, Type, const QString& param = QString());
#endif
} // namespace CalEvent

Q_DECLARE_OPERATORS_FOR_FLAGS(CalEvent::Types)

} // namespace KAlarmCal

#endif // KALARM_KACALENDAR_H

// vim: et sw=4: