~ubuntu-branches/ubuntu/saucy/unity8/saucy-proposed

« back to all changes in this revision

Viewing changes to plugins/AccountsService/AccountsService.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Michał Sawicz, Nick Dedekind, Albert Astals, Christopher Lee, Ubuntu daily release
  • Date: 2013-10-05 11:45:14 UTC
  • mfrom: (1.1.42)
  • Revision ID: package-import@ubuntu.com-20131005114514-fhwzgl2362zv4fmd
Tags: 7.82+13.10.20131005-0ubuntu1
[ Michał Sawicz ]
* Revert r376 that caused constant CPU usage due to the
  ActivityIndicator.

[ Nick Dedekind ]
* Removed indicators-client autopilot tests. (LP: #1234736)

[ Albert Astals ]
* Revert r388. (LP: #1235268)

[ Christopher Lee ]
* Removes passing -fullscreen to unity8 when on the device (as per bug
  #1235065). (LP: #1235065)

[ Ubuntu daily release ]
* Automatic snapshot from revision 396

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    Q_PROPERTY (QString backgroundFile
39
39
                READ backgroundFile
40
40
                NOTIFY backgroundFileChanged)
 
41
    Q_PROPERTY (bool statsWelcomeScreen
 
42
                READ statsWelcomeScreen
 
43
                NOTIFY statsWelcomeScreenChanged)
41
44
 
42
45
public:
43
46
    explicit AccountsService(QObject *parent = 0);
47
50
    bool demoEdges() const;
48
51
    void setDemoEdges(bool demoEdges);
49
52
    QString backgroundFile() const;
 
53
    bool statsWelcomeScreen() const;
50
54
 
51
55
Q_SIGNALS:
52
56
    void userChanged();
53
57
    void demoEdgesChanged();
54
58
    void backgroundFileChanged();
 
59
    void statsWelcomeScreenChanged();
55
60
 
56
61
private Q_SLOTS:
57
62
    void propertiesChanged(const QString &user, const QString &interface, const QStringList &changed);
60
65
private:
61
66
    void updateDemoEdges();
62
67
    void updateBackgroundFile();
 
68
    void updateStatsWelcomeScreen();
63
69
 
64
70
    AccountsServiceDBusAdaptor *m_service;
65
71
    QString m_user;
66
72
    bool m_demoEdges;
67
73
    QString m_backgroundFile;
 
74
    bool m_statsWelcomeScreen;
68
75
};
69
76
 
70
77
#endif