| Server IP : 180.180.241.3 / Your IP : 216.73.216.35 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files/Malwarebytes/Anti-Malware/QtQuick/Controls/Styles/Base/ |
Upload File : |
/****************************************************************************
**
** Copyright (C) 2021 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt Quick Extras module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:COMM$
**
** 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 The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** $QT_END_LICENSE$
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
**
****************************************************************************/
import QtQuick 2.2
QtObject {
id: handleStyleHelper
property color handleColorTop: "#969696"
property color handleColorBottom: Qt.rgba(0.9, 0.9, 0.9, 0.298)
property real handleColorBottomStop: 0.7
property color handleRingColorTop: "#b0b0b0"
property color handleRingColorBottom: "transparent"
/*!
If \a ctx is the only argument, this is equivalent to calling
paintHandle(\c ctx, \c 0, \c 0, \c ctx.canvas.width, \c ctx.canvas.height).
*/
function paintHandle(ctx, handleX, handleY, handleWidth, handleHeight) {
ctx.reset();
if (handleWidth < 0)
return;
if (arguments.length == 1) {
handleX = 0;
handleY = 0;
handleWidth = ctx.canvas.width;
handleHeight = ctx.canvas.height;
}
ctx.beginPath();
var gradient = ctx.createRadialGradient(handleX, handleY, 0,
handleX, handleY, handleWidth * 1.5);
gradient.addColorStop(0, handleColorTop);
gradient.addColorStop(handleColorBottomStop, handleColorBottom);
ctx.ellipse(handleX, handleY, handleWidth, handleHeight);
ctx.fillStyle = gradient;
ctx.fill();
/* Draw the ring gradient around the handle. */
// Clip first, so we only draw inside the ring.
ctx.beginPath();
ctx.ellipse(handleX, handleY, handleWidth, handleHeight);
ctx.ellipse(handleX + 2, handleY + 2, handleWidth - 4, handleHeight - 4);
ctx.clip();
ctx.beginPath();
gradient = ctx.createLinearGradient(handleX + handleWidth / 2, handleY,
handleX + handleWidth / 2, handleY + handleHeight);
gradient.addColorStop(0, handleRingColorTop);
gradient.addColorStop(1, handleRingColorBottom);
ctx.ellipse(handleX, handleY, handleWidth, handleHeight);
ctx.fillStyle = gradient;
ctx.fill();
}
}