[go: up one dir, main page]

Menu

[r681]: / mfsclip.h  Maximize  Restore  History

Download this file

126 lines (103 with data), 3.7 kB

  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
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* Marcion
Copyright (C) 2009-2014 Milan Konvicka
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; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
#ifndef MFSCLIP_H
#define MFSCLIP_H
#include <QDir>
#include <QFileInfo>
#include <QFileInfoList>
#include <QList>
#include <stdio.h>
//#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <string.h>
#include <unistd.h>
#include "settings.h"
#include "progressdialog.h"
class MFileInfoItem : public QFileInfo
{
public:
MFileInfoItem(QString const & file);
MFileInfoItem(MFileInfoItem const & other);
MFileInfoItem & operator=(MFileInfoItem const & other);
using QFileInfo::operator==;
QByteArray _raw_name;
};
typedef QList<MFileInfoItem> MFileInfoItemList;
typedef QList<MFileInfoItem const*> MFileInfoItemListPtr;
class MDirLister
{
public:
MDirLister();
~MDirLister(){}
bool openDir(QString const & dirname);
bool closeDir();
bool readDir();
int makeList(QString const & dirname);
MFileInfoItemListPtr & items_sorted(){return _sorted;}
MFileInfoItemList & items(){return _files;}
MFileInfoItem dirItem() const;
QString dirItemName() const;
QByteArray dirItemNameRaw() const;
QString dirItemPath(bool add_separator=true) const;
static int countFilesInDir(QString const & dirname);
private:
DIR * _dir;
struct dirent * _dir_entry;
QString _dirname,_error_text;
MFileInfoItemList _files;
MFileInfoItemListPtr _sorted;
//static void count_files_in_dir(QString const & dirname, int & count);
};
class MFSInfo : public QFileInfo
{
public:
MFSInfo(QString const & rel_path,QFileInfo const * base);
MFSInfo(MFSInfo const & other);
~MFSInfo(){}
//MFSInfo operator=(MFSInfo const & other);
inline QString relativeToItem() const;
//void setRelativeToItem(QString const & rel_path);
private:
//QString _rel;
QFileInfo const * _base;
};
class MFSClip : public QFileInfoList
{
public:
enum State{None,Cut,Copy,Delete};
MFSClip();
void clear();
void printClipboard() const;
void copy(QFileInfo abs_fpath);
void cut(QFileInfo abs_fpath);
void remove(QFileInfo abs_fpath);
bool paste(QDir target_dir/*,QString const & names*/);
State state() const {return _state;}
void setState(State new_state) {_state=new_state;}
bool moveItems(QDir const & target_dir,bool & interrupted);
static QString linkTarget(QFileInfo const & fileinfo);
//static void createLink(QFileInfo const & fileinfo,QString const & target);
//static bool isLinkValid(QFileInfo const & fileinfo);
private:
State _state;
QList<MFSInfo> _files;
mutable QStringList _errs;
//void read_dir(QDir from_dir,QDir target_dir,unsigned long & items,CProgressDialog & pd);
//unsigned long count_dir() const;
//void count_dir2(QDir dir,unsigned long & items) const;
void scan_items(),scan_dir(QFileInfo const & dir,QFileInfo const * base);
void printErrs();
};
#endif // MFSCLIP_H