My QGraphicsTextItems (subclass) do show a selection ornamentation. But the user can't move them by dragging with the mouse. What am I missing? (This is with Qt 4.8.5 on Windows 7, 64 bit). Below are the relevant QGraphicsTextItem calls made from by subclass constructor. (I've also tried doing these things after the item is inserted into the scene).

Qt Code:
  1. OcanTextGfxItem::OcanTextGfxItem (TextData* textData,
  2. OutputCanvasScene* gfxScene)
  3. _textData (textData), // TextData*, not ownership
  4. _scene (gfxScene) // OutputCanvasScene*
  5. {
  6. setFlags (QGraphicsItem::ItemIsMovable |
  7. QGraphicsItem::ItemIsFocusable |
  8. QGraphicsItem::ItemIsSelectable);
  9.  
  10. setPlainText (tr ("Test Text"));
  11. setEnabled (true);
  12. setVisible (true);
  13. }
To copy to clipboard, switch view to plain text mode