7#include "DigitizeStateEmpty.h"
8#include "DigitizeStateContext.h"
10#include "MainWindow.h"
18DigitizeStateEmpty::~DigitizeStateEmpty ()
30 LOG4CPP_INFO_S ((*mainCat)) <<
"DigitizeStateEmpty::begin";
38 LOG4CPP_DEBUG_S ((*mainCat)) <<
"DigitizeStateEmpty::cursor";
40 return QCursor (Qt::ArrowCursor);
45 LOG4CPP_INFO_S ((*mainCat)) <<
"DigitizeStateEmpty::end";
50 LOG4CPP_INFO_S ((*mainCat)) <<
"DigitizeStateEmpty::handleCurveChange";
57 LOG4CPP_INFO_S ((*mainCat)) <<
"DigitizeStateEmpty::handleKeyPress"
58 <<
" key=" << QKeySequence (key).toString ().toLatin1 ().data ();
70 LOG4CPP_INFO_S ((*mainCat)) <<
"DigitizeStateEmpty::handleMousePress";
76 LOG4CPP_INFO_S ((*mainCat)) <<
"DigitizeStateEmpty::handleMouseRelease";
81 return "DigitizeStateEmpty";
87 LOG4CPP_INFO_S ((*mainCat)) <<
"DigitizeStateEmpty::updateModelDigitizeCurve";
92 LOG4CPP_INFO_S ((*mainCat)) <<
"DigitizeStateEmpty::updateModelSegments";
Base class for all digitizing states. This serves as an interface to DigitizeStateContext.
DigitizeStateContext & context()
Reference to the DigitizeStateContext that contains all the DigitizeStateAbstractBase subclasses,...
void setCursor(CmdMediator *cmdMediator)
Update the cursor according to the current state.
Container for all DigitizeStateAbstractBase subclasses. This functions as the context class in a stan...
MainWindow & mainWindow()
Reference to the MainWindow, without const.
virtual QCursor cursor(CmdMediator *cmdMediator) const
Returns the state-specific cursor shape.
virtual void handleCurveChange(CmdMediator *cmdMediator)
Handle the selection of a new curve. At a minimum, DigitizeStateSegment will generate a new set of Se...
virtual void updateModelDigitizeCurve(CmdMediator *cmdMediator, const DocumentModelDigitizeCurve &modelDigitizeCurve)
Update the digitize curve settings.
virtual void handleMouseMove(CmdMediator *cmdMediator, QPointF posScreen)
Handle a mouse move. This is part of an experiment to see if augmenting the cursor in Point Match mod...
virtual void handleMousePress(CmdMediator *cmdMediator, QPointF posScreen)
Handle a mouse press that was intercepted earlier.
virtual void begin(CmdMediator *cmdMediator, DigitizeState previousState)
Method that is called at the exact moment a state is entered.
DigitizeStateEmpty(DigitizeStateContext &context)
Single constructor.
virtual QString activeCurve() const
Name of the active Curve. This can include AXIS_CURVE_NAME.
virtual void handleKeyPress(CmdMediator *cmdMediator, Qt::Key key, bool atLeastOneSelectedItem)
Handle a key press that was intercepted earlier.
virtual QString state() const
State name for debugging.
virtual void updateModelSegments(const DocumentModelSegments &modelSegments)
Update the segments given the new settings.
virtual void end()
Method that is called at the exact moment a state is exited. Typically called just before begin for t...
virtual void handleMouseRelease(CmdMediator *cmdMediator, QPointF posScreen)
Handle a mouse release that was intercepted earlier.
Model for DlgSettingsDigitizeCurve and CmdSettingsDigitizeCurve.
Model for DlgSettingsSegments and CmdSettingsSegments.
void updateViewsOfSettings(const QString &activeCurve)
Update curve-specific view of settings. Private version gets active curve name from DigitizeStateCont...