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
|
/*
* Copyright 2013 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3.
*
* 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authors:
* MichaĆ Sawicz <michal.sawicz@canonical.com>
*/
#ifndef LOMIRI_SHELL_NOTIFICATIONS_MODELINTERFACE_H
#define LOMIRI_SHELL_NOTIFICATIONS_MODELINTERFACE_H
#include <lomiri/SymbolExport.h>
#include <QtCore/QAbstractListModel>
namespace lomiri
{
namespace shell
{
namespace notifications
{
/**
\brief A list of notifications to be displayed
This model exposes all the notifications that are currently supposed to be on screen.
Not all of them might actually get on screen due to screen size, in which case the
NotificationInterface::displayed() signal will only be emitted after the notification was
actually displayed.
*/
class LOMIRI_API ModelInterface : public QAbstractListModel
{
Q_OBJECT
/**
\brief Whether a placeholder for confirmation should be kept at the beginning
When this is true, the model should hold a Placeholder type notification at the top
and update its data when an incoming Confirmation type notification is sent.
\accessors %confirmationPlaceholder(), setConfirmationPlaceholder(bool confirmationPlaceholder)
\notifier confirmationPlaceholderChanged(bool confirmationPlaceholder)
*/
Q_PROPERTY(bool confirmationPlaceholder READ confirmationPlaceholder WRITE setConfirmationPlaceholder NOTIFY confirmationPlaceholderChanged)
protected:
/// @cond
explicit ModelInterface(QObject* parent = 0) : QAbstractListModel(parent) { }
/// @endcond
public:
virtual ~ModelInterface() { }
/// @cond
virtual bool confirmationPlaceholder() const = 0;
virtual void setConfirmationPlaceholder(bool confirmationPlaceholder) = 0;
/// @endcond
/**
\brief NotificationModel's data-role enumeration.
The different data-entries of a notification element in the model.
*/
enum Roles {
RoleType = Qt::UserRole + 1, /** type of notification */
RoleUrgency = Qt::UserRole + 2, /** urgency of notification */
RoleId = Qt::UserRole + 3, /** internal id set by daemon */
RoleSummary = Qt::UserRole + 4, /** summary-text */
RoleBody = Qt::UserRole + 5, /** body-text */
RoleValue = Qt::UserRole + 6, /** 0..100 value */
RoleIcon = Qt::UserRole + 7, /** main icon */
RoleSecondaryIcon = Qt::UserRole + 8, /** optional 2nd icon */
RoleActions = Qt::UserRole + 9, /** attached optional actions */
RoleHints = Qt::UserRole + 10, /** attached hints */
RoleNotification = Qt::UserRole + 11 /** notification object */
};
Q_ENUM(Roles)
Q_SIGNALS:
/**
Emitted when value of the confirmationPlaceholder property has changed.
\param confirmationPlaceholder New value of the confirmationPlaceholder property.
*/
void confirmationPlaceholderChanged(bool confirmationPlaceholder);
};
} // namespace notifications
} // namespace shell
} // namespace lomiri
#endif // LOMIRI_SHELL_NOTIFICATIONS_MODELINTERFACE_H
|