1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| #include <QApplication>;
#include <QPushButton>;
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
// Création d'un widget qui servira de fenêtre
QWidget fenetre; fenetre.setFixedSize(600, 300);
// Création du bouton, ayant pour parent la "fenetre"
QPushButton bouton("Pimp mon bouton !", &fenetre);
// Customisation du bouton bouton.setFont(QFont("Comic Sans MS", 14)); bouton.setCursor(Qt::PointingHandCursor); bouton.setIcon(QIcon("smile.png"));
// Affichage de la fenêtre
fenetre.show();
return app.exec();
} |
Partager