【发布时间】:2014-01-07 00:23:18
【问题描述】:
我尝试创建 QML-PYSIDE 计算器。但是我找不到任何这样的例子。我还检查了 pyside wiki,但不明白如何一起运行 QML-PySide。 例如,我想使用 QML-PySİde.(a+b=c) 运行添加应用程序。我可以控制由 QtDesigner 用 Python 创建的附加应用程序 GUI (sumui.ui)(由 PySideTools 转换)。但我无法使用 Python 控制添加应用程序 QML (inputtext, button )。 我是 python-qt 的新手。所以我输入了 pyside-qtdesigner 和 qml GUI 来了解 PySide-QtWidgets 和 PySide-QML UI 之间的关系。 (对不起我的英语不好)
PySide 添加应用:
应用图片:http://postimg.org/image/envp8jgg9/
addition.py:
# addition.py
from PySide import QtCore, QtGui
from sumui import Ui_Form
import sys
def derece(degrees):
return degrees*((2*pi)/400)
class hesap(QtGui.QWidget):
def __init__(self):
QtGui.QWidget.__init__(self)
self.ui = Ui_Form()
self.ui.setupUi(self)
# Validations
tempValidator = QtGui.QDoubleValidator()
tempValidator.setNotation(QtGui.QDoubleValidator.StandardNotation)
self.ui.a.setValidator(tempValidator)
self.ui.b.setValidator(tempValidator)
self.setupConnections()
def topla(self):
a1 = float(self.ui.a.text())
b1 = float(self.ui.b.text())
c1 = a1 + b1
cc1 = str(c1)
self.ui.c.setText(str(cc1))
def setupConnections(self):
self.connect(self.ui.sum, QtCore.SIGNAL('clicked()'),
self.topla)
if __name__ == "__main__":
app = QtGui.QApplication(sys.argv)
window = hesap()
window.show()
sys.exit(app.exec_())
QML 图形用户界面:http://postimg.org/image/pocxfcf19/ 添加.qml:
import QtQuick 1.1
Rectangle {
id:r
anchors.centerIn: parent
width: 200
height: 200
Column{
width: r.width*0.8
height: r.height*0.8
spacing: 10
anchors.centerIn: parent
Row{
id:ro
spacing:10
Text {
anchors.centerIn: ro.parent
font.bold: true
text: "a"
}
TextInput {
id: a
width: r.width*3/4
height: 20
selectionColor: "#2f8bc5"
fillColor: "lightgray"
font.bold: true
}
}
Row{
spacing:10
Text {
text: "b"
font.bold: true
}
TextInput {
id: b
width: r.width*3/4
height: 20
fillColor: "lightgray"
font.bold: true
}
}
Rectangle {
id: calculate
width: r.width
height: 30
color: "#8a0800"
//x:b.width*0.2
Text{
anchors.centerIn: calculate
font.bold: true
text:"calculate";color:"white"}
gradient: Gradient {
GradientStop {
position: 0
color: "#8a0800"
}
GradientStop {
position: 1
color: "#330009"
}
}
}
Row{
spacing:10
Text {
text: "c"
font.bold: true
}
TextInput {
id: c
font.bold: true
width: r.width*3/4
height: 20
fillColor: "lightgray"
selectionColor: "#2f8bc5"
font.pixelSize: 12
}
}
}
}
如何使用 PySide 运行 QML 添加 UI?或者有没有像 PySide-QML 计算器这样的例子? 谢谢
【问题讨论】: