-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathjobdialog.h
43 lines (35 loc) · 878 Bytes
/
jobdialog.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
/* ========================================================================
Project Name : Fast/Force copy file and directory
Create : 2016-02-28(Sun)
Copyright : Kengo Sawatsu
Reference :
======================================================================== */
#ifndef JOBDIALOG_H
#define JOBDIALOG_H
#include <QDialog>
#include <tlib.h>
#include <osl.h>
#include <cfg.h>
#include <QMessageBox>
//#include "mainwindow.h"
namespace Ui {
class JobDialog;
}
class JobDialog : public QDialog
{
Q_OBJECT
public:
explicit JobDialog(QWidget *parent = 0,Cfg *cfg_pt = NULL);
~JobDialog();
private:
Ui::JobDialog *ui;
bool AddJob();
bool DelJob();
protected:
Cfg *cfg;
void *mainwindow;
private slots:
void on_pushButton_Delete_clicked();
void on_pushButton_Execute_clicked();
};
#endif // JOBDIALOG_H