diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | e9ae80694875f869892f13f4fcaf1170a00dea41 (patch) | |
tree | aa2f8d8a217e2d376224c8d46b7397b68d35de2d /quanta/dialogs/dirtydlg.h | |
download | tdewebdev-e9ae80694875f869892f13f4fcaf1170a00dea41.tar.gz tdewebdev-e9ae80694875f869892f13f4fcaf1170a00dea41.zip |
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
Diffstat (limited to 'quanta/dialogs/dirtydlg.h')
-rw-r--r-- | quanta/dialogs/dirtydlg.h | 55 |
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 |