欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

兼容Qt4/Qt5版本Qml控件RoundRectangle

程序员文章站 2024-02-17 13:51:10
...

可设置矩形圆角位置的控件。

RoundRectangle 备注
导入方法 文件导入
兼容性 QtQuick 1.x
QtQuick 2.x
继承 Rectangle

属性

描述

  • 通过设置一个radiusCorners值,可控制圆角方向。
RoundRectangle {
    width: 100; height: 50
    color: "lightblue"
    radius: 10
    radiusCorners: Qt.AlignLeft | Qt.AlignRight | Qt.AlignTop | Qt.AlignBottom
}

示例

兼容Qt4/Qt5版本Qml控件RoundRectangle

属性文档

  • radiusCorners: int
    设置圆角位置。
  • radiusCorners可使用的值:
常量 描述
Qt.AlignLeft 0x0001 与左边缘对齐
Qt.AlignRight 0x0002 与右边缘对齐
Qt.AlignTop 0x0020 与顶部对齐
Qt.AlignBottom 0x0040 与底部对齐
  • radiusCorners可使用的组合值范围:
radiusCorners 效果
0 兼容Qt4/Qt5版本Qml控件RoundRectangle
Qt.AlignLeft | Qt.AlignRight | Qt.AlignTop | Qt.AlignBottom
(默认值)
兼容Qt4/Qt5版本Qml控件RoundRectangle
Qt.AlignLeft | Qt.AlignTop | Qt.AlignBottom 兼容Qt4/Qt5版本Qml控件RoundRectangle
Qt.AlignRight | Qt.AlignTop | Qt.AlignBottom 兼容Qt4/Qt5版本Qml控件RoundRectangle
Qt.AlignLeft | Qt.AlignRight | Qt.AlignTop 兼容Qt4/Qt5版本Qml控件RoundRectangle
Qt.AlignLeft | Qt.AlignRight | Qt.AlignBottom 兼容Qt4/Qt5版本Qml控件RoundRectangle

关于更新

源码

/**********************************************************
Author: Qtbig哥
WeChat Official Accounts Platform: nicaixiaoxuesheng (文章首发)
Website: qtbig.com(后续更新)
Email:  aaa@qq.com
QQ交流群: 732271126
LISCENSE: MIT
**********************************************************/
import QtQuick 2.0

Rectangle {
    id: root
    property int radiusCorners: Qt.AlignLeft | Qt.AlignRight | Qt.AlignTop | Qt.AlignBottom /* Default: */
    /*
                            Qt.AlignLeft |      Qt.AlignLeft |      Qt.AlignRight |     Qt.AlignLeft |      Qt.AlignLeft |
                            Qt.AlignRight |     Qt.AlignTop |       Qt.AlignTop |       Qt.AlignRight |     Qt.AlignRight |
              None:0        Qt.AlignTop |       Qt.AlignBottom      Qt.AlignBottom      Qt.AlignTop         Qt.AlignBottom
                            Qt.AlignBottom
        *****************     *************       ***************   ***************       *************     *****************
        *               *    *             *     *              *   *              *     *             *    *               *
        *               *   *               *   *               *   *               *   *               *   *               *
        *               *   *               *   *               *   *               *   *               *   *               *
        *               *   *               *   *               *   *               *   *               *   *               *
        *               *   *               *   *               *   *               *   *               *   *               *
        *               *   *               *   *               *   *               *   *               *   *               *
        *               *    *             *     *              *   *              *    *               *    *             *
        *****************     *************       ***************   ***************     *****************     *************
    */

    Repeater {
        model: [ {
                x: 0,
                y: 0,
                visible: internal.aligns(Qt.AlignLeft | Qt.AlignTop),
                radius: root.radius
            },
            {
                x: root.width - root.radius,
                y: 0,
                visible: internal.aligns(Qt.AlignRight | Qt.AlignTop),
                radius: root.radius
            },
            {
                x: 0,
                y: root.height - root.radius,
                visible: internal.aligns(Qt.AlignLeft | Qt.AlignBottom),
                radius: root.radius
            },
            {
                x: root.width - root.radius,
                y: root.height - root.radius,
                visible: internal.aligns(Qt.AlignRight | Qt.AlignBottom),
                radius: root.radius
            } ]

        Rectangle {
            x: modelData.x; y: modelData.y
            width: modelData.radius; height: width
            visible: !modelData.visible
            color: parent.color
        }
    }

    QtObject {
        id: internal

        function aligns(direction) {
            return (root.radiusCorners & direction) === direction
        }
    }
}
相关标签: 圆角控件