21 #ifndef UNITY_SHELL_NOTIFICATIONS_MODELINTERFACE_H
22 #define UNITY_SHELL_NOTIFICATIONS_MODELINTERFACE_H
24 #include <unity/SymbolExport.h>
26 #include <QtCore/QAbstractListModel>
34 namespace notifications
60 Q_PROPERTY(
bool confirmationPlaceholder READ confirmationPlaceholder WRITE setConfirmationPlaceholder NOTIFY confirmationPlaceholderChanged)
64 explicit ModelInterface(QObject* parent = 0) : QAbstractListModel(parent) { }
71 virtual bool confirmationPlaceholder()
const = 0;
72 virtual void setConfirmationPlaceholder(
bool confirmationPlaceholder) = 0;
81 void confirmationPlaceholderChanged(
bool confirmationPlaceholder);
90 #endif // UNITY_SHELL_NOTIFICATIONS_MODELINTERFACE_H