summaryrefslogtreecommitdiffstats
path: root/quanta/dialogs/dirtydlg.h
blob: 4b6d92324dbd48e5bd84f5965aa41630904950d6 (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
/***************************************************************************
                          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 TDEProcess;
class TQCloseEvent;

class DirtyDlg : public KDialogBase  {
   Q_OBJECT
  

public:
  DirtyDlg(const TQString& srcName, const TQString& destName, bool createBackup = false, TQWidget *parent=0, const char *name=0);
  ~DirtyDlg();

protected slots: // Protected slots
  /** No descriptions */
   void slotOk();
  /** No descriptions */
  void slotCompareDone(TDEProcess*);
  /** No descriptions */
  void slotResult(TDEIO::Job *);
  /** No descriptions */
  virtual void closeEvent(TQCloseEvent* ev);

protected: // Protected attributes
  KURL m_src;
  KURL m_dest;
  bool m_busy;
  bool m_createBackup;
  int  m_permissions;
  DirtyDialog* m_mainWidget;
};

#endif