summaryrefslogtreecommitdiff
path: root/plugins/CopyEngine/Ultracopier-0.3/folderExistsDialog.h
blob: 6d612f1c10477fd73e6b634d000ab1b328a58b83 (plain)
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
50
51
52
53
54
/** \file folderExistsDialog.h
\brief Define the dialog when file exists
\author alpha_one_x86
\version 0.3
\date 2010 */

#ifndef FOLDERISSAMEDIALOG_H
#define FOLDERISSAMEDIALOG_H

#include <QDialog>
#include <QFileInfo>
#include <QString>
#include <QDateTime>
#include <QDir>

#include "Environment.h"

namespace Ui {
    class folderExistsDialog;
}

/// \brief to show file exists dialog, and ask what do
class folderExistsDialog : public QDialog
{
    Q_OBJECT

public:
	/// \brief create the object and pass all the informations to it
	explicit folderExistsDialog(QWidget *parent,QFileInfo source,bool isSame,QFileInfo destination,QString firstRenamingRule,QString otherRenamingRule);
	~folderExistsDialog();
	/// \brief return the the always checkbox is checked
	bool getAlways();
	/// \brief return the action clicked
	FolderExistsAction getAction();
	/// \brief return the new rename is case in manual renaming
	QString getNewName();
protected:
	void changeEvent(QEvent *e);
private slots:
	void on_SuggestNewName_clicked();
	void on_Rename_clicked();
	void on_Skip_clicked();
	void on_Cancel_clicked();
	void on_Merge_clicked();
private:
	Ui::folderExistsDialog *ui;
	FolderExistsAction action;
	QString oldName;
	QString firstRenamingRule;
	QString otherRenamingRule;
	QFileInfo destinationInfo;
};

#endif // FOLDERISSAMEDIALOG_H