-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathjoblistrenamedialog.h
45 lines (34 loc) · 1.03 KB
/
joblistrenamedialog.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
/* ========================================================================
Project Name : Fast/Force copy file and directory
Create : 2016-02-28(Sun)
Copyright : Kengo Sawatsu
Reference :
======================================================================== */
#ifndef JOBLISTRENAMEDIALOG_H
#define JOBLISTRENAMEDIALOG_H
#include <QDialog>
#include <tlib.h>
#include <osl.h>
#include <cfg.h>
namespace Ui {
class JobListRenameDialog;
}
class JobListRenameDialog : public QDialog
{
Q_OBJECT
public:
explicit JobListRenameDialog(QWidget *parent = 0,Cfg *cfg_pt=NULL,QString before_name=NULL,QString *after_name=NULL);
~JobListRenameDialog();
private:
Ui::JobListRenameDialog *ui;
QString *joblistname_after;
protected:
Cfg *cfg;
void *mainwindow;
QString joblistname_before;
private slots:
void on_lineEdit_newJobListName_textChanged(const QString &arg1);
void on_pushButton_Ok_clicked();
void on_pushButton_Cancel_clicked();
};
#endif // JOBLISTRENAMEDIALOG_H