qelectrotech-source-mirror/sources/xmlelementscollection.h
xavier 072f63dfb6 Elements panel: replaced embedded collections original titles with simpler ones.
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/branches/0.3@1500 bfdf4180-ca20-0410-9c96-a3a8aa849046
2012-02-12 17:19:01 +00:00

69 lines
1.9 KiB
C++

/*
Copyright 2006-2012 Xavier Guerrin
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 XML_ELEMENTS_COLLECTION
#define XML_ELEMENTS_COLLECTION
#include <QtXml>
#include "elementscollection.h"
class XmlElementsCategory;
/**
Cette classe represente une collection d'elements accessible via un
document XML (exemple : un projet QET). Typiquement, il s'agit de la
collection embarquee d'un projet QET.
*/
class XmlElementsCollection : public ElementsCollection {
Q_OBJECT
public:
// constructeurs, destructeur
XmlElementsCollection(ElementsCollectionItem * = 0);
XmlElementsCollection(const QDomElement &, ElementsCollectionItem * = 0);
virtual ~XmlElementsCollection();
private:
XmlElementsCollection(const XmlElementsCollection &);
// methodes
public:
virtual QString title() const;
virtual ElementsCategory *rootCategory();
virtual bool hasFilePath();
virtual QString filePath();
virtual void setFilePath(const QString &);
virtual void reload();
virtual bool exists();
virtual bool isReadable();
virtual bool isWritable();
virtual bool write();
virtual bool isCacheable() const;
virtual QDomElement writeXml(QDomDocument &) const;
public slots:
void componentWritten();
signals:
void written();
private:
void deleteContent();
// attributs
private:
XmlElementsCategory *root;
};
#endif