2015-12-08 16:52:10 +00:00
|
|
|
/*
|
2016-06-05 16:34:46 +00:00
|
|
|
Copyright 2006-2016 The QElectroTech Team
|
|
|
|
This file is part of QElectroTech.
|
2015-12-08 16:52:10 +00:00
|
|
|
|
2016-06-05 16:34:46 +00:00
|
|
|
QElectroTech 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.
|
2015-12-08 16:52:10 +00:00
|
|
|
|
2016-06-05 16:34:46 +00:00
|
|
|
QElectroTech 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.
|
2015-12-08 16:52:10 +00:00
|
|
|
|
2016-06-05 16:34:46 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
2015-12-08 16:52:10 +00:00
|
|
|
*/
|
2016-06-05 16:34:46 +00:00
|
|
|
#ifndef FILEELEMENTCOLLECTIONITEM2_H
|
|
|
|
#define FILEELEMENTCOLLECTIONITEM2_H
|
2015-12-08 16:52:10 +00:00
|
|
|
|
|
|
|
#include "elementcollectionitem.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The FileElementCollectionItem class
|
|
|
|
* This class specialise ElementCollectionItem for manage a collection in
|
|
|
|
* a file system. They represente a directory or an element.
|
|
|
|
*/
|
|
|
|
class FileElementCollectionItem : public ElementCollectionItem
|
|
|
|
{
|
2016-06-05 16:34:46 +00:00
|
|
|
public:
|
|
|
|
FileElementCollectionItem();
|
2016-02-24 10:43:40 +00:00
|
|
|
|
2016-06-05 16:34:46 +00:00
|
|
|
enum { Type = UserType+2 };
|
|
|
|
virtual int type() const { return Type;}
|
2015-12-08 16:52:10 +00:00
|
|
|
|
2016-06-05 16:34:46 +00:00
|
|
|
bool setRootPath(QString path, bool set_data = true, bool hide_element = false);
|
2015-12-08 16:52:10 +00:00
|
|
|
QString fileSystemPath() const;
|
|
|
|
QString dirPath() const;
|
|
|
|
|
|
|
|
virtual bool isDir() const;
|
|
|
|
virtual bool isElement() const;
|
2016-06-05 16:34:46 +00:00
|
|
|
virtual QString localName();
|
|
|
|
virtual QString name() const;
|
|
|
|
virtual QString collectionPath() const;
|
2015-12-08 16:52:10 +00:00
|
|
|
virtual bool isCollectionRoot() const;
|
|
|
|
bool isCommonCollection() const;
|
2016-06-17 08:41:09 +00:00
|
|
|
bool isCustomCollection() const;
|
2016-06-05 16:34:46 +00:00
|
|
|
virtual void addChildAtPath(const QString &collection_name);
|
|
|
|
|
|
|
|
void setUpData();
|
|
|
|
void setUpIcon();
|
|
|
|
|
|
|
|
void hire();
|
2015-12-08 16:52:10 +00:00
|
|
|
|
2015-12-12 11:09:31 +00:00
|
|
|
|
2016-06-05 16:34:46 +00:00
|
|
|
private:
|
|
|
|
void setPathName(QString path_name, bool set_data = true, bool hide_element = false);
|
|
|
|
void populate(bool set_data = true, bool hide_element = false);
|
2015-12-08 16:52:10 +00:00
|
|
|
|
2016-06-05 16:34:46 +00:00
|
|
|
private:
|
2015-12-08 16:52:10 +00:00
|
|
|
QString m_path;
|
|
|
|
};
|
|
|
|
|
2016-06-05 16:34:46 +00:00
|
|
|
#endif // FILEELEMENTCOLLECTIONITEM2_H
|