Add signals for attribute and attachment changes.

This commit is contained in:
Felix Geyer
2012-04-09 23:52:06 +02:00
parent 57a953476a
commit 9aaec3499d
2 changed files with 57 additions and 1 deletions

View File

@@ -109,6 +109,18 @@ Q_SIGNALS:
*/
void dataChanged(Entry* entry);
void attributeChanged(QString key);
void attributeAboutToBeAdded(QString key);
void attributeAdded(QString key);
void attributeAboutToBeRemoved(QString key);
void attributeRemoved(QString key);
void attachmentChanged(QString key);
void attachmentAboutToBeAdded(QString key);
void attachmentAdded(QString key);
void attachmentAboutToBeRemoved(QString key);
void attachmentRemoved(QString key);
private:
Uuid m_uuid;
int m_iconNumber;