1 / 1

PROGRAMANDO CON QT LINUX

PROGRAMANDO CON QT LINUX.

shepry
Download Presentation

PROGRAMANDO CON QT LINUX

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. PROGRAMANDO CON QT LINUX Para cada clase en QT existe un archivo tipo biblioteca, con la extensión .h, aunque no se denota como tal, pues el enlazador resuelve el nombre. Se le da el nombre de Widget a los elementos visuales dentro de QT Linux que se encuentran dentro de una interfaz de usuario (menús, botones y marcos son ejemplos de Widgets). 1 #include <QApplication> 2 #include <QLabel> 3 intmain(intargc, char *argv[]) 4 { 5 QApplicationapp(argc, argv); 6 QLabel *label = new QLabel("HelloQt!"); 7 label->show(); 8 returnapp.exec(); 9 }

More Related