mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-09-27 20:44:13 +02:00
f7591e0c9d
Symbols, free texts, shapes and pictures can be grouped from the Edit menu, the selection's context menu or the command search. Clicking one member selects the group, so moving, copying and deleting act on all of it; Ctrl+click on a member deselects the group; a rubber band touching part of a group selects all of it when released. No default shortcut: Ctrl+G is "jump to element". A group is not an object in the scene. Each member keeps its place and carries the group's uuid (QGraphicsItem::data()), saved as a "group" attribute written only when set: a project without groups saves exactly as before, and older versions open a grouped one and ignore the groups. Re-parenting under a QGraphicsItemGroup would have made every member's position group-relative; ElementTextItemGroup already needs nine special cases for that. - Selection is completed on clicks and at the end of a rubber band, not on every selectionChanged(): export, search and Tab select items themselves and must not have groups pulled back in. - Project database: group_uuid on element, shape, independent_text and image, kept in step by projectDataBase::itemGroupChanged(). - Paste and folio duplication give each source group one new uuid. - Undo of Ungroup restores each item's exact group. Builds on #1065 (uuids and database rows for texts, shapes and images). Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01G2d2Zi8BfrYRPX88zhaoFG
125 lines
3.4 KiB
C++
125 lines
3.4 KiB
C++
/*
|
|
Copyright 2006-2026 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/>.
|
|
*/
|
|
#include "itemgroups.h"
|
|
|
|
#include <QDomElement>
|
|
#include <QGraphicsItem>
|
|
#include <QGraphicsScene>
|
|
#include <QSet>
|
|
|
|
/**
|
|
@return the uuid of the group @a item belongs to, or a null uuid.
|
|
*/
|
|
QUuid ItemGroups::groupOf(const QGraphicsItem *item)
|
|
{
|
|
return item ? item->data(data_key).toUuid() : QUuid();
|
|
}
|
|
|
|
/**
|
|
Put @a item in @a group, or take it out of any group if @a group is null.
|
|
*/
|
|
void ItemGroups::setGroup(QGraphicsItem *item, const QUuid &group)
|
|
{
|
|
if (!item) {
|
|
return;
|
|
}
|
|
item->setData(data_key, group.isNull() ? QVariant() : QVariant(group));
|
|
}
|
|
|
|
/**
|
|
Write @a item's group, if it has one, on its XML element @a xml.
|
|
Nothing is written otherwise, so a project without groups saves exactly
|
|
as before.
|
|
*/
|
|
void ItemGroups::write(QDomElement &xml, const QGraphicsItem *item)
|
|
{
|
|
const QUuid group = groupOf(item);
|
|
if (!group.isNull()) {
|
|
xml.setAttribute(QString::fromLatin1(xml_attribute), group.toString());
|
|
}
|
|
}
|
|
|
|
/**
|
|
@return the group written on @a xml, or a null uuid.
|
|
*/
|
|
QUuid ItemGroups::read(const QDomElement &xml)
|
|
{
|
|
return QUuid(xml.attribute(QString::fromLatin1(xml_attribute)));
|
|
}
|
|
|
|
/**
|
|
Make the selection of @a scene whole groups again after it changed.
|
|
A group with a selected member is selected entirely, except when the
|
|
change took members of an entirely selected group out of the selection
|
|
while @a toggling (Ctrl+click on a member): then the whole group leaves
|
|
the selection, as the user meant.
|
|
@param previous : the selection before the change
|
|
@param toggling : true when Ctrl is held
|
|
@return true if the selection was changed
|
|
*/
|
|
bool ItemGroups::completeSelection(QGraphicsScene *scene,
|
|
const QList<QGraphicsItem *> &previous,
|
|
bool toggling)
|
|
{
|
|
if (!scene) {
|
|
return false;
|
|
}
|
|
|
|
QSet<QUuid> touched;
|
|
const QList<QGraphicsItem *> selected = scene->selectedItems();
|
|
for (QGraphicsItem *item : selected) {
|
|
const QUuid group = groupOf(item);
|
|
if (!group.isNull()) {
|
|
touched << group;
|
|
}
|
|
}
|
|
|
|
//Groups that just lost a member from the selection
|
|
QSet<QUuid> shrunk;
|
|
for (QGraphicsItem *item : previous) {
|
|
if (item->scene() == scene && !item->isSelected()) {
|
|
const QUuid group = groupOf(item);
|
|
if (!group.isNull()) {
|
|
shrunk << group;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (touched.isEmpty()) {
|
|
return false;
|
|
}
|
|
|
|
//One pass over the folio for every touched group, not one per group:
|
|
//select all on a folio of 2000 items in 200 groups took 44 ms the
|
|
//other way.
|
|
bool changed = false;
|
|
for (QGraphicsItem *item : scene->items())
|
|
{
|
|
const QUuid group = groupOf(item);
|
|
if (group.isNull() || !touched.contains(group)) {
|
|
continue;
|
|
}
|
|
const bool select = !(toggling && shrunk.contains(group));
|
|
if (item->isSelected() != select) {
|
|
item->setSelected(select);
|
|
changed = true;
|
|
}
|
|
}
|
|
return changed;
|
|
}
|