summaryrefslogtreecommitdiffstats
path: root/quanta/dialogs/dirtydlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/dialogs/dirtydlg.h')
-rw-r--r--quanta/dialogs/dirtydlg.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/quanta/dialogs/dirtydlg.h b/quanta/dialogs/dirtydlg.h
new file mode 100644
index 00000000..83d05339
--- /dev/null
+++ b/quanta/dialogs/dirtydlg.h
@@ -0,0 +1,55 @@
+/***************************************************************************
+ dirtydlg.h - description
+ -------------------
+ begin : Fri Sep 13 2002
+ copyright : (C) 2002, 2003 by Andras Mantia
+ email : amantia@kde.org
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; version 2 of the License. *
+ * *
+ ***************************************************************************/
+
+#ifndef DIRTYDLG_H
+#define DIRTYDLG_H
+
+// kde includes
+#include <kio/jobclasses.h>
+
+class DirtyDialog;
+class KDialogBase;
+
+class KProcess;
+class QCloseEvent;
+
+class DirtyDlg : public KDialogBase {
+ Q_OBJECT
+
+public:
+ DirtyDlg(const QString& srcName, const QString& destName, bool createBackup = false, QWidget *parent=0, const char *name=0);
+ ~DirtyDlg();
+
+protected slots: // Protected slots
+ /** No descriptions */
+ void slotOk();
+ /** No descriptions */
+ void slotCompareDone(KProcess*);
+ /** No descriptions */
+ void slotResult(KIO::Job *);
+ /** No descriptions */
+ virtual void closeEvent(QCloseEvent* ev);
+
+protected: // Protected attributes
+ KURL m_src;
+ KURL m_dest;
+ bool m_busy;
+ bool m_createBackup;
+ int m_permissions;
+ DirtyDialog* m_mainWidget;
+};
+
+#endif