~phablet-team/address-book-service/trunk

« back to all changes in this revision

Viewing changes to updater/ab-notify-message.h

  • Committer: Renato Araujo Oliveira Filho
  • Date: 2015-10-08 17:25:57 UTC
  • mto: This revision was merged to the branch mainline in revision 169.
  • Revision ID: renato.filho@canonical.com-20151008172557-n0wiisyxtj15qy18
Do a syncevolution sync before continue with upgrader.
Does not remove old sources with disabled sync.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
    void show(const QString &title, const QString &msg, const QString &iconName);
33
33
    void askYesOrNo(const QString &title, const QString &msg, const QString &iconName);
 
34
    void askQuestion(const QString &title, const QString &iconName, const QString &question, const QMap<QString, QString> &actions);
34
35
    int closedReason() const;
35
36
 
36
37
Q_SIGNALS:
37
38
    void questionAccepted();
38
39
    void questionRejected();
 
40
    void questionReplied(const QString &action);
39
41
    void messageClosed();
40
42
 
41
43
private:
51
53
                                   ABNotifyMessage *self);
52
54
    static void onNotificationClosed(NotifyNotification *notification,
53
55
                                     ABNotifyMessage *self);
 
56
    static void onQuestionReplied(NotifyNotification *notification,
 
57
                                  char *action,
 
58
                                  ABNotifyMessage *self);
54
59
};