Unity 8
 All Classes Functions
listviewwithpageheader.h
1 /*
2  * Copyright (C) 2013 Canonical, Ltd.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 3.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef LISTVIEWWITHPAGEHEADER_H
18 #define LISTVIEWWITHPAGEHEADER_H
19 
20 #include <private/qquickitemchangelistener_p.h>
21 #include <private/qquickflickable_p.h>
22 
23 class QAbstractItemModel;
24 class QQuickNumberAnimation;
25 class QQmlChangeSet;
26 class QQmlDelegateModel;
27 
28 
46 class ListViewWithPageHeader : public QQuickFlickable, public QQuickItemChangeListener
47 {
48  Q_OBJECT
49  Q_PROPERTY(QAbstractItemModel *model READ model WRITE setModel NOTIFY modelChanged)
50  Q_PROPERTY(QQmlComponent *delegate READ delegate WRITE setDelegate NOTIFY delegateChanged)
51  Q_PROPERTY(QQuickItem *pageHeader READ header WRITE setHeader NOTIFY headerChanged)
52  Q_PROPERTY(QQmlComponent *sectionDelegate READ sectionDelegate WRITE setSectionDelegate NOTIFY sectionDelegateChanged)
53  Q_PROPERTY(QString sectionProperty READ sectionProperty WRITE setSectionProperty NOTIFY sectionPropertyChanged)
54  Q_PROPERTY(bool forceNoClip READ forceNoClip WRITE setForceNoClip NOTIFY forceNoClipChanged)
55  Q_PROPERTY(int stickyHeaderHeight READ stickyHeaderHeight NOTIFY stickyHeaderHeightChanged)
56  Q_PROPERTY(qreal headerItemShownHeight READ headerItemShownHeight NOTIFY headerItemShownHeightChanged)
57 
58  friend class ListViewWithPageHeaderTest;
59  friend class ListViewWithPageHeaderTestSection;
60  friend class ListViewWithPageHeaderTestExternalModel;
61 
62 public:
65 
66  QAbstractItemModel *model() const;
67  void setModel(QAbstractItemModel *model);
68 
69  QQmlComponent *delegate() const;
70  void setDelegate(QQmlComponent *delegate);
71 
72  QQuickItem *header() const;
73  void setHeader(QQuickItem *header);
74 
75  QQmlComponent *sectionDelegate() const;
76  void setSectionDelegate(QQmlComponent *delegate);
77 
78  QString sectionProperty() const;
79  void setSectionProperty(const QString &property);
80 
81  bool forceNoClip() const;
82  void setForceNoClip(bool noClip);
83 
84  int stickyHeaderHeight() const;
85  qreal headerItemShownHeight() const;
86 
87  Q_INVOKABLE void positionAtBeginning();
88  Q_INVOKABLE void showHeader();
89  Q_INVOKABLE QQuickItem *item(int modelIndex) const;
90 
91  // The index has to be created for this to try to do something
92  // Created items are those visible and the precached ones
93  // Returns if the item existed or not
94  Q_INVOKABLE bool maximizeVisibleArea(int modelIndex);
95  Q_INVOKABLE bool maximizeVisibleArea(int modelIndex, int itemHeight);
96 
97 Q_SIGNALS:
98  void modelChanged();
99  void delegateChanged();
100  void headerChanged();
101  void sectionDelegateChanged();
102  void sectionPropertyChanged();
103  void forceNoClipChanged();
104  void stickyHeaderHeightChanged();
105  void headerItemShownHeightChanged();
106 
107 protected:
108  void componentComplete() override;
109  void viewportMoved(Qt::Orientations orient) override;
110  qreal minYExtent() const override;
111  void itemGeometryChanged(QQuickItem *item, const QRectF &newGeometry, const QRectF &oldGeometry) override;
112  void itemImplicitHeightChanged(QQuickItem *item) override;
113  void updatePolish() override;
114 
115 private Q_SLOTS:
116  void itemCreated(int modelIndex, QObject *object);
117  void onContentHeightChanged();
118  void onContentWidthChanged();
119  void onHeightChanged();
120  void onModelUpdated(const QQmlChangeSet &changeSet, bool reset);
121  void contentYAnimationRunningChanged(bool running);
122 
123 private:
124  class ListItem
125  {
126  public:
127  qreal height() const;
128 
129  qreal y() const;
130  void setY(qreal newY);
131 
132  bool culled() const;
133  void setCulled(bool culled);
134 
135  QQuickItem *sectionItem() const { return m_sectionItem; }
136  void setSectionItem(QQuickItem *sectionItem);
137 
138  QQuickItem *m_item;
139  private:
140  QQuickItem *m_sectionItem;
141  };
142 
143  bool maximizeVisibleArea(ListItem *listItem, int listItemHeight);
144 
145  void createDelegateModel();
146 
147  void layout();
148  void refill();
149  bool addVisibleItems(qreal fillFrom, qreal fillTo, bool asynchronous);
150  bool removeNonVisibleItems(qreal bufferFrom, qreal bufferTo);
151  ListItem *createItem(int modelIndex, bool asynchronous);
152 
153  void adjustHeader(qreal diff);
154  void adjustMinYExtent();
155  void updateClipItem();
156  void headerHeightChanged(qreal newHeaderHeight, qreal oldHeaderHeight, qreal oldHeaderY);
157  ListItem *itemAtIndex(int modelIndex) const; // Returns the item at modelIndex if has been created
158  void releaseItem(ListItem *item);
159  void reallyReleaseItem(ListItem *item);
160  void updateWatchedRoles();
161  QQuickItem *getSectionItem(int modelIndex, bool alreadyInserted);
162  QQuickItem *getSectionItem(const QString &sectionText);
163 
164  QQmlDelegateModel *m_delegateModel;
165 
166  // Index we are waiting because we requested it asynchronously
167  int m_asyncRequestedIndex;
168 
169  // Used to only give a warning once if the delegate does not return objects
170  bool m_delegateValidated;
171 
172  // Visible indexes, [0] is m_firstValidIndex, [0+1] is m_firstValidIndex +1, ...
173  QList<ListItem *> m_visibleItems;
174  int m_firstVisibleIndex;
175 
176  qreal m_minYExtent;
177 
178  QQuickItem *m_clipItem;
179 
180  // If any of the heights has changed
181  // or new items have been added/removed
182  bool m_contentHeightDirty;
183 
184  QQuickItem *m_headerItem;
185  qreal m_previousContentY;
186  qreal m_previousHeaderImplicitHeight;
187  qreal m_headerItemShownHeight; // The height of header shown when the header is shown outside its topmost position
188  // i.e. it's being shown after dragging down in the middle of the list
189  enum ContentYAnimationType { ContentYAnimationShowHeader, ContentYAnimationMaximizeVisibleArea };
190  ContentYAnimationType contentYAnimationType;
191  QQuickNumberAnimation *m_contentYAnimation;
192 
193  QQmlComponent *m_sectionDelegate;
194  QString m_sectionProperty;
195  QQuickItem *m_topSectionItem;
196 
197  bool m_forceNoClip;
198  bool m_inLayout;
199  bool m_inContentHeightKeepHeaderShown;
200 
201  // Qt 5.0 doesn't like releasing the items just after itemCreated
202  // so we delay the releasing until the next updatePolish
203  QList<ListItem *> m_itemsToRelease;
204 };
205 
206 
207 #endif