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

PathView 在 Path 中显示模型数据。 它的委托是用于显示模型数据的视图。 它可以是一条简单的画线,也可以是带有文本的图像。 这可以产生流动的轮式数据呈现。 路径可以由以下一个或多个路径段构成:

PathAngleArc:带有半径和中心的弧
PathArc:带半径的圆弧
PathCurve:通过一组点的路径
PathCubic:Bézier 曲线上的路径
PathLine:一条直线
PathQuad:二次贝塞尔曲线
在这里,我们使用 PathArc 来显示一个类似轮子的物品模型,使用我们的 carModel:

有几个特殊的路径段可以增加和改变路径的属性:

PathAttribute:允许在路径上的某些点指定属性
PathMove:将路径移动到新位置

import QtQuick 2.12
import QtQuick.Window 2.12

Window {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")

    Rectangle {
        anchors.fill: parent

     GridView {
         id: gridView
         anchors.fill: parent
         anchors.margins: 30

         model: myListModel

         delegate:  Rectangle {
             id: theDelegate
             Text {
                 text: carModel
             }
             Image {
                 source: "/icons8-sedan-64.png"
             }
         }
         flow: GridView.FlowTopToBottom //FlowLeftToRight //FlowTopToBottom
         layoutDirection: Qt.LeftToRight // RightToLeft // LeftToRight
         verticalLayoutDirection: GridView.BottomToTop //  BottomToTop // TopToBottom
     }
     ListModel {
         id: myListModel
         ListElement { carModel: "Tesla" }
         ListElement { carModel: "Ford Sync 3" }
         ListElement { carModel: "Unknown" }
         ListElement { carModel: "Tesla" }
         ListElement { carModel: "Ford Sync 3" }
         ListElement { carModel: "Unknown" }
         ListElement { carModel: "Tesla" }
         ListElement { carModel: "Ford Sync 3" }
         ListElement { carModel: "Unknown" }
        }

    }
}

在这里插入图片描述

 flow: GridView.FlowLeftToRight //FlowTopToBottom  //FlowTopToBottom
         layoutDirection: Qt.LeftToRight // RightToLeft // LeftToRight
         verticalLayoutDirection: GridView.BottomToTop //  BottomToTop // TopToBottom

在这里插入图片描述

import QtQuick 2.12
import QtQuick.Window 2.12

Window {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")

    Rectangle {
        anchors.fill: parent

     PathView {
         id: pathView
         anchors.fill: parent
         anchors.margins: 30

         model: myListModel

         delegate:  Rectangle {
             id: theDelegate
             Text {
                 text: carModel
             }
             Image {
                 source: "/icons8-sedan-64.png"
             }
         }
         path: Path {
             startX: 0; startY: 40
             PathArc { x: 0; y: 400; radiusX:5; radiusY: 5 }
         }

     }

     ListModel {
         id: myListModel
         ListElement { carModel: "Tesla" }
         ListElement { carModel: "Ford Sync 3" }
         ListElement { carModel: "Unknown" }
         ListElement { carModel: "Tesla" }
         ListElement { carModel: "Ford Sync 3" }
         ListElement { carModel: "Unknown" }
         ListElement { carModel: "Tesla" }
         ListElement { carModel: "Ford Sync 3" }
         ListElement { carModel: "Unknown" }
     }
    }
}

在这里插入图片描述

  • 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、付费专栏及课程。

余额充值