Symbol: EditContext
src/apps/haikudepot/edits_generic/CompoundEdit.cpp
33
CompoundEdit::Perform(EditContext& context)
src/apps/haikudepot/edits_generic/CompoundEdit.cpp
58
CompoundEdit::Undo(EditContext& context)
src/apps/haikudepot/edits_generic/CompoundEdit.cpp
83
CompoundEdit::Redo(EditContext& context)
src/apps/haikudepot/edits_generic/CompoundEdit.h
23
virtual status_t Perform(EditContext& context);
src/apps/haikudepot/edits_generic/CompoundEdit.h
24
virtual status_t Undo(EditContext& context);
src/apps/haikudepot/edits_generic/CompoundEdit.h
25
virtual status_t Redo(EditContext& context);
src/apps/haikudepot/edits_generic/EditContext.cpp
11
EditContext::EditContext()
src/apps/haikudepot/edits_generic/EditContext.cpp
16
EditContext::~EditContext()
src/apps/haikudepot/edits_generic/EditContext.h
18
class EditContext : public BReferenceable {
src/apps/haikudepot/edits_generic/EditContext.h
20
EditContext();
src/apps/haikudepot/edits_generic/EditContext.h
21
virtual ~EditContext();
src/apps/haikudepot/edits_generic/EditContext.h
24
typedef BReference<EditContext> EditContextRef;
src/apps/haikudepot/edits_generic/EditManager.cpp
35
EditManager::Perform(UndoableEdit* edit, EditContext& context)
src/apps/haikudepot/edits_generic/EditManager.cpp
45
EditManager::Perform(const UndoableEditRef& edit, EditContext& context)
src/apps/haikudepot/edits_generic/EditManager.cpp
67
EditManager::Undo(EditContext& context)
src/apps/haikudepot/edits_generic/EditManager.cpp
87
EditManager::Redo(EditContext& context)
src/apps/haikudepot/edits_generic/EditManager.h
15
class EditContext;
src/apps/haikudepot/edits_generic/EditManager.h
32
EditContext& context);
src/apps/haikudepot/edits_generic/EditManager.h
34
EditContext& context);
src/apps/haikudepot/edits_generic/EditManager.h
36
status_t Undo(EditContext& context);
src/apps/haikudepot/edits_generic/EditManager.h
37
status_t Redo(EditContext& context);
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.h
12
class EditContext;
src/apps/haikudepot/edits_generic/UndoableEdit.h
21
virtual status_t Perform(EditContext& context);
src/apps/haikudepot/edits_generic/UndoableEdit.h
22
virtual status_t Undo(EditContext& context);
src/apps/haikudepot/edits_generic/UndoableEdit.h
23
virtual status_t Redo(EditContext& context);