0

私は2つの問題に完全に行き詰まっています:

1) QSlider を使用していくつかの値を設定しています (それらは float ~0.5 なので、*1000 を使用しています)。SingleStep と PageStep はキーボード入力とマウス ホイールで正常に動作し、目盛りはすべて設定されています...しかし、マウスを使用してスライダーをドラッグすると、目盛りやステップなどはすべて無視され、 1つのティックから別のティック。

self.ui.x_coord.setMaximum(l_d*1000)
self.ui.x_coord.setSingleStep(l_d/N*1000)
self.ui.x_coord.setTickInterval(l_d/N*1000)
self.ui.x_coord.setTickPosition(QtGui.QSlider.TicksBothSides)
self.ui.x_coord.setPageStep(l_d/N * 10000)

私のコードに何かが欠けていますか(setMouseStepのようなものかもしれません)?

2) QSlider が関数に接続されている

self.graph = BPlot(self.ui)
self.ui.x_coord.valueChanged.connect(self.setCoordLabelValue)

....

def setCoordLabelValue(self):
    x = self.ui.x_coord.value()/1000
    y = self.ui.y_coord.value()/1000
    self.graph.setCoordText(x,y)

....

class BPlot(QtGui.QGraphicsView):
    def __init__(self, ui, parent=None):
        super(BPlot, self).__init__(parent)
        self.scene = QtGui.QGraphicsScene()
        self.ui = ui

        self.coordText = QtGui.QGraphicsTextItem(None, self.scene)
        self.coordText.setPlainText("123")

        self.x_offset = 40
        self.y_offset = 20

        self.currentPoint = QtGui.QGraphicsRectItem(None, self.scene)
        self.cph = 4
            self.cpw = 4

    def resizeEvent(self, event):
        size = event.size()

    def showEvent(self, event):
        aw = self.viewport().width()
        ah = self.viewport().height()
        self.scene.setSceneRect(0,0,aw,ah)
        self.setScene(self.scene)

        self.axis_pen = QtGui.QPen(QtCore.Qt.DashDotLine)
        self.scene.addLine(0, 3/4*ah, aw, 3/4*ah, self.axis_pen)

        self.normal_pen = QtGui.QPen(QtCore.Qt.SolidLine)
        self.scene.addLine(self.x_offset, 3/4*ah - self.y_offset, aw - self.x_offset, 3/4*ah - self.y_offset)
        self.currentPoint.setRect(self.x_offset - self.cpw/2, 3/4*ah - self.y_offset - self.cph/2, self.cpw, self.cph) 


    def setCoordText(self, x, y):
        self.coordText.setPlainText(str(x) + ":" + str(y))

問題は、setCoordText 関数が coordText を再描画しないことです。print(coordText.toPlainText()) を使用すると、正しい出力が得られますが、画面には __init__ からの「123」がまだ表示されます

setCoordText の最後に self.scene.update() を追加しようとしましたが、うまくいきませんでした。

4

1 に答える 1

0

うーん...解決しました。ロジック、どこにいるの?

def setCoordLabelValue(self):
    x = self.ui.x_coord.value()/1000
    y = self.ui.y_coord.value()/1000
    self.graph.setCoordText(x,y)
    self.graph.invalidateScene()

.......

def paintEvent(self, event):
        painter = QtGui.QPainter(self.viewport())

        # set color and width of line drawing pen
        painter.setPen(QtGui.QPen(QtCore.Qt.black, 2))

        # drawLine(x1, y1, x2, y2) from point (x1,y1) to (x2,y2)
        # draw the baseline
        painter.drawText(10,20,str(x_coord))
        # set up color and width of the bars
        width = 20
        painter.setPen(QtGui.QPen(QtCore.Qt.red, width))
        delta = width + 5
        x = 30
        painter.end()

        self.viewport().update()
于 2012-04-29T06:47:43.697 に答える