我在Windows上使用PyQt4和Python 2.7以及音乐播放器,我决定用Phonon.SeekSlider
替换QDial
。
我的问题是,QDial
的最小值始终位于表盘的底部,但我希望它位于顶部(值仍然顺时针增加)。我尝试了setInvertedAppearance()
和setInvertedControls()
,但这只是水平翻转拨号而setOrientation()
也没有帮助。
我的问题:有没有办法指定一个角度来定位表盘上的最小值或垂直翻转整个表盘?
答案 0 :(得分:4)
我不相信有办法直接这样做。但是,您可以将QDial
放在QGraphicsView
中,并将其作为场景中的项目旋转。这样的事情应该有效:
import sys
from PyQt4 import QtGui, QtCore
class RotatableView(QtGui.QGraphicsView):
def __init__(self, item, rotation=0):
QtGui.QGraphicsView.__init__(self)
scene = QtGui.QGraphicsScene(self)
self.setScene(scene)
graphics_item = scene.addWidget(item)
graphics_item.rotate(rotation)
# make the QGraphicsView invisible
self.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
self.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
self.setFixedHeight(item.height())
self.setFixedWidth(item.width())
self.setStyleSheet("border: 0px")
class DialExample(QtGui.QWidget):
def __init__(self, parent=None):
QtGui.QWidget.__init__(self, parent)
dial = QtGui.QDial()
dial.setNotchesVisible(True)
label = QtGui.QLabel('0')
dial.valueChanged.connect(label.setNum)
layout = QtGui.QVBoxLayout()
layout.addWidget(RotatableView(dial, 180))
layout.addWidget(label)
self.setLayout(layout)
if __name__ == '__main__':
app = QtGui.QApplication(sys.argv)
dialexample = DialExample()
dialexample.show()
sys.exit(app.exec_())
答案 1 :(得分:1)
Hackyday给出了QgraphicsView
个答案,我在这里给你一个pyqt
解决方案而不使用QgraphicsView
。
你可以使用一点if/else
语句直接在python上完成。
你创建了qDial
,我想你想要一个拨号盘作为指南针(0 - 360°),我想你在qDial
上写了qSpinBox
的输出:
<widget class="QDial" name="dial">
<property name="geometry">
<rect>
<x>20</x>
<y>150</y>
<width>101</width>
<height>111</height>
</rect>
</property>
<property name="mouseTracking">
<bool>false</bool>
</property>
<property name="acceptDrops">
<bool>false</bool>
</property>
<property name="layoutDirection">
<enum>Qt::LeftToRight</enum>
</property>
<property name="minimum">
<number>0</number>
</property>
<property name="maximum">
<number>360</number>
</property>
<property name="singleStep">
<number>0</number>
</property>
<property name="pageStep">
<number>0</number>
</property>
<property name="value">
<number>135</number>
</property>
<property name="sliderPosition">
<number>135</number>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="invertedAppearance">
<bool>false</bool>
</property>
<property name="invertedControls">
<bool>false</bool>
</property>
<property name="wrapping">
<bool>true</bool>
</property>
<property name="notchesVisible">
<bool>false</bool>
</property>
</widget>
<widget class="QSpinBox" name="oAzimuth">
<property name="geometry">
<rect>
<x>10</x>
<y>110</y>
<width>52</width>
<height>30</height>
</rect>
</property>
<property name="maximum">
<number>360</number>
</property>
<property name="value">
<number>315</number>
</property>
</widget>
如果要将滑块的默认位置设置为315°,请将其设置为135°,如我的示例所示。为什么?因为0°到180°之间的所有度数都必须移到+ 180°,并且度数在181°到360°到-180°之间。
因此,pyqt
上的file.py
,您可以在if/else
内自动编写并function
语句进行更正:
def Edit_Slider(self):
if self.dockwidget.spinbox.value() > 180:
self.dockwidget.dial.setValue(self.dockwidget.spinbox.value()-180)
else:
self.dockwidget.dial.setValue(self.dockwidget.spinbox.value()+180)
def Edit_Spinbox(self):
if self.dockwidget.dial.value() > 180:
self.dockwidget.spinbox.setValue(self.dockwidget.dial.value()-180)
else:
self.dockwidget.spinbox.setValue(self.dockwidget.dial.value()+180)
在移动滑块或SpinValue时自动编辑此更改:
self.dockwidget.spinbox.valueChanged.connect(self.Edit_Slider)
self.dockwidget.dial.valueChanged.connect(self.Edit_Spinbox)
答案 2 :(得分:0)
您还可以在linedit中使用qdial值。
由于QDial仅适用于Integer,因此通过使用以下命令,您可以在float中使用任何值。
self.dial_object = QtGui.QDial(self.centralwidget)
self.dial_object.setNotchesVisible(True)
self.dial_object.setGeometry(QtCore.QRect(15,110,45,45))
self.dial_object.setMinimum(50)
这将拨号最小值设置为.5
self.dial_object.setMaximum(100)
将拨号最大值设置为1
self.dial_object.setSingleStep(10)
这会将拨号分辨率值设置为.01
self.dial_object.setValue(0)
将拨号起始值设置为0
self.dial_object.valueChanged.connect(self.dvalue1)
哪里
def dvalue1(self):
self.lineEdit_object.setText(str(float(self.dial_object.value())*0.01))
这会将值更改为float到字符串类型(在setText中使用)。
0.01决定转盘分辨率。