You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
428 B
28 lines
428 B
#pragma once
|
|
|
|
#include "BaseCmd.h"
|
|
#include "BaseSurface.h"
|
|
#include "SurfaceStack.h"
|
|
|
|
namespace ofx {
|
|
namespace piMapper {
|
|
|
|
class MvLayerDnCmd : public BaseUndoCmd {
|
|
|
|
public:
|
|
MvLayerDnCmd(SurfaceStack * stack, BaseSurface * selectedSurface);
|
|
void exec();
|
|
void undo();
|
|
|
|
private:
|
|
SurfaceStack * _stack;
|
|
|
|
BaseSurface * _selectedSurface;
|
|
|
|
int _selectedSurfaceIndex;
|
|
|
|
};
|
|
|
|
} // namespace piMapper
|
|
} // namespace ofx
|
|
|
|
|