Warning, file /office/skrooge/skgbasegui/skggraphicsscene.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /***************************************************************************
0002  * SPDX-FileCopyrightText: 2022 S. MANKOWSKI stephane@mankowski.fr
0003  * SPDX-FileCopyrightText: 2022 G. DE BURE support@mankowski.fr
0004  * SPDX-License-Identifier: GPL-3.0-or-later
0005  ***************************************************************************/
0006 /** @file
0007 * This file defines classes SKGGraphicsScene.
0008 *
0009 * @author Stephane MANKOWSKI / Guillaume DE BURE
0010  */
0011 #include "skggraphicsscene.h"
0012 
0013 SKGGraphicsScene::SKGGraphicsScene(QObject* iParent)
0014     : QGraphicsScene(iParent)
0015 {
0016 }
0017 
0018 SKGGraphicsScene::~SKGGraphicsScene()
0019     = default;
0020 
0021 void SKGGraphicsScene::mouseDoubleClickEvent(QGraphicsSceneMouseEvent* mouseEvent)
0022 {
0023     Q_EMIT doubleClicked();
0024 
0025     QGraphicsScene::mouseDoubleClickEvent(mouseEvent);
0026 }
0027 
0028