/usr/include/libindicate-qt/qindicateinterest.h is in libindicate-qt-dev 0.2.5.91-5.
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 | /*
* Qt wrapper for libindicate
*
* Copyright 2009 Canonical Ltd.
*
* Authors:
* - Aurélien Gâteau <aurelien.gateau@canonical.com>
*
* License: LGPL v2.1 or LGPL v3
*/
#ifndef QINDICATEINTEREST_H
#define QINDICATEINTEREST_H
// Qt
#include <QMetaType>
// Local
#include <qindicate_export.h>
namespace QIndicate
{
// Porting note: keep this synced with libindicate/interests.h
enum Interest {
InterestNone, /**< We're of no interest */
InterestServerDisplay, /**< Displays the server's existance to the user */
InterestServerSignal, /**< Will send signals to the server to be displayed */
InterestIndicatorDisplay, /**< Displays indicators to the user */
InterestIndicatorSignal, /**< Will return signals based on individual indicators being responded to */
InterestIndicatorCount, /**< Only displays a count of the indicators */
InterestLast /**< Makes merges and counting easier */
};
} // namespace
Q_DECLARE_METATYPE(QIndicate::Interest)
#endif /* QINDICATEINTEREST_H */
|