문제

I have a QTableView with custom model and delegate. Task is to create cell which will contain image and hyperlink. By clicking on image user will copy hyperlink to clipboard, and by clicking of hyperlink user should open link in browser.

Is it a possible task?

도움이 되었습니까?

해결책

Sure it is possible.

One of the way to solve this is to use call setIndexWidget() of view where you bypass QLabel with image or hyperlink or both using html (rtf).

Another way is to have own subclassed QItemDelegate in which you can reimplement createEditor() and set persistent editor with openPersistenEditor().

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top