-
Notifications
You must be signed in to change notification settings - Fork 20
/
confirmdialog.h
49 lines (40 loc) · 1.17 KB
/
confirmdialog.h
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* ========================================================================
Project Name : Fast/Force copy file and directory
Create : 2016-02-28(Sun)
Copyright : Kengo Sawatsu
Reference :
======================================================================== */
#ifndef CONFIRMDIALOG_H
#define CONFIRMDIALOG_H
#include <QDialog>
#include <QPushButton>
//#include <mainwindow.h>
#include <fastcopy.h>
#include <cfg.h>
namespace Ui {
class confirmDialog;
}
class confirmDialog : public QDialog
{
Q_OBJECT
public:
//shellextは未実装
explicit confirmDialog(QWidget *parent = 0,
FastCopy::Info *_info = NULL,
Cfg *_cfg = NULL,
const void *_title = NULL,
const void *_src = NULL,
const void *_dst = NULL,
bool _isShellext = false);
~confirmDialog();
private:
Ui::confirmDialog *ui;
QPushButton *exec_button;
const void *src;
const void *dst;
const void *title;
Cfg *cfg;
FastCopy::Info *info;
BOOL isShellExt;
};
#endif // CONFIRMDIALOG_H