2015-12-08 16:52:10 +00:00
|
|
|
/*
|
2023-01-01 17:05:57 +01:00
|
|
|
Copyright 2006-2023 The QElectroTech Team
|
2016-06-05 16:34:46 +00:00
|
|
|
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"
|
2020-01-09 10:26:10 +01:00
|
|
|
#include "elementslocation.h"
|
2015-12-08 16:52:10 +00:00
|
|
|
|
|
|
|
/**
|
2020-08-16 11:19:36 +02:00
|
|
|
@brief The FileElementCollectionItem class
|
|
|
|
This class specialise ElementCollectionItem for manage a collection in
|
|
|
|
a file system. They represente a directory or an element.
|
|
|
|
*/
|
2015-12-08 16:52:10 +00:00
|
|
|
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 };
|
2017-08-05 02:10:01 +00:00
|
|
|
int type() const override { return Type;}
|
2015-12-08 16:52:10 +00:00
|
|
|
|
2020-07-24 22:44:32 +02:00
|
|
|
bool setRootPath(const QString& path,
|
|
|
|
bool set_data = true,
|
|
|
|
bool hide_element = false);
|
2015-12-08 16:52:10 +00:00
|
|
|
QString fileSystemPath() const;
|
|
|
|
QString dirPath() const;
|
|
|
|
|
2017-08-05 02:10:01 +00:00
|
|
|
bool isDir() const override;
|
|
|
|
bool isElement() const override;
|
|
|
|
QString localName() override;
|
2020-01-23 10:45:14 +01:00
|
|
|
QString localName(const ElementsLocation &location);
|
2017-08-05 02:10:01 +00:00
|
|
|
QString name() const override;
|
|
|
|
QString collectionPath() const override;
|
|
|
|
bool isCollectionRoot() const override;
|
2023-12-09 12:02:04 +01:00
|
|
|
bool isCommonCollection() const;
|
|
|
|
bool isCompanyCollection() const;
|
|
|
|
bool isCustomCollection() const;
|
2017-08-05 02:10:01 +00:00
|
|
|
void addChildAtPath(const QString &collection_name) override;
|
2016-06-05 16:34:46 +00:00
|
|
|
|
2017-08-05 02:10:01 +00:00
|
|
|
void setUpData() override;
|
|
|
|
void setUpIcon() override;
|
2016-06-05 16:34:46 +00:00
|
|
|
|
|
|
|
private:
|
2020-07-24 22:44:32 +02:00
|
|
|
void setPathName(const QString& path_name,
|
|
|
|
bool set_data = true,
|
|
|
|
bool hide_element = false);
|
2016-06-05 16:34:46 +00:00
|
|
|
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
|