Hands-On Mobile and Embedded Development with Qt 5 学习笔记- Gradient

Gradient

Qt Graphical Effects 内置了对三种渐变类型的支持——锥形、线性和径向。RadialGradient 或任何与此相关的 QML 渐变由一系列 GradientStop 项目组成,这些项目指定颜色以及在渐变循环中从何处开始,数字 0 位于开头,数字 0 位于终点。

在这里插入图片描述

import QtQuick 2.11
import QtQuick.Window 2.11
import QtGraphicalEffects 1.0


Window {
    visible: true
    width: 1080
    height: 480
    color: "black"
    title:  "Hands-On Mobile and Embedded"
    Flow
    {
        Item
        {
            width: 250; height: 250
            anchors.verticalCenterOffset:  -100
            anchors.horizontalCenterOffset: -100
            ConicalGradient
            {
                anchors.fill: parent
                gradient: Gradient
                {

                    GradientStop { position: 0.0; color: "green" }
                    GradientStop { position: 0.3; color: "white" }
                    GradientStop { position: 0.6; color: "blue" }
                    GradientStop { position: 0.9; color: "red" }
                    GradientStop { position: 0.1; color: "yellow" }
                }

            }
            Text
            {
                color: "black"
                text: qsTr("ConicalGradient")
            }
        }
        Item
        {
            id: element
            x: 203
            y: 245
            width: 250; height: 250
            RadialGradient
            {
                anchors.fill: parent
                gradient: Gradient
                {
                    GradientStop { position: 0.0; color: "green" }
                    GradientStop { position: 0.3; color: "white" }
                    GradientStop { position: 0.6; color: "blue" }
                    GradientStop { position: 0.9; color: "red" }
                    GradientStop { position: 0.1; color: "yellow" }
                }

            }
            Text
            {
                color: "black"
                text: qsTr("RadialGradient")
            }
        }

        Item
        {
            id: element2
            x: 300
            y: 89
            width: 250; height: 250
            LinearGradient
            {
                anchors.fill: parent
                gradient: Gradient
                {
                    GradientStop { position: 0.0; color: "green" }
                    GradientStop { position: 0.3; color: "white" }
                    GradientStop { position: 0.6; color: "blue" }
                    GradientStop { position: 0.9; color: "red" }
                    GradientStop { position: 0.1; color: "yellow" }
                }

            }
            Text
            {
                color: "black"
                text: qsTr("LinearGradient")
            }
        }

    }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Hands-On High Performance Programming with Qt 5: Build cross-platform applications using concurrency, parallel programming, and memory management Author: Marek Krajewski Pub Date: 2019 ISBN: 978-1789531244 Pages: 384 Language: English Format: EPUB Size: 17 Mb Build efficient and fast Qt applications, target performance problems, and discover solutions to refine your code Achieving efficient code through performance tuning is one of the key challenges faced by many programmers. This book looks at Qt programming from a performance perspective. You’ll explore the performance problems encountered when using the Qt framework and means and ways to resolve them and optimize performance. The book highlights performance improvements and new features released in Qt 5.9, Qt 5.11, and 5.12 (LTE). You’ll master general computer performance best practices and tools, which can help you identify the reasons behind low performance, and the most common performance pitfalls experienced when using the Qt framework. In the following chapters, you’ll explore multithreading and asynchronous programming with C++ and Qt and learn the importance and efficient use of data structures. You’ll also get the opportunity to work through techniques such as memory management and design guidelines, which are essential to improve application performance. Comprehensive sections that cover all these concepts will prepare you for gaining hands-on experience of some of Qt’s most exciting application fields – the mobile and embedded development domains. By the end of this book, you’ll be ready to build Qt applications that are more efficient, concurrent, and performance-oriented in nature What you will learn Understand classic performance best practices Get to grips with modern hardware architecture and its performance impact Implement tools and procedures used in performance optimization Grasp Qt-specific work techniques for graphical user interface (GUI) and platform programming Make Transmission Control Protocol (TCP) and Hypertext Transfer Protocol (HTTP) performant and use the relevant Qt classes Discover the improvements Qt 5.9 (and the upcoming versions) holds in store Explore Qt’s graphic engine architecture, strengths, and weaknesses
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值