~canonical-platform-qa/gallery-app/qmltests1

« back to all changes in this revision

Viewing changes to src/core/container-source.h

  • Committer: Leo Arias
  • Date: 2014-10-10 16:43:19 UTC
  • mfrom: (1060.1.41 gallery-app)
  • Revision ID: leo.arias@canonical.com-20141010164319-a2tl8pelvjkbel11
Merged with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    void attach(DataObject* object);
47
47
    void attachMany(const QSet<DataObject*>& objects);
48
48
 
49
 
    void detach(DataObject* object);
 
49
    void detach(DataObject* object, bool notify);
50
50
    void detachMany(const QSet<DataObject*>& objects);
51
51
 
52
52
    bool contains(DataObject* object) const;
60
60
 
61
61
private slots:
62
62
    void onContentsChanged(const QSet<DataObject*>* added,
63
 
                           const QSet<DataObject*>* removed);
 
63
                           const QSet<DataObject*>* removed,
 
64
                           bool notify);
64
65
 
65
66
private:
66
67
    ViewCollection m_contained;