You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dialogconnecting.h 412B

12345678910111213141516171819202122232425262728
  1. #ifndef DIALOGCONNECTING_H
  2. #define DIALOGCONNECTING_H
  3. #include <QDialog>
  4. namespace Ui {
  5. class DialogConnecting;
  6. }
  7. class DialogConnecting : public QDialog
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit DialogConnecting(QWidget *parent = 0);
  12. ~DialogConnecting();
  13. signals:
  14. void canceled();
  15. private slots:
  16. void on_pushButton_clicked();
  17. private:
  18. Ui::DialogConnecting *ui;
  19. };
  20. #endif // DIALOGCONNECTING_H