summaryrefslogtreecommitdiff
path: root/plugins/CopyEngine/Ultracopier-0.3/fileErrorDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CopyEngine/Ultracopier-0.3/fileErrorDialog.h')
-rw-r--r--plugins/CopyEngine/Ultracopier-0.3/fileErrorDialog.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/plugins/CopyEngine/Ultracopier-0.3/fileErrorDialog.h b/plugins/CopyEngine/Ultracopier-0.3/fileErrorDialog.h
deleted file mode 100644
index b14fe87..0000000
--- a/plugins/CopyEngine/Ultracopier-0.3/fileErrorDialog.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/** \file fileErrorDialog.h
-\brief Define the dialog error on the file
-\author alpha_one_x86
-\version 0.3
-\date 2010 */
-
-#include <QDialog>
-#include <QWidget>
-#include <QString>
-#include <QDateTime>
-#include <QFileInfo>
-#include "Environment.h"
-
-#ifndef FILEERRORDIALOG_H
-#define FILEERRORDIALOG_H
-
-namespace Ui {
- class fileErrorDialog;
-}
-
-/// \brief to show error dialog, and ask what do
-class fileErrorDialog : public QDialog
-{
- Q_OBJECT
-public:
- /// \brief create the object and pass all the informations to it
- explicit fileErrorDialog(QWidget *parent,QFileInfo fileInfo,QString errorString,bool havePutAtTheEndButton=true);
- ~fileErrorDialog();
- /// \brief return the the always checkbox is checked
- bool getAlways();
- /// \brief return the action clicked
- FileErrorAction getAction();
-protected:
- void changeEvent(QEvent *e);
-private slots:
- void on_PutToBottom_clicked();
- void on_Retry_clicked();
- void on_Skip_clicked();
- void on_Cancel_clicked();
-private:
- Ui::fileErrorDialog *ui;
- FileErrorAction action;
-};
-
-#endif // FILEERRORDIALOG_H