Adding CellWidget::State::getCursorStep(). I needed it to debug, may be useful.
This commit is contained in:
parent
a72131367e
commit
eacc908861
|
@ -533,6 +533,7 @@ namespace Hurricane {
|
||||||
inline void setCell ( Cell* );
|
inline void setCell ( Cell* );
|
||||||
inline void setCellWidget ( CellWidget* );
|
inline void setCellWidget ( CellWidget* );
|
||||||
inline void setCursorStep ( DbU::Unit );
|
inline void setCursorStep ( DbU::Unit );
|
||||||
|
inline DbU::Unit getCursorStep () const;
|
||||||
inline void setRealMode ();
|
inline void setRealMode ();
|
||||||
inline void setSymbolicMode ();
|
inline void setSymbolicMode ();
|
||||||
inline void setShowBoundaries ( bool );
|
inline void setShowBoundaries ( bool );
|
||||||
|
@ -904,6 +905,9 @@ namespace Hurricane {
|
||||||
inline void CellWidget::State::setCursorStep ( DbU::Unit step )
|
inline void CellWidget::State::setCursorStep ( DbU::Unit step )
|
||||||
{ _cursorStep = step; }
|
{ _cursorStep = step; }
|
||||||
|
|
||||||
|
inline DbU::Unit CellWidget::State::getCursorStep () const
|
||||||
|
{ return _cursorStep; }
|
||||||
|
|
||||||
|
|
||||||
inline void CellWidget::State::setRealMode ()
|
inline void CellWidget::State::setRealMode ()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue