~blue-shell/blue-shell/kfilebox

« back to all changes in this revision

Viewing changes to src/dropboxclient.h

  • Committer: Eike Hein
  • Date: 2013-06-07 20:58:54 UTC
  • Revision ID: git-v1:e4785797809e0a5e3b98f13abfd9626956c7db82
More auth url notification fixes.

* Don't show the auth url notification in the initial stage of the first-run wizard.
* Handle more daemon output correctly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    inline QString getAuthUrl() const {return m_authUrl;}
39
39
        QStringList getRecentlyChangedFiles();
40
40
 
 
41
        bool showAuthUrlNotification() const { return m_showAuthUrlNotification; }
 
42
        void setShowAuthUrlNotification(bool show) { m_showAuthUrlNotification = show; }
 
43
 
41
44
private:
42
45
    QTimer* m_timer;
43
46
    QProcess* m_ps;
46
49
        QString m_dropboxDir; // from kfilebox config
47
50
    DropboxStatus prev_status;
48
51
        QStringList recently_changed;
 
52
        bool m_showAuthUrlNotification;
49
53
 
50
54
    SynchronousDropboxConnection* dc;
51
55
        ConfigurationDBDriver* dropbox_db;