I have to display a large amount of text in a python/QT UI. This text represents a pattern sent by a tester (digital signals).
exemple:
// Command 1
0x002045A85
0x002045A84
0x002045A83
...
// Command 2
0x002045A85
0x002045A84
0x002045A83
...
I would display on the UI only the comments included in the pattern. If the user click on a comment line, the text will expand and some hexadecimal codes will be written below the clicked line. If the user click again on the same comment line, the hexadecimal lines will be collapsed.
If the user click on a hexadecimal line, a graphic with the digital signal will be pop-up.
I have no idea how to do this.
Please, someone could send me an example which could help me in this development ?
Benoît