Qt Code:
  1. void QTextEdit::setCursorWidth(int width)
  2. {
  3. Q_D(QTextEdit);
  4. d->control->setCursorWidth(width);
  5. }
To copy to clipboard, switch view to plain text mode 

In the QTextEdit class there have a function to set the Cursor'width for the user.

But In the QGraphisTextItem there is nothing .

How can I to change it ? thanks.