QCheckBox in a QTextEdit
-
Could you give us a few more details? How is this custom component supposed to look and react to user input? As far as I can tell you're looking for a text-input component that has check-box on left/right side? Why not simply align QTextEdit with a QCheckBox and remove label from check-box? Based on your specific requirements you may decide to compose a custom component out of those two standard components.
-
I got to create a sort of "add Friend",I have x line with a text in my TextEdit and i would to put x CheckBox (one for line). (for me this is the simple solution)
For example:
aaaa CheckBox
bbbb CheckBox
cccc CheckBox
...I only know the TextEdit,but I think there are a best solution for this problem.
-
So... why are you using a QTextEdit here? For displaying a list, there are far "better":http://doc.qt.nokia.com/4.7/qlistview.html "solutions":http://doc.qt.nokia.com/4.7/qlistwidget.html in Qt. Those make it easy to add a checkbox as well.