summaryrefslogtreecommitdiffstats
path: root/src/pwgui/pwgui.h
blob: 95a7a0525cb8c11b903328753cc538c12e519f64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef AUTHENTICATION_H
#define AUTHENTICATION_H

#include <QMainWindow>
#include <QDebug>
#include <QTimer>

namespace Ui {
class PwGui;
}

class QTimer;

class PwGui : public QMainWindow
{
    Q_OBJECT

public:
    explicit PwGui(int pfd, QWidget *parent = 0);
    ~PwGui();

private slots:
    void on_checkStatusTimer();

private:
    Ui::PwGui *ui;
    void initializeUI();
    QTimer* checkStatusTimer;
    int pipefd;
};

#endif // AUTHENTICATION_H