Alberto Monteiro wrote:
> 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();
> }
Looks a bit like with Matlab. I mostly used copy paste instead of drop
and drag.
Sonja
_______________________________________________
http://www.mccmedia.com/mailman/listinfo/brin-l