Jeroen asked: 
>  
> Qt? What is Qt? 
>  
A kit for developing GUI applications whose source codes 
should work for Linux, Mac and Windoze. 
 
The "hello, world" program is something like: 
 
#include <qapplication.h> 
#include <qlabel.h> 
 
int main( int argc, char **argv ) 
{ 
  QApplication app( argc, argv ); 
  QLabel *hello = new QLabel( 
     "<font color=blue>Hello <i>Qt!</i></font>", 0 ); 
  app.setMainWidget( hello ); 
  hello->show(); 
  return app.exec(); 
} 
 
Alberto Monteiro 
 
_______________________________________________
Brin-l mailing list
[EMAIL PROTECTED]
http://www.mccmedia.com/mailman/listinfo/brin-l


Reply via email to