Guest User

Untitled

a guest
Jan 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #include <QtGui>
  2.  
  3. int main(int argv, char **args)
  4. {
  5. QApplication app(argv, args);
  6.  
  7. QTextEdit textEdit;
  8. QPushButton quitButton("Quit");
  9.  
  10. QObject::connect(&quitButton, SIGNAL(clicked()), qApp, SLOT(quit()));
  11.  
  12. QVBoxLayout layout;
  13. layout.addWidget(&textEdit);
  14. layout.addWidget(&quitButton);
  15.  
  16. QWidget window;
  17. window.setLayout(&layout);
  18.  
  19. window.show();
  20.  
  21. return app.exec();
  22. }
Add Comment
Please, Sign In to add comment