Home
last modified time | relevance | path

Searched refs:m_undoHistory (Results 1 – 4 of 4) sorted by relevance

/dports/graphics/aseprite/aseprite-1.2.9/src/app/
H A Ddoc_undo.cpp32 : m_undoHistory(this) in DocUndo()
59 m_undoHistory.add(cmd); in add()
78 while (m_undoHistory.firstState() && in add()
92 return m_undoHistory.canUndo(); in canUndo()
97 return m_undoHistory.canRedo(); in canRedo()
108 m_undoHistory.undo(); in undo()
124 m_undoHistory.redo(); in redo()
134 m_undoHistory.clearRedo(); in clearRedo()
219 m_undoHistory.moveTo(state); in moveToState()
236 return m_undoHistory.currentState(); in nextUndo()
[all …]
H A Ddoc_undo.h63 const undo::UndoState* firstState() const { return m_undoHistory.firstState(); } in firstState()
64 const undo::UndoState* currentState() const { return m_undoHistory.currentState(); } in currentState()
75 undo::UndoHistory m_undoHistory; variable
/dports/multimedia/dvdstyler/DVDStyler-3.1/src/
H A DMainWin.cpp939 m_undoHistory.clear(); in SetChanged()
1135 m_undoHistory.clear(); in AddUndo()
1140 m_undoHistory.erase(m_undoHistory.end()); in AddUndo()
1143 m_undoHistory.erase(m_undoHistory.begin()); in AddUndo()
1149 m_undoHistory.push_back(undo); in AddUndo()
1150 m_undoPos = m_undoHistory.size() - 1; in AddUndo()
1160 m_dvd->Deserialize(m_undoHistory[m_undoPos].data); in DoUndo()
1161 m_changed = m_undoHistory[m_undoPos].changed; in DoUndo()
1167 int menuId = m_undoHistory[m_undoPos].selectedMenu; in DoUndo()
1169 menuId = m_undoHistory[m_undoPos+1].selectedMenu; in DoUndo()
[all …]
H A DMainWin.h129 vector<Undo> m_undoHistory; variable