00001 /****************************************************************************************************** 00002 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released * 00003 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file * 00004 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. * 00005 ******************************************************************************************************/ 00006 00007 #ifndef TRANSFORMATION_STATE_UNDEFINED_H 00008 #define TRANSFORMATION_STATE_UNDEFINED_H 00009 00010 #include "TransformationStateAbstractBase.h" 00011 00013 class TransformationStateUndefined : public TransformationStateAbstractBase 00014 { 00015 public: 00017 TransformationStateUndefined(TransformationStateContext &context, 00018 QGraphicsScene &scene); 00019 00020 virtual void begin(CmdMediator &cmdMediator, 00021 const Transformation &transformation, 00022 const QString &selectedGraphCurve); 00023 virtual void end(CmdMediator &cmdMediator, 00024 const Transformation &transformation); 00025 virtual void updateAxesChecker (CmdMediator &cmdMediator, 00026 const Transformation &transformation); 00027 00028 private: 00029 TransformationStateUndefined(); 00030 }; 00031 00032 #endif // TRANSFORMATION_STATE_UNDEFINED_H