Home
last modified time | relevance | path

Searched refs:CmdSequence (Results 1 – 22 of 22) sorted by relevance

/dports/graphics/aseprite/aseprite-1.2.9/src/app/
H A Dcmd_sequence.cpp15 CmdSequence::CmdSequence() in CmdSequence() function in app::CmdSequence
19 CmdSequence::~CmdSequence() in ~CmdSequence()
25 void CmdSequence::add(Cmd* cmd) in add()
30 void CmdSequence::onExecute() in onExecute()
36 void CmdSequence::onUndo() in onUndo()
42 void CmdSequence::onRedo() in onRedo()
48 size_t CmdSequence::onMemSize() const in onMemSize()
58 void CmdSequence::executeAndAdd(Cmd* cmd) in executeAndAdd()
H A Dcmd_sequence.h17 class CmdSequence : public Cmd {
19 CmdSequence();
20 ~CmdSequence();
H A Dcmd_transaction.cpp75 CmdSequence::onExecute(); in onExecute()
93 CmdSequence::onUndo(); in onUndo()
101 CmdSequence::onRedo(); in onRedo()
114 size_t size = CmdSequence::onMemSize(); in onMemSize()
H A Dcmd_transaction.h22 class CmdTransaction : public CmdSequence {
/dports/graphics/aseprite/aseprite-1.2.9/src/app/cmd/
H A Dcopy_frame.h19 class CopyFrame : public CmdSequence
28 CmdSequence::onMemSize() - sizeof(CmdSequence); in onMemSize()
H A Dtrim_cel.h20 class TrimCel : public CmdSequence {
H A Dlayer_from_background.h21 class LayerFromBackground : public CmdSequence {
H A Dconfigure_background.h21 class ConfigureBackground : public CmdSequence {
H A Dbackground_from_layer.h18 class BackgroundFromLayer : public CmdSequence
H A Dflatten_layers.h18 class FlattenLayers : public CmdSequence
H A Dflip_masked_cel.h23 class FlipMaskedCel : public CmdSequence {
H A Dclear_cel.h33 CmdSequence m_seq;
H A Dremove_frame.h35 CmdSequence m_seq;
H A Dcopy_cel.h24 class CopyCel : public CmdSequence {
H A Dmove_cel.h24 class MoveCel : public CmdSequence {
H A Dpatch_cel.h24 class PatchCel : public CmdSequence
H A Dclear_mask.h40 CmdSequence m_seq;
H A Dclear_rect.h43 CmdSequence m_seq;
H A Dset_pixel_format.h50 CmdSequence m_seq;
H A Dmove_cel.cpp132 CmdSequence::onFireNotifications(); in onFireNotifications()
H A Dcopy_cel.cpp127 CmdSequence::onFireNotifications(); in onFireNotifications()
/dports/graphics/aseprite/aseprite-1.2.9/src/app/ui/
H A Dcolor_bar.cpp1178 ASSERT(dynamic_cast<CmdSequence*>(undo->lastExecutedCmd())); in updateCurrentSpritePalette()
1179 static_cast<CmdSequence*>(undo->lastExecutedCmd())->add(cmd); in updateCurrentSpritePalette()