Symbol: UndoableEdit
src/apps/haikudepot/edits_generic/CompoundEdit.cpp
13
: UndoableEdit()
src/apps/haikudepot/edits_generic/CompoundEdit.h
16
class CompoundEdit : public UndoableEdit {
src/apps/haikudepot/edits_generic/EditManager.cpp
35
EditManager::Perform(UndoableEdit* edit, EditContext& context)
src/apps/haikudepot/edits_generic/EditManager.h
31
status_t Perform(UndoableEdit* edit,
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
14
UndoableEdit::UndoableEdit()
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
21
UndoableEdit::~UndoableEdit()
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
27
UndoableEdit::InitCheck()
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
34
UndoableEdit::Perform(EditContext& context)
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
41
UndoableEdit::Undo(EditContext& context)
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
48
UndoableEdit::Redo(EditContext& context)
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
55
UndoableEdit::GetName(BString& name)
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
62
UndoableEdit::UndoesPrevious(const UndoableEdit* previous)
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
69
UndoableEdit::CombineWithNext(const UndoableEdit* next)
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
76
UndoableEdit::CombineWithPrevious(const UndoableEdit* previous)
src/apps/haikudepot/edits_generic/UndoableEdit.h
14
class UndoableEdit : public BReferenceable {
src/apps/haikudepot/edits_generic/UndoableEdit.h
16
UndoableEdit();
src/apps/haikudepot/edits_generic/UndoableEdit.h
17
virtual ~UndoableEdit();
src/apps/haikudepot/edits_generic/UndoableEdit.h
27
virtual bool UndoesPrevious(const UndoableEdit* previous);
src/apps/haikudepot/edits_generic/UndoableEdit.h
28
virtual bool CombineWithNext(const UndoableEdit* next);
src/apps/haikudepot/edits_generic/UndoableEdit.h
30
const UndoableEdit* previous);
src/apps/haikudepot/edits_generic/UndoableEdit.h
39
typedef BReference<UndoableEdit> UndoableEditRef;