From e9ae80694875f869892f13f4fcaf1170a00dea41 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- quanta/dialogs/dirtydlg.h | 55 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 quanta/dialogs/dirtydlg.h (limited to 'quanta/dialogs/dirtydlg.h') 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 + +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 -- cgit v1.2.1