tags:

views:

40

answers:

1

print "hellp world" :)

i want to ask you if exist a function or class hwo can show the html code like the browser's jobe

thx

+1  A: 

There is QtWebKit Module within Qt. It incorporates webkit rendering engine. Whereas you can get access to Qt classes using python binding, you can use Qt official manual as help. Qt designer is also included into pyqt - you can try using it to design your application's GUI (I'm almost sure you'll be able to find web browser component or similar there).

As for using html tags to decorate labels and other components showing text, you can refer to this question.

Li0liQ