- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目标:
我有一个以嵌套矩形作为数据的 XML 文件。每个矩形都有 x 和 y 坐标以及宽度和高度。这些嵌套矩形的深度是未知的,可以是 1 或任何 XML 嵌套元素的限制。在下面的示例中,深度仅为 4,但对于真实数据,它是未知的。
<?xml version="1.0" encoding="UTF-8"?>
<rect x="0" y="0" width="600" height="200" name="scan">
<rect name="keyboard" x="0" y="50" width="450" height="150" >
<rect x="0" y="50" width="150" height="50" name="eta">
<rect x="0" y="0" width="50" height="50" name="e">
</rect>
<rect x="50" y="0" width="50" height="50" name="t">
</rect>
<rect x="100" y="0" width="50" height="50" name="a">
</rect>
</rect>
<rect x="150" y="50" width="150" height="50" name="oin">
<rect x="0" y="0" width="50" height="50" name="o">
</rect>
<rect x="50" y="0" width="50" height="50" name="i">
</rect>
<rect x="100" y="0" width="50" height="50" name="n">
</rect>
</rect>
<rect x="300" y="50" width="150" height="50" name="shr">
<rect x="0" y="0" width="50" height="50" name="s">
</rect>
<rect x="50" y="0" width="50" height="50" name="h">
</rect>
<rect x="100" y="0" width="50" height="50" name="r">
</rect>
</rect>
<rect x="0" y="100" width="150" height="50" name="dlc">
<rect x="0" y="0" width="50" height="50" name="d">
</rect>
<rect x="50" y="0" width="50" height="50" name="l">
</rect>
<rect x="100" y="0" width="50" height="50" name="c">
</rect>
</rect>
<rect x="150" y="100" width="150" height="50" name="umw">
<rect x="0" y="0" width="50" height="50" name="u">
</rect>
<rect x="50" y="0" width="50" height="50" name="m">
</rect>
<rect x="100" y="0" width="50" height="50" name="w">
</rect>
</rect>
<rect x="300" y="100" width="150" height="50" name="fgy">
<rect x="0" y="0" width="50" height="50" name="f">
</rect>
<rect x="50" y="0" width="50" height="50" name="g">
</rect>
<rect x="100" y="0" width="50" height="50" name="y">
</rect>
</rect>
<rect x="0" y="150" width="150" height="50" name="pbv">
<rect x="0" y="0" width="50" height="50" name="p">
</rect>
<rect x="50" y="0" width="50" height="50" name="b">
</rect>
<rect x="100" y="0" width="50" height="50" name="v">
</rect>
</rect>
<rect x="150" y="150" width="150" height="50" name="kjx">
<rect x="0" y="0" width="50" height="50" name="k">
</rect>
<rect x="50" y="0" width="50" height="50" name="j">
</rect>
<rect x="100" y="0" width="50" height="50" name="x">
</rect>
</rect>
<rect x="300" y="150" width="150" height="50" name="qz">
<rect x="0" y="0" width="50" height="50" name="q">
</rect>
<rect x="50" y="0" width="50" height="50" name="z">
</rect>
<rect x="100" y="0" width="50" height="50" name=".">
</rect>
</rect>
</rect>
</rect>
我正在尝试使用 QAbstractItemModel 为这些矩形创建一个模型,并让 QML 显示带有 Repeater 的矩形。我的目标是根据它们的位置、大小和关系,在 View 中显示这些矩形相互重叠。
实现尝试
经过一些研究,我尝试使用 QAbstractItemModel 将 XML 数据建模为树,并使用 QTreeView 显示它们。我成功地显示了 QTreeView 中每个矩形的所有数据,但我想改为绘制这些矩形。如果我尝试将每个树项目委托(delegate)为矩形,这些矩形只是简单地堆叠在一起。
这是我目前所拥有的 python 代码:
import os
import sys
from PyQt5.QtCore import (
QAbstractItemModel, QFile,
QIODevice, QModelIndex, Qt,
QUrl, QVariant
)
from PyQt5.QtGui import QGuiApplication
from PyQt5.QtQuick import QQuickView
from PyQt5.QtQml import QQmlApplicationEngine,QQmlEngine, QQmlComponent
import xml.etree.ElementTree as ET
class TreeItem(object):
def __init__(self, data, parent=None):
self.parentItem = parent
self.itemData = data
self.childItems = []
def appendChild(self, item):
self.childItems.append(item)
def child(self, row):
return self.childItems[row]
def childCount(self):
return len(self.childItems)
def children(self):
return self.childItems
def columnCount(self):
return len(self.itemData)
def data(self, column):
try:
return self.itemData[column]
except IndexError:
return None
def parent(self):
return self.parentItem
def row(self):
if self.parentItem:
return self.parentItem.childItems.index(self)
return 0
class TreeModel(QAbstractItemModel):
def __init__(self, parent=None):
super(TreeModel, self).__init__(parent)
self.rootItem = TreeItem(("Name", "Description", "Top", "Left", "Width", "Height"))
self.setupModelDataXML(self.rootItem)
def roleNames(self):
roles = {
Qt.UserRole + 1: b"name",
Qt.UserRole + 2: b"description",
Qt.UserRole + 3: b"top",
Qt.UserRole + 4: b"left",
Qt.UserRole + 5: b"width",
Qt.UserRole + 6: b"height",
Qt.UserRole + 7: b"count",
Qt.UserRole + 8: b"children"
}
return roles
def columnCount(self, parent):
if parent.isValid():
return parent.internalPointer().columnCount()
else:
return self.rootItem.columnCount()
def data(self, index, role):
if not index.isValid():
return None
item = index.internalPointer()
if role == Qt.UserRole + 1:
return item.data(0)
elif role == Qt.UserRole + 2:
return item.data(1)
elif role == Qt.UserRole + 3:
return item.data(2)
elif role == Qt.UserRole + 4:
return item.data(3)
elif role == Qt.UserRole + 5:
return item.data(4)
elif role == Qt.UserRole + 6:
return item.data(5)
elif role == Qt.UserRole + 7:
return item.childCount()
elif role == Qt.UserRole + 8:
return item.children()
def flags(self, index):
if not index.isValid():
return Qt.NoItemFlags
return Qt.ItemIsEnabled | Qt.ItemIsSelectable
def headerData(self, section, orientation, role):
if orientation == Qt.Horizontal and role == Qt.DisplayRole:
return self.rootItem.data(section)
return None
def index(self, row, column, parent):
if not self.hasIndex(row, column, parent):
return QModelIndex()
if not parent.isValid():
parentItem = self.rootItem
else:
parentItem = parent.internalPointer()
childItem = parentItem.child(row)
if childItem:
return self.createIndex(row, column, childItem)
else:
return QModelIndex()
def parent(self, index):
if not index.isValid():
return QModelIndex()
childItem = index.internalPointer()
parentItem = childItem.parent()
if parentItem == self.rootItem:
return QModelIndex()
return self.createIndex(parentItem.row(), 0, parentItem)
def rowCount(self, parent):
if parent.column() > 0:
return 0
if not parent.isValid():
parentItem = self.rootItem
else:
parentItem = parent.internalPointer()
return parentItem.childCount()
def parseXML(self, element, parent):
name = element.attrib["name"]
x = element.attrib["x"]
y = element.attrib["y"]
width = element.attrib["width"]
height = element.attrib["height"]
node = TreeItem((element.tag, name, x, y, width, height), parent)
parent.appendChild(node)
for child in element:
self.parseXML(child, node)
def setupModelDataXML(self, parent):
dir_path = os.path.dirname(os.path.realpath(__file__))
tree = ET.parse(dir_path + '/' + 'rect.xml')
root = tree.getroot()
self.parseXML(root, parent)
if __name__ == '__main__':
model = TreeModel()
app = QGuiApplication(sys.argv)
engine = QQmlApplicationEngine()
ctx = engine.rootContext()
ctx.setContextProperty("tmodel", model)
dir_path = os.path.dirname(os.path.realpath(__file__))
engine.load(dir_path + '/' + 'simpletreemodel.qml')
win = engine.rootObjects()[0]
win.show()
sys.exit(app.exec_())
这是 QML 文件:
import QtQuick 2.5
import QtQuick.Controls 1.4
import QtQml.Models 2.2
import QtQuick.Window 2.2
ApplicationWindow {
width: 480
height: 640
TreeView {
id: treeView
anchors.fill: parent
anchors.margins: 6
anchors.top: parent.top
anchors.horizontalCenter: parent.horizontalCenter
model: tmodel
TableViewColumn {
title: "Name"
role: "name"
resizable: true
}
TableViewColumn {
title: "Description"
role: "description"
resizable: true
}
TableViewColumn {
title: "Top"
role: "top"
resizable: true
}
TableViewColumn {
title: "Left"
role: "left"
resizable: true
}
TableViewColumn {
title: "Width"
role: "width"
resizable: true
}
TableViewColumn {
title: "height"
role: "height"
resizable: true
}
TableViewColumn {
title: "Count"
role: "count"
resizable: true
}
}
}
问题:
是否可以重新使用 QTreeView 来显示这些矩形?如果没有,我可以使用中继器来显示具有当前模型实现的矩形吗?我尝试使用中继器,但子角色作为 QVariant 列表返回,我不知道如何处理。
最佳答案
我没有使用您的模型,而是使用了 QStandardItemModel,因为它更易于使用(我避免测试您的代码)。对于 QML,我使用了 Repeater、Loaders 和 DelegateModel 的组合作为 this answer指出。
主.py
import os
import sys
from PyQt5 import QtCore, QtGui, QtQml
import xml.etree.ElementTree as ET
class XMLModel(QtGui.QStandardItemModel):
def loadFromPath(self, filename, attributes):
roles = {}
for i, attr in enumerate(attributes):
roles[QtCore.Qt.UserRole + i] = attr.encode()
self.setItemRoleNames(roles)
tree = ET.parse(filename)
root = tree.getroot()
self.parseXML(root)
def parseXML(self, element, parent=None):
if parent is None:
parent = self.invisibleRootItem()
it = QtGui.QStandardItem()
parent.appendRow(it)
for role, tag in self.roleNames().items():
value = element.attrib[tag.data().decode()]
it.setData(value, role)
for child in element:
self.parseXML(child, it)
if __name__ == '__main__':
dir_path = os.path.dirname(os.path.realpath(__file__))
app = QtGui.QGuiApplication(sys.argv)
model = XMLModel()
model.loadFromPath(os.path.join(dir_path, 'rect.xml'), ["name", "x", "y", "width", "height"])
engine = QtQml.QQmlApplicationEngine()
ctx = engine.rootContext()
ctx.setContextProperty("tmodel", model)
file_path = os.path.join(dir_path, 'simpletreemodel.qml')
engine.load(QtCore.QUrl.fromLocalFile(file_path))
if not engine.rootObjects():
sys.exit(-1)
sys.exit(app.exec_())
simpletreemodel.qml
import QtQuick 2.5
import QtQuick.Controls 1.4
import QtQuick.Window 2.2
ApplicationWindow {
width: 480
height: 640
visible: true
Repeater {
model: RectDelegateModel{
model: tmodel
}
}
}
RectDelegateModel.qml
import QtQml.Models 2.2
import QtQuick 2.5
DelegateModel {
id: mainModel
delegate: Rectangle{
Repeater {
id: repeater
model: childrenLoader.item
}
x: model.x
y: model.y
width: model.width
height: model.height
color: Qt.rgba(Math.random(), Math.random(), Math.random(), 1)
Text {
anchors.centerIn: parent
text: model.name
}
Loader {
id: childrenLoader
asynchronous: true
}
Component.onCompleted: {
if (model && model.hasModelChildren) {
childrenLoader.setSource("RectDelegateModel.qml", {
"model": mainModel.model,
"rootIndex": mainModel.modelIndex(index)
});
}
}
}
}
关于python - QML 嵌套矩形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54858514/
我正在尝试将外框内的框(坐标)放入。我已经使用交集联合方法完成了工作,并且我希望其他方法也可以这样做。 另外,能否请您告诉我如何比较这两个内盒? 最佳答案 通过比较边界框和内部框的左上角和右下角的坐标
我希望输出看起来像这样: 如何安排这些循环以获得两个三角形数字模式?我该如何改进我的代码。 JAVA 中的新功能:-) for (int i = 1; icount; num--) {
我需要将 map 边界存储在 MySQL 数据库中。我花了一些时间在地理空间扩展的文档上,但是学习所有相关信息(WKT、WKB 等)很困难,而且就我而言没有必要。我只需要一种方法来存储坐标矩形并稍后将
在 gnuplot 中,我可以通过绘制一个矩形 set object rect from x0,y0 to x1,y1 如何从文件中读取坐标 x0,x1,y0,y1? 最佳答案 一种方法是将设置矩形的
我正在尝试创建一个填充了水平线或垂直线的矩形。 矩形的宽度是动态的,所以我不能使用图像刷。 如果有人知道任何解决方案,请告诉我。 最佳答案 我想出了一个直接的方法来做到这一点;最后,我使用以下视觉画笔
这个 SVG 在所有浏览器中看起来都很模糊,在所有缩放级别。 在 Chrome、Safari 和 Firefox 中,它看起来像这样: 如果放大,您可以看到笔画有两个像素的宽度,即使默认笔画
我正在尝试在ggplot2图上添加多个阴影/矩形。在这个可重现的示例中,我只添加了3,但是使用完整数据可能需要总计一百。 这是我的原始数据的子集-在名为temp的数据框中-dput在问题的底部:
我有一个包含驻留在 Viewport3D 中的 3D 对象的应用程序,我希望用户能够通过在屏幕上拖动一个矩形来选择它们。 我尝试在 Viewport3D 上应用 GeometryHitTestPara
如何才能使 WPF 矩形的顶角变成圆角? 我创建了一个边框并设置了 CornerRadius 属性,并在边框内添加了矩形,但它不起作用,矩形不是圆角的。 最佳答案 您遇到的问题是矩形“溢
我正在尝试使用此 question 中的代码旋转 Leaflet 矩形。 rotatePoints (center, points, yaw) { const res = [] const a
我有以下图像。 this image 我想删除数字周围的橙色框/矩形,并保持原始图像干净,没有任何橙色网格/矩形。 以下是我当前的代码,但没有将其删除。 Mat mask = new Mat(); M
我发现矩形有些不好笑: 比方说,给定的是左、上、右和下坐标的值,所有这些坐标都旨在包含在内。 所以,计算宽度是这样的: width = right - left + 1 到目前为止,一切都很合乎逻辑。
所以,我一直在学习 Java,但我还是个新手,所以请耐心等待。我最近的目标是图形化程序,这次是对键盘控制的测试。由于某种原因,该程序不会显示矩形。通常,paint() 会独立运行,但由于某种原因它不会
我正在阅读 website 中的解决方案 3 (2D)并试图将其翻译成java代码。 java是否正确请评论。我使用的是纬度和经度坐标,而不是 x 和 y 坐标(注意:loc.getLongitude
我似乎无法删除矩形上的边框!请参阅下面的代码,我正在使用 PDFannotation 创建链接。这些链接都有效,但每个矩形都有一个边框。 PdfAnnotation annotation; Recta
如何在保持原始位图面积的同时将位图旋转给定的度数。即,我旋转宽度:100,高度:200 的位图,我的最终结果将是一个更大的图像,但旋转部分的面积仍然为 100*200 最佳答案 图形转换函数非常适合这
我创建了矩形用户控件,我在我的应用程序中使用了这个用户控件。在我的应用程序中,我正在处理图像以进行不同的操作,例如从图像中读取条形码等。这里我有两种处理图像的可能性,一种正在处理整个图像,另一个正在处
好的,我该如何开始呢? 我有一个应用程序可以在屏幕上绘制一些形状(实际上是几千个)。它们有两种类型:矩形和直线。矩形有填充,线条有描边 + 描边厚度。 我从两个文件中读取数据,一个是顶部的数据,一个是
简而言之: 我正在致力于使用 AI 和 GUI 创建纸牌游戏。用户的手显示在游戏界面上,我尚未完成界面,但我打算将牌面图像添加到屏幕上的矩形中。我没有找到 5 种几乎相同的方法,而是找到了一篇类似的文
我遇到了麻烦。我正在尝试使用用户输入的数组列表创建条形图。我可以创建一个条,但只会创建一个条。我需要所有数组输入来创建一个条。 import java.awt.Color; import java.a
我是一名优秀的程序员,十分优秀!