~nitrokey/nitrokey/release

« back to all changes in this revision

Viewing changes to stick20setup.h

  • Committer: ggkitsas
  • Date: 2015-02-02 14:31:31 UTC
  • Revision ID: git-v1:b8ca589a5a5149133891043ed64b71d14d05e099
new directory structure

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
* Author: Copyright (C) Rudolf Boeddeker  Date: 2013-08-13
3
 
*
4
 
* This file is part of Nitrokey 2
5
 
*
6
 
* Nitrokey 2  is free software: you can redistribute it and/or modify
7
 
* it under the terms of the GNU General Public License as published by
8
 
* the Free Software Foundation, either version 3 of the License, or
9
 
* any later version.
10
 
*
11
 
* Nitrokey is distributed in the hope that it will be useful,
12
 
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
 
* GNU General Public License for more details.
15
 
*
16
 
* You should have received a copy of the GNU General Public License
17
 
* along with Nitrokey. If not, see <http://www.gnu.org/licenses/>.
18
 
*/
19
 
 
20
 
#ifndef STICK20SETUP_H
21
 
#define STICK20SETUP_H
22
 
 
23
 
#include <QDialog>
24
 
#include "device.h"
25
 
 
26
 
namespace Ui {
27
 
class Stick20Setup;
28
 
}
29
 
 
30
 
class Stick20Setup : public QDialog
31
 
{
32
 
    Q_OBJECT
33
 
    
34
 
public:
35
 
    explicit Stick20Setup(QWidget *parent = 0);
36
 
    ~Stick20Setup();
37
 
    
38
 
    Device *cryptostick;
39
 
 
40
 
private slots:
41
 
    void on_pushButton_Change_AdminPW_clicked();
42
 
    void on_pushButton_Ch_PW_clicked();
43
 
    void on_pushButton_Ch_Mat_APW_clicked();
44
 
    void on_pushButton_Ch_HiddenVol_clicked();
45
 
 
46
 
 
47
 
private:
48
 
    Ui::Stick20Setup *ui;
49
 
};
50
 
 
51
 
#endif // STICK20SETUP_H