7 #include "CmdMediator.h" 8 #include "DigitizeStateAxis.h" 9 #include "DigitizeStateColorPicker.h" 10 #include "DigitizeStateContext.h" 11 #include "DigitizeStateCurve.h" 12 #include "DigitizeStateEmpty.h" 13 #include "DigitizeStatePointMatch.h" 14 #include "DigitizeStateSegment.h" 15 #include "DigitizeStateSelect.h" 16 #include "DocumentModelSegments.h" 17 #include "EngaugeAssert.h" 18 #include "GraphicsScene.h" 19 #include "GraphicsView.h" 21 #include "MainWindow.h" 23 #include <QGraphicsScene> 24 #include <QGraphicsView> 25 #include "QtToString.h" 30 m_mainWindow (mainWindow),
32 m_imageIsLoaded (false),
33 m_isGnuplot (isGnuplot)
43 ENGAUGE_ASSERT (m_states.size () == NUM_DIGITIZE_STATES);
45 m_currentState = NUM_DIGITIZE_STATES;
47 DIGITIZE_STATE_EMPTY);
50 DigitizeStateContext::~DigitizeStateContext()
56 return m_states [m_currentState]->activeCurve ();
62 LOG4CPP_INFO_S ((*mainCat)) <<
"DigitizeStateContext::appendNewCmd";
64 cmdMediator->push (cmd);
67 void DigitizeStateContext::completeRequestedStateTransitionIfExists (
CmdMediator *cmdMediator)
69 if (m_currentState != m_requestedState) {
73 if (m_currentState != NUM_DIGITIZE_STATES) {
76 m_states [m_currentState]->end ();
80 DigitizeState previousState = m_currentState;
81 m_currentState = m_requestedState;
82 m_states [m_requestedState]->begin (cmdMediator,
92 const QString &pointIdentifier)
94 m_states [m_currentState]->handleContextMenuEventAxis (cmdMediator,
99 const QStringList &pointIdentifiers)
101 m_states [m_currentState]->handleContextMenuEventGraph (cmdMediator,
107 m_states [m_currentState]->handleCurveChange(cmdMediator);
112 bool atLeastOneSelectedItem)
114 m_states [m_currentState]->handleKeyPress (cmdMediator,
116 atLeastOneSelectedItem);
118 completeRequestedStateTransitionIfExists(cmdMediator);
125 m_states [m_currentState]->handleMouseMove (cmdMediator,
128 completeRequestedStateTransitionIfExists(cmdMediator);
135 m_states [m_currentState]->handleMousePress (cmdMediator,
138 completeRequestedStateTransitionIfExists(cmdMediator);
145 m_states [m_currentState]->handleMouseRelease (cmdMediator,
148 completeRequestedStateTransitionIfExists(cmdMediator);
168 m_requestedState = digitizeState;
172 DigitizeState digitizeState)
174 m_requestedState = digitizeState;
175 completeRequestedStateTransitionIfExists(cmdMediator);
180 LOG4CPP_INFO_S ((*mainCat)) <<
"DigitizeStateContext::resetOnLoad";
184 if (m_currentState != DIGITIZE_STATE_EMPTY) {
185 m_requestedState = DIGITIZE_STATE_EMPTY;
186 completeRequestedStateTransitionIfExists(cmdMediator);
192 LOG4CPP_INFO_S ((*mainCat)) <<
"DigitizeStateContext::setCursor";
194 ENGAUGE_ASSERT(m_currentState < m_states.count());
196 m_states [m_currentState]->setCursor (cmdMediator);
201 LOG4CPP_DEBUG_S ((*mainCat)) <<
"DigitizeStateContext::setDragMode";
203 if (m_imageIsLoaded) {
204 m_view.setDragMode (dragMode);
211 LOG4CPP_INFO_S ((*mainCat)) <<
"DigitizeStateContext::setImageIsLoaded";
213 m_imageIsLoaded = imageIsLoaded;
219 ENGAUGE_ASSERT (m_currentState != NUM_DIGITIZE_STATES);
221 return m_states [m_currentState]->state();
226 ENGAUGE_ASSERT (m_currentState != NUM_DIGITIZE_STATES);
228 m_states [m_currentState]->updateAfterPointAddition ();
234 LOG4CPP_INFO_S ((*mainCat)) <<
"DigitizeStateContext::updateModelDigitizeCurve";
236 ENGAUGE_ASSERT(m_currentState < m_states.count());
238 m_states [m_currentState]->updateModelDigitizeCurve (cmdMediator,
244 LOG4CPP_INFO_S ((*mainCat)) <<
"DigitizeStateContext::updateModelSegments";
246 ENGAUGE_ASSERT(m_currentState < m_states.count());
248 m_states [m_currentState]->updateModelSegments (modelSegments);
void requestDelayedStateTransition(DigitizeState digitizeState)
Initiate state transition to be performed later, when DigitizeState is off the stack.
void updateAfterPointAddition()
Update the graphics attributes.
void resetOnLoad(CmdMediator *cmdMediator)
Resetting makes re-initializes for documents after the first.
void updateDigitizeStateIfSoftwareTriggered(DigitizeState digitizeState)
After software-triggered state transition, this method manually triggers the action as if user had cl...
void setDragMode(QGraphicsView::DragMode dragMode)
Set QGraphicsView drag mode (in m_view). Called from DigitizeStateAbstractBase subclasses.
void updateModelDigitizeCurve(CmdMediator *cmdMediator, const DocumentModelDigitizeCurve &modelDigitizeCurve)
Update the digitize curve settings.
QString activeCurve() const
Curve name for active Curve. This can include AXIS_CURVE_NAME, and empty string.
void handleContextMenuEventAxis(CmdMediator *cmdMediator, const QString &pointIdentifier)
See DigitizeStateAbstractBase::handleContextMenuEventAxis.
void setCursor(CmdMediator *cmdMediator)
Set cursor after asking state for the new cursor shape.
Digitizing state for selecting a color for DigitizeStateSegment.
void handleCurveChange(CmdMediator *cmdMediator)
See DigitizeStateAbstractBase::handleCurveChange.
void handleContextMenuEventGraph(CmdMediator *cmdMediator, const QStringList &pointIdentifiers)
See DigitizeStateAbstractBase::handleContextMenuEventGraph.
Digitizing state before a Document has been created. In this state, the cursor is Qt::ArrowCursor...
CmdMediator * cmdMediator()
Accessor for commands to process the Document.
void handleKeyPress(CmdMediator *cmdMediator, Qt::Key key, bool atLeastOneSelectedItem)
See DigitizeStateAbstractBase::handleKeyPress.
MainWindow & mainWindow()
Reference to the MainWindow, without const.
void setImageIsLoaded(CmdMediator *cmdMediator, bool imageIsLoaded)
Set the image so QGraphicsView cursor and drag mode are accessible.
Digitizing state for matching Curve Points, one at a time.
Model for DlgSettingsDigitizeCurve and CmdSettingsDigitizeCurve.
Digitizing state for selecting one or more Points in the Document.
void appendNewCmd(CmdMediator *cmdMediator, QUndoCommand *cmd)
Append just-created QUndoCommand to command stack. This is called from DigitizeStateAbstractBase subc...
DigitizeStateContext(MainWindow &mainWindow, QGraphicsView &view, bool isGnuplot)
Single constructor.
void updateModelSegments(const DocumentModelSegments &modelSegments)
Update the segments given the new settings.
QString state() const
State name for debugging.
void handleMouseMove(CmdMediator *cmdMediator, QPointF pos)
See DigitizeStateAbstractBase::handleMouseMove.
void handleMouseRelease(CmdMediator *cmdMediator, QPointF pos)
See DigitizeStateAbstractBase::handleMouseRelease.
Model for DlgSettingsSegments and CmdSettingsSegments.
bool isGnuplot() const
Get method for gnuplot flag.
Digitizing state for creating Curve Points, one at a time.
QGraphicsView & view()
QGraphicsView for use by DigitizeStateAbstractBase subclasses.
void handleMousePress(CmdMediator *cmdMediator, QPointF pos)
See DigitizeStateAbstractBase::handleMousePress.
Digitizing state for creating multiple Points along a highlighted segment.
Main window consisting of menu, graphics scene, status bar and optional toolbars as a Single Document...
Digitizing state for digitizing one axis point at a time.
void requestImmediateStateTransition(CmdMediator *cmdMediator, DigitizeState digitizeState)
Perform immediate state transition. Called from outside state machine.