~ubuntu-branches/ubuntu/quantal/ark/quantal

« back to all changes in this revision

Viewing changes to plugins/karchiveplugin/karchiveplugin.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2012-06-06 18:50:49 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20120606185049-z43lsy5wwp3wtrgt
Tags: 4:4.8.80-0ubuntu1
* Merge with Debian git repository, remaining changes:
  - Suggest instead of recommend p7zip-full
  - Add and install utilities-file-archiver.xpm
* New upstream beta release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
    bool deleteFiles(const QList<QVariant> & files);
43
43
 
44
44
private:
 
45
    enum {
 
46
        OverwriteYes,
 
47
        OverwriteSkip,
 
48
        OverwriteAll,
 
49
        OverwriteAutoSkip,
 
50
        OverwriteCancel
 
51
    };
 
52
 
45
53
    bool browseArchive(KArchive *archive);
46
54
 
47
55
    bool processDir(const KArchiveDirectory *dir, const QString & prefix = QString());
50
58
 
51
59
    QString permissionsString(mode_t perm);
52
60
 
 
61
    void getAllEntries(const KArchiveDirectory *dir, const QString &prefix, QList< QVariant > &list);
 
62
 
 
63
    int handleFileExistsMessage(const QString &dir, const QString &fileName);
 
64
 
53
65
    KArchive *archive();
54
66
 
55
67
    KArchive *m_archive;