summaryrefslogtreecommitdiff
path: root/plugins/CopyEngine/Ultracopier/FileExistsDialog.h
blob: 05ff7e0856d9cf9d20efd90eb3c421c6756df932 (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
55
56
57
58
59
60
/** \file fileExistsDialog.h
\brief Define the dialog when file already exists
\author alpha_one_x86
\licence GPL3, see the file COPYING */

#include <QDialog>
#include <QWidget>
#include <QString>
#include <QDateTime>
#include <QFileInfo>
#include <QDir>
#include "Environment.h"

#ifndef FILEEXISTSDIALOG_H
#define FILEEXISTSDIALOG_H

namespace Ui {
    class fileExistsDialog;
}

/// \brief to show file exists dialog, and ask what do
class FileExistsDialog : public QDialog
{
    Q_OBJECT
public:
    /// \brief create the object and pass all the informations to it
    explicit FileExistsDialog(QWidget *parent,QFileInfo source,QFileInfo destination,std::string firstRenamingRule,std::string otherRenamingRule);
    ~FileExistsDialog();
    /// \brief return the the always checkbox is checked
    bool getAlways();
    /// \brief return the action clicked
    FileExistsAction getAction();
    /// \brief return the new rename is case in manual renaming
    std::string getNewName();
protected:
    void changeEvent(QEvent *e);
private slots:
    void on_SuggestNewName_clicked();
    void on_Rename_clicked();
    void on_Overwrite_clicked();
    void on_Skip_clicked();
    void on_Cancel_clicked();
    void on_actionOverwrite_if_newer_triggered();
    void on_actionOverwrite_if_not_same_modification_date_triggered();
    void updateRenameButton();
    void on_checkBoxAlways_toggled(bool checked);
    void on_lineEditNewName_textChanged(const QString &arg1);
    void on_lineEditNewName_returnPressed();
    void on_actionOverwrite_if_older_triggered();
    void on_lineEditNewName_editingFinished();
private:
    Ui::fileExistsDialog *ui;
    FileExistsAction action;
    std::string oldName;
    QFileInfo destinationInfo;
    std::string firstRenamingRule;
    std::string otherRenamingRule;
};

#endif // FILEEXISTSDIALOG_H