Home
last modified time | relevance | path

Searched refs:m_nCurUndoPos (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/fpdfsdk/src/fxedit/
Dfxet_edit.cpp349 CFX_Edit_Undo::CFX_Edit_Undo(FX_INT32 nBufsize) : m_nCurUndoPos(0), in CFX_Edit_Undo()
364 return m_nCurUndoPos > 0; in CanUndo()
371 if (m_nCurUndoPos > 0) in Undo()
373 IFX_Edit_UndoItem * pItem = m_UndoItemStack.GetAt(m_nCurUndoPos-1); in Undo()
378 m_nCurUndoPos--; in Undo()
379 m_bModified = (m_nCurUndoPos != 0); in Undo()
387 return m_nCurUndoPos < m_UndoItemStack.GetSize(); in CanRedo()
396 if (m_nCurUndoPos < nStackSize) in Redo()
398 IFX_Edit_UndoItem * pItem = m_UndoItemStack.GetAt(m_nCurUndoPos); in Redo()
403 m_nCurUndoPos++; in Redo()
[all …]
/external/pdfium/fpdfsdk/include/fxedit/
Dfxet_edit.h305 FX_INT32 GetCurUndoPos(){return m_nCurUndoPos;} in GetCurUndoPos()
317 FX_INT32 m_nCurUndoPos; variable