~ubuntu-branches/ubuntu/saucy/qtdeclarative-opensource-src/saucy

« back to all changes in this revision

Viewing changes to src/quick/items/qquickitemview_p_p.h

  • Committer: Package Import Robot
  • Author(s): Michał Sawicz
  • Date: 2013-09-11 14:03:31 UTC
  • mfrom: (4.1.4 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20130911140331-4lgbilnfzc06bdqd
Tags: 5.0.2-6ubuntu2
Add qtquick_delegate_creation_range_itemviews.patch to patchset.
(LP: #1217924)

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
};
119
119
 
120
120
 
121
 
class QQuickItemViewPrivate : public QQuickFlickablePrivate, public QQuickItemViewTransitionChangeListener, public QAnimationJobChangeListener
 
121
class Q_AUTOTEST_EXPORT QQuickItemViewPrivate : public QQuickFlickablePrivate, public QQuickItemViewTransitionChangeListener, public QAnimationJobChangeListener
122
122
{
123
123
    Q_DECLARE_PUBLIC(QQuickItemView)
124
124
public:
278
278
    qreal highlightRangeStart;
279
279
    qreal highlightRangeEnd;
280
280
    int highlightMoveDuration;
 
281
    qreal delegateCreationBegin;
 
282
    qreal delegateCreationEnd;
281
283
 
282
284
    QQmlComponent *headerComponent;
283
285
    FxViewItem *header;
309
311
    bool fillCacheBuffer : 1;
310
312
    bool inRequest : 1;
311
313
    bool runDelayedRemoveTransition : 1;
 
314
    bool delegateCreationBeginValid : 1;
 
315
    bool delegateCreationEndValid : 1;
312
316
 
313
317
protected:
314
318
    virtual Qt::Orientation layoutOrientation() const = 0;