summaryrefslogblamecommitdiffstats
path: root/src/timeoutdialog.h
blob: 4961e6f7638fd2ac0726e76833a82aed7a84992c (plain) (tree)
1
2
3
4
5
6


                                          


                       





















                                                 
// Copyright 2013, University of Freiburg,
// Author: Manuel Schneider <ms1144>

#ifndef TIMEOUTDIALOG_H
#define TIMEOUTDIALOG_H

#include <QProgressDialog>
#include <QTimer>

class TimeOutDialog : public QProgressDialog
{
    Q_OBJECT

  public:
    TimeOutDialog(int time, QWidget *parent = 0);

  private:
    int             _time;
    QTimer          _timer;

  public slots:
    void cancel();

  private slots:
    void update();
};

#endif // TIMEOUTDIALOG_H