Skip to content
OE_actionsSelection.h 3.55 KiB
Newer Older
3dsman's avatar
3dsman committed
/*
 * Copyright (c) 2015 Tricoire Sebastien 3dsman@free.fr
 *
 * This software is provided 'as-is', without any express or implied
 * warranty.  In no event will the authors be held liable for any damages
 * arising from the use of this software.
 *
 * Permission is granted to anyone to use this software for any purpose,
 * including commercial applications, and to alter it and redistribute it
 * freely, subject to the following restrictions:
 *
 * 1. The origin of this software must not be misrepresented; you must not
 * claim that you wrote the original software. If you use this software
 * in a product, an acknowledgment in the product documentation would be
 * appreciated but is not required.
 * 2. Altered source versions must be plainly marked as such, and must not be
 * misrepresented as being the original software.
 * 3. This notice may not be removed or altered from any source distribution.
 *
 */

raoul's avatar
raoul committed
#pragma once
3dsman's avatar
3dsman committed

#include "actions/OE_actions.h"
#include "curves/OE_curve.h"
#include "curves/OE_joincurve.h"
#include "curves/OE_subcurve.h"
#include "curves/OE_pointcurve.h"

class OE_actionSelectionAddCurves : public OE_actions
{
raoul's avatar
raoul committed
	public:
		OE_actionSelectionAddCurves(std::list<OE_pointcurve*> curves, bool replace);
raoul's avatar
raoul committed
		virtual ~OE_actionSelectionAddCurves();

		virtual void undo();
		virtual void redo();
raoul's avatar
raoul committed
	protected:
		std::list<OE_pointcurve*> actionCurves;
3dsman's avatar
3dsman committed
};

class OE_actionSelectionRemoveCurves : public OE_actions
{
raoul's avatar
raoul committed
	public:
		OE_actionSelectionRemoveCurves(std::list<OE_pointcurve*> curves);
raoul's avatar
raoul committed
		virtual ~OE_actionSelectionRemoveCurves();
raoul's avatar
raoul committed
		virtual void undo();
		virtual void redo();
raoul's avatar
raoul committed
	protected:
		std::list<OE_pointcurve*> actionCurves;
3dsman's avatar
3dsman committed
};

class OE_actionSelectionClearCurves : public OE_actions
{
raoul's avatar
raoul committed
	public:
		OE_actionSelectionClearCurves();
raoul's avatar
raoul committed
		virtual ~OE_actionSelectionClearCurves();
raoul's avatar
raoul committed
		virtual void undo();
		virtual void redo();
raoul's avatar
raoul committed
	protected:
		std::list<OE_pointcurve*> actionCurves;
3dsman's avatar
3dsman committed
};

class OE_actionSelectionAddStitches : public OE_actions
{
    public:
raoul's avatar
raoul committed
		OE_actionSelectionAddStitches(std::list<OE_stitchs*> stitches, bool replace);
raoul's avatar
raoul committed
		virtual ~OE_actionSelectionAddStitches();
raoul's avatar
raoul committed
		virtual void undo();
		virtual void redo();
raoul's avatar
raoul committed
	protected:
		std::list<OE_stitchs*> actionStitches;
3dsman's avatar
3dsman committed
};


class OE_actionSelectionRemoveStitches : public OE_actions
{
raoul's avatar
raoul committed
	public:
		OE_actionSelectionRemoveStitches(std::list<OE_stitchs*> stitches);
raoul's avatar
raoul committed
		virtual ~OE_actionSelectionRemoveStitches();
raoul's avatar
raoul committed
		virtual void undo();
		virtual void redo();
raoul's avatar
raoul committed
	protected:
		std::list<OE_stitchs*> actionStitches;
3dsman's avatar
3dsman committed
};

class OE_actionSelectionClearStitches : public OE_actions
{
raoul's avatar
raoul committed
	public:
		OE_actionSelectionClearStitches();
raoul's avatar
raoul committed
		virtual ~OE_actionSelectionClearStitches();
raoul's avatar
raoul committed
		virtual void undo();
		virtual void redo();
raoul's avatar
raoul committed
	protected:
		std::list<OE_stitchs*> actionStitches;
3dsman's avatar
3dsman committed
};
raoul's avatar
raoul committed
	public:
		OE_actionSelectionClear();
raoul's avatar
raoul committed
		virtual ~OE_actionSelectionClear();
raoul's avatar
raoul committed
		virtual void undo();
		virtual void redo();
raoul's avatar
raoul committed
	protected:
		OE_actions* actionClearCurves;
		OE_actions* actionClearStitches;

class OE_actionMoveSelection : public OE_actions
{
	public:
		OE_actionMoveSelection(vector_2d offset);

		virtual ~OE_actionMoveSelection();

		virtual void undo();
		virtual void redo();

		void setMove(vector_2d offset);
raoul's avatar
raoul committed

	protected:
		vector_2d oldCoord;
		vector_2d offset;
};

class OE_actionScaleSelection : public OE_actions
{
	public:
		OE_actionScaleSelection(vector_2d ratio, vector_2d pos);

		virtual ~OE_actionScaleSelection();

		virtual void undo();
		virtual void redo();

		void setScale(vector_2d ratio);
raoul's avatar
raoul committed

	protected:
		vector_2d oldCoord;
		vector_2d ratio;
		vector_2d pos;
};