~ubuntu-branches/ubuntu/intrepid/gwenview/intrepid

« back to all changes in this revision

Viewing changes to src/fileoperation.h

  • Committer: Bazaar Package Importer
  • Author(s): Christopher Martin
  • Date: 2004-06-13 18:55:04 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20040613185504-net8ekxoswwvyxs9
Tags: 1.1.3-1
New upstream release. Translations now included.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// vim: set tabstop=4 shiftwidth=4 noexpandtab
 
2
/*
 
3
Gwenview - A simple image viewer for KDE
 
4
Copyright 2000-2004 Aur�lien G�teau
 
5
 
 
6
This program is free software; you can redistribute it and/or
 
7
modify it under the terms of the GNU General Public License
 
8
as published by the Free Software Foundation; either version 2
 
9
of the License, or (at your option) any later version.
 
10
 
 
11
This program is distributed in the hope that it will be useful,
 
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
GNU General Public License for more details.
 
15
 
 
16
You should have received a copy of the GNU General Public License
 
17
along with this program; if not, write to the Free Software
 
18
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
19
 
 
20
*/
 
21
#ifndef FILEOPERATION_H
 
22
#define FILEOPERATION_H
 
23
 
 
24
class QString;
 
25
class QWidget;
 
26
 
 
27
class KConfig;
 
28
class KURL;
 
29
 
 
30
 
 
31
/**
 
32
 * This namespace-like class handles all steps of a file operation :
 
33
 * - asking the user what to do with a file
 
34
 * - performing the operation
 
35
 * - showing result dialogs
 
36
 */
 
37
class FileOperation {
 
38
public:
 
39
        static void copyTo(const KURL::List&,QWidget* parent=0L);
 
40
        static void moveTo(const KURL::List&,QWidget* parent,QObject* receiver=0L,const char* slot=0L);
 
41
        static void del(const KURL::List&,QWidget* parent,QObject* receiver=0L,const char* slot=0L);
 
42
        static void rename(const KURL&,QWidget* parent,QObject* receiver=0L,const char* slot=0L);
 
43
        static void openDropURLMenu(QWidget* parent, const KURL::List&, const KURL& target, bool* wasMoved=0L);
 
44
 
 
45
        // Config
 
46
        static void readConfig(KConfig*,const QString&);
 
47
        static void kpartConfig();
 
48
        static void writeConfig(KConfig*,const QString&);
 
49
 
 
50
        static bool deleteToTrash();
 
51
        static void setDeleteToTrash(bool);
 
52
        
 
53
        static bool confirmDelete();
 
54
        static void setConfirmDelete(bool);
 
55
 
 
56
        static bool confirmCopy();
 
57
        static void setConfirmCopy(bool);
 
58
 
 
59
        static bool confirmMove();
 
60
        static void setConfirmMove(bool);
 
61
 
 
62
        static QString destDir();
 
63
        static void setDestDir(const QString&);
 
64
};
 
65
 
 
66
#endif