diff options
author | Florian Jung <flo@windfisch.org> | 2011-08-30 17:00:30 +0000 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2011-08-30 17:00:30 +0000 |
commit | a7fba3acdfaa382effcc02633708d7cf5a7ec2a4 (patch) | |
tree | 5950956341c8f2cb8f8f7cae59ddefed1d168f01 /muse2/muse/structure.h | |
parent | 8c37b557d6f865b4320f7b1168030e7d54adacd0 (diff) |
improved movePartsToTheRight and merged with globalInsert
Diffstat (limited to 'muse2/muse/structure.h')
-rw-r--r-- | muse2/muse/structure.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/muse2/muse/structure.h b/muse2/muse/structure.h new file mode 100644 index 00000000..25cbb94e --- /dev/null +++ b/muse2/muse/structure.h @@ -0,0 +1,21 @@ +//========================================================= +// MusE +// Linux Music Editor +// structure.h +// (C) Copyright 2011 Florian Jung (flo93@users.sourceforge.net) +//========================================================= + +#ifndef __STRUCTURE_H__ +#define __STRUCTURE_H__ + +#include "undo.h" + +Undo movePartsTotheRight(unsigned int startTick, int moveTick); +void adjustGlobalLists(Undo& operations, int startPos, int diff); +void globalCut(); +void globalInsert(); +void globalSplit(); +void copyRange(); +void cutEvents(); + +#endif |