Advertisement
Guest User

dialog.h

a guest
May 2nd, 2012
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #ifndef DIALOG_H
  2. #define DIALOG_H
  3.  
  4. #include <QDialog>
  5. #include <QtGui>
  6. #include <QtCore>
  7. #include "MyWidget.h"
  8.  
  9. namespace Ui {
  10. class Dialog;
  11. }
  12.  
  13. class Dialog : public QDialog
  14. {
  15. Q_OBJECT
  16.  
  17. public:
  18. explicit Dialog(QWidget *parent = 0);
  19. ~Dialog();
  20.  
  21. private:
  22. Ui::Dialog *ui;
  23.  
  24. protected:
  25. void paintEvent(QPaintEvent *e);
  26. };
  27.  
  28.  
  29. #endif // DIALOG_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement