well having a toolbar is the plan but i have to pass the first hurdle.. so you mean just by placing

Qt Code:
  1. QPen outlinePen = QPen (QColor(255, 0, 0), 1, Qt::SolidLine);
  2.  
  3. format.setTextOutline ( outlinePen );
  4.  
  5. QTextCursor cursor;
  6. cursor.setCharFormat ( format );
  7. setTextCursor(cursor);
To copy to clipboard, switch view to plain text mode 

on a qgraphicstextitem without anything extra this edits fine? do you do any setup to the QTextDocument attached to the qgraphicstextitem ?