Mercurial > hg > orthanc-stone
view OrthancStone/Sources/Scene2DViewport/EditAngleMeasureCommand.cpp @ 1792:373d7f7e796e
ICompositor::ComputeTextBoundingBox()
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 17 May 2021 16:59:03 +0200 |
parents | 9b650ab68d4c |
children | 3889ae96d2e9 |
line wrap: on
line source
/** * Stone of Orthanc * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics * Department, University Hospital of Liege, Belgium * Copyright (C) 2017-2021 Osimis S.A., Belgium * * This program 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 3 of * the License, or (at your option) any later version. * * This program 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 program. If not, see * <http://www.gnu.org/licenses/>. **/ #include "EditAngleMeasureCommand.h" namespace OrthancStone { EditAngleMeasureCommand::EditAngleMeasureCommand( boost::shared_ptr<MeasureTool> measureTool, boost::weak_ptr<IViewport> viewport) : EditMeasureCommand(measureTool, viewport) , measureTool_(measureTool) { } void EditAngleMeasureCommand::SetCenter(ScenePoint2D scenePos) { dynamic_cast<AngleMeasureTool&>(*measureTool_).SetCenter(scenePos); SetMementoModified(measureTool_->CreateMemento()); } void EditAngleMeasureCommand::SetSide1End(ScenePoint2D scenePos) { dynamic_cast<AngleMeasureTool&>(*measureTool_).SetSide1End(scenePos); SetMementoModified(measureTool_->CreateMemento()); } void EditAngleMeasureCommand::SetSide2End(ScenePoint2D scenePos) { dynamic_cast<AngleMeasureTool&>(*measureTool_).SetSide2End(scenePos); SetMementoModified(measureTool_->CreateMemento()); } }