1
/**************************************************************************
3
* Copyright 2015 Canonical Ltd.
4
* Copyright 2015 Carlos J Mazieri <carlos.mazieri@gmail.com>
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU Lesser General Public License as published by
8
* the Free Software Foundation; version 3.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU Lesser General Public License for more details.
15
* You should have received a copy of the GNU Lesser General Public License
16
* along with this program. If not, see <http://www.gnu.org/licenses/>.
18
* File: locationitemdiriterator.h
22
#ifndef LOCATIONITEMDIRITERATOR_H
23
#define LOCATIONITEMDIRITERATOR_H
25
#include <QDirIterator>
26
#include "diriteminfo.h"
29
* \brief The LocationItemDirIterator class is an abstract similar to Qt QDirIterator
31
* Different protocols supported by filemanager (different Locations) must provide a class like that.
33
* The \ref LoadLater can used in the constructor to indicate to the constructor to NOT load the path/url, instead \ref load() can called later to do that.
36
class LocationItemDirIterator
41
LoadOnConstructor, //!< loads the entire directory or url in the constructor as Qt QDirIterator does
42
LoadLater //!< do NOT load the entire directory or url, \ref load() method should be responsible to do that.
45
virtual ~LocationItemDirIterator();
47
virtual bool hasNext() const = 0;
48
virtual QString next() = 0;
50
virtual DirItemInfo fileInfo() const = 0;
53
* \return the file name for the current directory entry, without the path prepended.
55
virtual QString fileName() const = 0;
59
* \return the full pathname of the current item
61
virtual QString filePath() const = 0;
65
* \return the base directory of the iterator path (not the current item)
67
virtual QString path() const;
70
* \brief load() responsible to load the entire directory or url when \ref LoadLater is passed to the constructor
74
QDir::Filters filters() const;
75
QDirIterator::IteratorFlags flags() const;
78
LocationItemDirIterator(const QString & path,
79
QDirIterator::IteratorFlags flags = QDirIterator::NoIteratorFlags,
80
LocationItemDirIterator::LoadMode loadmode = LocationItemDirIterator::LoadOnConstructor);
82
LocationItemDirIterator(const QString & path,
83
QDir::Filters filters,
84
QDirIterator::IteratorFlags flags = QDirIterator::NoIteratorFlags,
85
LocationItemDirIterator::LoadMode loadmode = LocationItemDirIterator::LoadOnConstructor);
87
LocationItemDirIterator(const QString & path,
88
const QStringList & nameFilters,
89
QDir::Filters filters = QDir::NoFilter,
90
QDirIterator::IteratorFlags flags = QDirIterator::NoIteratorFlags,
91
LocationItemDirIterator::LoadMode loadmode = LocationItemDirIterator::LoadOnConstructor);
95
QStringList m_nameFilters;
96
QDir::Filters m_filters;
97
QDirIterator::IteratorFlags m_flags;
101
#endif // LOCATIONITEMDIRITERATOR_H