mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-14 20:33:05 +02:00
(drag an item from an embedded collection to another embedded collection don't work yet) git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4352 bfdf4180-ca20-0410-9c96-a3a8aa849046
79 lines
2.3 KiB
C++
79 lines
2.3 KiB
C++
/*
|
|
Copyright 2006-2015 The QElectroTech Team
|
|
This file is part of QElectroTech.
|
|
|
|
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.
|
|
|
|
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.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef ELEMENTLOCATION_H
|
|
#define ELEMENTLOCATION_H
|
|
|
|
#include "nameslist.h"
|
|
#include <QString>
|
|
#include <QDomElement>
|
|
#include <QUuid>
|
|
#include <QIcon>
|
|
|
|
class QETProject;
|
|
class QMimeData;
|
|
class XmlElementCollection;
|
|
|
|
/**
|
|
* @brief The ElementLocation class
|
|
* This class represent the location of an element or a directory in the file system
|
|
* or an embedded collection of a project.
|
|
* They also provide common things about an element, like the icon, uuid etc...
|
|
*/
|
|
class ElementLocation
|
|
{
|
|
public:
|
|
ElementLocation(QString path = QString());
|
|
ElementLocation(QString path, QETProject *project);
|
|
ElementLocation(const QMimeData *data);
|
|
ElementLocation &operator=(const ElementLocation &other);
|
|
~ElementLocation();
|
|
|
|
bool setPath(QString path);
|
|
bool isNull() const;
|
|
void setProject(QETProject *project);
|
|
bool isElement() const;
|
|
bool isDirectory() const;
|
|
bool isFileSystem() const;
|
|
bool isProject() const;
|
|
bool exist() const;
|
|
XmlElementCollection *projectCollection() const;
|
|
NamesList nameList();
|
|
|
|
QString collectionPath(bool protocol = true) const;
|
|
QString projectCollectionPath() const;
|
|
QString fileSystemPath() const;
|
|
|
|
QETProject *project() const;
|
|
|
|
QDomElement xml();
|
|
QUuid uuid();
|
|
QIcon icon();
|
|
QString name();
|
|
QString fileName() const;
|
|
|
|
private:
|
|
QString m_collection_path;
|
|
QString m_file_system_path;
|
|
QETProject *m_project = nullptr;
|
|
QDomElement m_xml;
|
|
QUuid m_uuid;
|
|
QIcon m_icon;
|
|
};
|
|
|
|
#endif // ELEMENTLOCATION_H
|