12

i am making a PyQt application, and i want to make something like a Terminal Window, where the user can interact with a Telnet or ssh server.

My first idea was to have a Window with a black QPlainTextEdit and a scrollbar.

I am new to python-Qt world and would appreciate some guidance. Any ideas?

Thanks :-)

athspk
  • 6,722
  • 7
  • 37
  • 51

1 Answers1

6

Here's a link to a terminal program written in C++ using Qt. I'm not sure how helpful it will be for the low level stuff but I'm sure the Qt parts will be helpful. http://sourceforge.net/projects/qtermwidget/

Arnold Spence
  • 21,942
  • 7
  • 74
  • 67
  • Thank you Arnold :-) This looks interesting, i will start reading the code to see how its done. – athspk Sep 22 '10 at 19:17