mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02:00
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/branches/0.3@1424 bfdf4180-ca20-0410-9c96-a3a8aa849046
71 lines
2.3 KiB
C++
71 lines
2.3 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 DIAGRAM_CONTENT_H
|
|
#define DIAGRAM_CONTENT_H
|
|
#include <QtGui>
|
|
class Conductor;
|
|
class Element;
|
|
class IndependentTextItem;
|
|
/**
|
|
Cette classe est un conteneur pour passer facilement le contenu d'un schema
|
|
a une fonction. Il permet d'acceder rapidement aux differents types de
|
|
composants que l'on peut trouver sur un schema, comme les elements, les
|
|
champs de texte, les conducteurs (a deplacer ou a mettre a jour, en cas de
|
|
deplacements), etc.
|
|
A noter que ce container ne contient pas systematiquement l'integralite
|
|
d'un schema. Il peut n'en contenir qu'une partie, typiquement les
|
|
composants selectionnes.
|
|
*/
|
|
class DiagramContent {
|
|
public:
|
|
DiagramContent();
|
|
DiagramContent(const DiagramContent &);
|
|
~DiagramContent();
|
|
|
|
/// Permet de filtrer facilement les differentes parties d'un schema
|
|
enum Filter {
|
|
Elements = 1,
|
|
TextFields = 2,
|
|
ConductorsToMove = 4,
|
|
ConductorsToUpdate = 8,
|
|
OtherConductors = 16,
|
|
AnyConductor = 28,
|
|
All = 31,
|
|
SelectedOnly = 32
|
|
};
|
|
|
|
/// Elements de texte du schema
|
|
QSet<Element *> elements;
|
|
/// Champs de texte independants du schema
|
|
QSet<IndependentTextItem *> textFields;
|
|
/// Conducteurs a mettre a jour du schema
|
|
QSet<Conductor *> conductorsToUpdate;
|
|
/// Conducteurs a deplacer du schema
|
|
QSet<Conductor *> conductorsToMove;
|
|
/// Conducteurs isoles (ni a deplacer, ni a mettre a jour)
|
|
QSet<Conductor *> otherConductors;
|
|
|
|
QList<Conductor *> conductors(int = AnyConductor) const;
|
|
QList<QGraphicsItem *> items(int = All) const;
|
|
QString sentence(int = All) const;
|
|
int count(int = All) const;
|
|
void clear();
|
|
};
|
|
QDebug &operator<<(QDebug, DiagramContent &);
|
|
#endif
|