Changing Textbox and other UI components in Qt/Webkit?
I am making my own browser with Qt/Webkit for touch screen devices. I want to have My own editbox in browser ( so t开发者_开发技巧hat when user click on it, I can open virtual keyboard), Touch friendly listbox and other controls.
So In QWebView I want to have MyOwnTextEdit instread of QTextEdit and same for all other UI controls.
Please tell me How can I do it?
I am using Qt embedded linux 4.6.2.
For example, you can see how this kind of things realized in more easy widgets here: link text. It's the first way. The second way is to create you textbox with SIGNALs/SLOTs and also code widgets GUI with Qt styles. Good luck!
精彩评论