Symbol: UndoableEdit
src/apps/haikudepot/edits_generic/CompoundEdit.cpp
12
: UndoableEdit()
src/apps/haikudepot/edits_generic/CompoundEdit.h
17
class CompoundEdit : public UndoableEdit {
src/apps/haikudepot/edits_generic/EditManager.cpp
32
EditManager::Perform(UndoableEdit* edit, EditContext& context)
src/apps/haikudepot/edits_generic/EditManager.h
33
status_t Perform(UndoableEdit* edit,
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
13
UndoableEdit::UndoableEdit()
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
20
UndoableEdit::~UndoableEdit()
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
26
UndoableEdit::InitCheck()
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
33
UndoableEdit::Perform(EditContext& context)
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
40
UndoableEdit::Undo(EditContext& context)
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
47
UndoableEdit::Redo(EditContext& context)
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
54
UndoableEdit::GetName(BString& name)
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
61
UndoableEdit::UndoesPrevious(const UndoableEdit* previous)
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
68
UndoableEdit::CombineWithNext(const UndoableEdit* next)
src/apps/haikudepot/edits_generic/UndoableEdit.cpp
75
UndoableEdit::CombineWithPrevious(const UndoableEdit* previous)
src/apps/haikudepot/edits_generic/UndoableEdit.h
15
class UndoableEdit : public BReferenceable {
src/apps/haikudepot/edits_generic/UndoableEdit.h
17
UndoableEdit();
src/apps/haikudepot/edits_generic/UndoableEdit.h
18
virtual ~UndoableEdit();
src/apps/haikudepot/edits_generic/UndoableEdit.h
28
virtual bool UndoesPrevious(const UndoableEdit* previous);
src/apps/haikudepot/edits_generic/UndoableEdit.h
29
virtual bool CombineWithNext(const UndoableEdit* next);
src/apps/haikudepot/edits_generic/UndoableEdit.h
31
const UndoableEdit* previous);
src/apps/haikudepot/edits_generic/UndoableEdit.h
40
typedef BReference<UndoableEdit> UndoableEditRef;