qgraphicstextitem

How to make a QGraphicsTextItem clickable ?

In the "About box" of my software, I used a QGraphicsTextItem to show the about-text. This text contains hypertext links (in the form of: <a href="http://some.random.site"&gt;link&lt;/a&gt;). The item shows up properly (hypertext links are blue and underlined). However, when I click on them, nothing happens. Here is how I created the...

updating a QGraphicsTextItem on text change

I’ve been working with QGraphicsTextItems. I currently have the laid out in a scene, each depicting a physical page of text. Right now I’m overriding the keyReleaseEvent function to redistribute the text typed across all of the pages. The problem with this is that when I set the text with setPlainText, the cursor moves back to the beginn...