i have to write some Farsi texts to a QGraphicsTextItem , but cant find how i can make QGraphicsTextItem to wirte RightToLeft ! can any one help me ?

i tryed this way but didnt worked for me

class DiagramTextItem(QtGui.QGraphicsTextItem):

def __init__(self, parent=None, scene=None):
    super(DiagramTextItem, self).__init__(parent, scene)
    doc =QtGui.QTextDocument ('''شسشس
                              یییییگ''')
    txtOpt = QtGui.QTextOption()
    txtOpt.setAlignment(QtCore.Qt.AlignRight)
    doc.setDefaultTextOption(txtOpt)

ty

link|improve this question
feedback

1 Answer

It looks like you could use QTextOption.setTextDirection with Qt.RightToLeft.

But note that you may need to set the direction before you set the text:

class DiagramTextItem(QtGui.QGraphicsTextItem):
    def __init__(self, parent=None, scene=None):
        super(DiagramTextItem, self).__init__(parent, scene)
        doc = QtGui.QTextDocument()
        txtOpt = QtGui.QTextOption()
        txtOpt.setTextDirection(QtCore.Qt.RightToLeft)
        doc.setPlainText('''شسشس
                         یییییگ''')

If that doesn't work, try setting the cursor on the QGraphicsTextItem:

class DiagramTextItem(QtGui.QGraphicsTextItem):
    def __init__(self, parent=None, scene=None):
        super(DiagramTextItem, self).__init__(parent, scene)
        cursor = self.textCursor()
        format = cursor.charFormat()
        format.setLayoutDirection(QtCore.Qt.RightToLeft)
        cursor.setFormat(format)
        self.setTextCursor(cursor)
        self.setPlainText('''شسشس
                          یییییگ''')
link|improve this answer
no , it changed somethings but not still that what i need ! first line must be at right ! not left ! look at this pic , ty ma3ta.persiangig.com/programing/text.png – Sepehr Mohammad Pour Jan 18 at 1:09
@SepehrMohammadPour. I have updated my answer with some further suggestions. – ekhumoro Jan 18 at 1:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.