• Eskil Abrahamsen Blomfeldt's avatar
    BorderImage: Fix white area when size changes after first paint · 87755d04
    Eskil Abrahamsen Blomfeldt authored
    
    When e.g. growing the size of the border image in an animation,
    we would not get updates of the paint nodes when the size was
    so small that the bounded target rect and source rect did not
    change (when the size was smaller than the sum of the borders).
    Since this can happen, we also need to detect when the size
    changes and update the node for this case.
    
    Task-number: QTBUG-42022
    Change-Id: I0849d740f363e66a3a4fd6de23fc9d7399ab0779
    Reviewed-by: default avatarGunnar Sletta <gunnar@sletta.org>
    87755d04
qquickimagebase_p_p.h 2.68 KiB
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtQuick module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
** $QT_END_LICENSE$
****************************************************************************/
#ifndef QQUICKIMAGEBASE_P_P_H
#define QQUICKIMAGEBASE_P_P_H
//  W A R N I N G
//  -------------
// This file is not part of the Qt API.  It exists purely as an
// implementation detail.  This header file may change from version to
// version without notice, or even be removed.
// We mean it.
#include "qquickimplicitsizeitem_p_p.h"
#include "qquickimagebase_p.h"
#include <QtQuick/private/qquickpixmapcache_p.h>
QT_BEGIN_NAMESPACE
class QNetworkReply;
class QQuickImageBasePrivate : public QQuickImplicitSizeItemPrivate
    Q_DECLARE_PUBLIC(QQuickImageBase)
public:
    QQuickImageBasePrivate()
      : status(QQuickImageBase::Null),
        progress(0.0),
        devicePixelRatio(1.0),
        async(false),
        cache(true),
        mirror(false)
71727374757677787980818283848586878889
QQuickPixmap pix; QQuickImageBase::Status status; QUrl url; qreal progress; QSize sourcesize; QSize oldSourceSize; qreal devicePixelRatio; QRectF oldInnerSourceRect; QRectF oldInnerTargetRect; QSizeF oldSize; bool async : 1; bool cache : 1; bool mirror: 1; }; QT_END_NAMESPACE #endif // QQUICKIMAGEBASE_P_P_H