X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fgenericgui%2FScene.cxx;h=23e7ee2e5376c6fb6f1e4bc508a15ab47b4d4916;hb=83fc419099df47bc0d14dcf6a27eb2ad8a0566ec;hp=80cbca80be3d7d00d1d8a8a962a8d17e09ce617d;hpb=f4c10bf1781a76534bb1fa293aef541aef56148b;p=modules%2Fyacs.git diff --git a/src/genericgui/Scene.cxx b/src/genericgui/Scene.cxx index 80cbca80b..23e7ee2e5 100644 --- a/src/genericgui/Scene.cxx +++ b/src/genericgui/Scene.cxx @@ -1,26 +1,29 @@ -// Copyright (C) 2006-2008 CEA/DEN, EDF R&D +// Copyright (C) 2006-2014 CEA/DEN, EDF R&D // -// This library is free software; you can redistribute it and/or -// modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 2.1 of the License. +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. // -// This library 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 -// Lesser General Public License for more details. +// This library 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 +// Lesser General Public License for more details. // -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + #include "Scene.hxx" #include "SceneItem.hxx" +#include "SceneTextItem.hxx" #include "QtGuiContext.hxx" #include +#include #include #include @@ -31,9 +34,11 @@ using namespace std; using namespace YACS::HMI; +bool Scene::_straightLinks = false; bool Scene::_autoComputeLinks = true; bool Scene::_simplifyLinks = true; bool Scene::_force2NodesLink = true; +bool Scene::_addRowCols = true; Scene::Scene(QObject *parent): QGraphicsScene(parent) { @@ -60,6 +65,25 @@ bool Scene::isZooming() { return _zooming; } + +void Scene::helpEvent(QGraphicsSceneHelpEvent *event) +{ + DEBTRACE("Scene::helpEvent"); + QGraphicsItem *qit = itemAt(event->scenePos()); + SceneItem * item = dynamic_cast(qit); + if (item) + { + QToolTip::showText(event->screenPos(), item->getToolTip()); + return; + } + SceneTextItem * itemt = dynamic_cast(qit); + if (itemt) + { + QToolTip::showText(event->screenPos(), itemt->getToolTip()); + return; + } + QToolTip::hideText(); +} void Scene::mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent) {