Symbol: EditContext
src/apps/haikudepot/edits_generic/CompoundEdit.cpp
32
CompoundEdit::Perform(EditContext& context)
src/apps/haikudepot/edits_generic/CompoundEdit.cpp
57
CompoundEdit::Undo(EditContext& context)
src/apps/haikudepot/edits_generic/CompoundEdit.cpp
82
CompoundEdit::Redo(EditContext& context)
src/apps/haikudepot/edits_generic/CompoundEdit.h
24
virtual status_t Perform(EditContext& context);
src/apps/haikudepot/edits_generic/CompoundEdit.h
25
virtual status_t Undo(EditContext& context);
src/apps/haikudepot/edits_generic/CompoundEdit.h
26
virtual status_t Redo(EditContext& context);
src/apps/haikudepot/edits_generic/EditContext.cpp
10
EditContext::EditContext()
src/apps/haikudepot/edits_generic/EditContext.cpp
15
EditContext::~EditContext()
src/apps/haikudepot/edits_generic/EditContext.h
19
class EditContext : public BReferenceable {
src/apps/haikudepot/edits_generic/EditContext.h
21
EditContext();
src/apps/haikudepot/edits_generic/EditContext.h
22
virtual ~EditContext();
src/apps/haikudepot/edits_generic/EditContext.h
25
typedef BReference<EditContext> EditContextRef;
src/apps/haikudepot/edits_generic/EditManager.cpp
32
EditManager::Perform(UndoableEdit* edit, EditContext& context)
src/apps/haikudepot/edits_generic/EditManager.cpp
42
EditManager::Perform(const UndoableEditRef& edit, EditContext& context)
src/apps/haikudepot/edits_generic/EditManager.cpp
64
EditManager::Undo(EditContext& context)
src/apps/haikudepot/edits_generic/EditManager.cpp
84
EditManager::Redo(EditContext& context)
src/apps/haikudepot/edits_generic/EditManager.h
17
class EditContext;
src/apps/haikudepot/edits_generic/EditManager.h
34
EditContext& context);
src/apps/haikudepot/edits_generic/EditManager.h
36
EditContext& context);
src/apps/haikudepot/edits_generic/EditManager.h
38
status_t Undo(EditContext& context);
src/apps/haikudepot/edits_generic/EditManager.h
39
status_t Redo(EditContext& context);
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.h
13
class EditContext;
src/apps/haikudepot/edits_generic/UndoableEdit.h
22
virtual status_t Perform(EditContext& context);
src/apps/haikudepot/edits_generic/UndoableEdit.h
23
virtual status_t Undo(EditContext& context);
src/apps/haikudepot/edits_generic/UndoableEdit.h
24
virtual status_t Redo(EditContext& context);