Problem
I'm using QTableWidget(Item) for presentation of some data. For that i need to italicize or set bold some parts of text. Problem: I don't want to italicize the whole cell/box, just parts of text in a cell.
Ideas
: Using the QTableWidgetItem refering to the correspondent cell and trying to modify the style (e.g. setFont(font)). But this operations always seem to alter the whole cell?
I also found this which doesn't help me for my QTableWidget problem.
Wanted
: To Have a QTableWidget with e.g. 2 rows and collumns containing cells like:
Exa mple Cell Text
(Nice Notation like Exa<b>mple</b> Cell <i>Text</i>
is only a secondary aspect)
Note: Example should be one word.