Skip to content
OE_actionsStitchs.h 4.54 KiB
Newer Older
/*
 * 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

#include "actions/OE_actions.h"
#include "stitchs/OE_stitchs.h"
#include "stitchs/OE_birailstitch.h"
#include "stitchs/OE_linestitch.h"
#include "stitchs/OE_linkstitch.h"
3dsman's avatar
3dsman committed
class OE_actionScaleSelectedLineStitchLen;
class OE_actionScaleSelectedBirailStitchLen;
class OE_actionScaleSelectedFillStitchLen;
class OE_actionScaleSelectedLineStitchWidth;
class OE_actionScaleSelectedFillStitchWidth;
class OE_actionSetSelectedLineStitchPattern;
class OE_actionSetSelectedFillStitchPattern;

class OE_actionNewStitch : public OE_actions
{
raoul's avatar
raoul committed
	public:
		OE_actionNewStitch(OE_document* doc, OE_stitchs* stitch);
raoul's avatar
raoul committed
		virtual ~OE_actionNewStitch();
raoul's avatar
raoul committed
		virtual void undo();
		virtual void redo();

	protected:
		OE_stitchs* actionStitch;
		OE_stitchs* linkStitch;
};

class OE_actionDelStitch : public OE_actions
{
raoul's avatar
raoul committed
	public:
		OE_actionDelStitch(OE_document* doc, OE_stitchs* stitch);
raoul's avatar
raoul committed
		virtual ~OE_actionDelStitch();
raoul's avatar
raoul committed
		virtual void undo();
		virtual void redo();
raoul's avatar
raoul committed
	protected:
		OE_stitchs* actionStitch;
		OE_linkstitch* linkStitchBefore;
		OE_linkstitch* linkStitchAfter;
		OE_stitchs* nextStitch;
		OE_stitchs* selNextLinkStitchBefore;
		OE_stitchs* selNextLinkStitchAfter;
		OE_stitchs* selNextStitch;
raoul's avatar
raoul committed
		OE_linkstitch* newLinkStitch;

		bool linkStitchBeforeSelected;
		bool linkStitchAfterSelected;
		bool selected;
class OE_actionSetStitchMaxLen : public OE_actions
raoul's avatar
raoul committed
	public:
		OE_actionSetStitchMaxLen(OE_document* doc, OE_stitchs* stitch, float maxLen);
raoul's avatar
raoul committed
		virtual ~OE_actionSetStitchMaxLen();
raoul's avatar
raoul committed
		virtual void undo();
		virtual void redo();
raoul's avatar
raoul committed
	protected:
		OE_stitchs* actionStitch;
		float oldMaxLen;
class OE_actionSetStitchThread : public OE_actions
	public:
		OE_actionSetStitchThread(OE_document* doc, OE_stitchs* stitch, OE_thread * thread);
		virtual ~OE_actionSetStitchThread();
		virtual void undo();
		virtual void redo();
raoul's avatar
raoul committed

	protected:
		OE_stitchs* actionStitch;
		OE_thread * oldThread;
3dsman's avatar
3dsman committed
class OE_actionScaleSelectedStitchLen : public OE_actions
{
	public:
		OE_actionScaleSelectedStitchLen(OE_document* doc, float scale);
3dsman's avatar
3dsman committed

		virtual ~OE_actionScaleSelectedStitchLen();

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

	protected:
		OE_actionScaleSelectedLineStitchLen* actionScaleSelectedLineStitchLen;
		OE_actionScaleSelectedBirailStitchLen* actionScaleSelectedBirailStitchLen;
		OE_actionScaleSelectedFillStitchLen* actionScaleSelectedFillStitchLen;
};

class OE_actionScaleSelectedStitchWidth : public OE_actions
{
	public:
	OE_actionScaleSelectedStitchWidth(OE_document* doc, float scale);
3dsman's avatar
3dsman committed

		virtual ~OE_actionScaleSelectedStitchWidth();

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

	protected:
		OE_actionScaleSelectedLineStitchWidth* actionScaleSelectedLineStitchWidth;
		OE_actionScaleSelectedFillStitchWidth* actionScaleSelectedFillStitchWidth;
};

class OE_actionSetSelectedStitchPattern : public OE_actions
{
	public:
		OE_actionSetSelectedStitchPattern(OE_document* doc, OE_pattern* pattern);
3dsman's avatar
3dsman committed

		virtual ~OE_actionSetSelectedStitchPattern();

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

	protected:
		OE_actionSetSelectedLineStitchPattern* actionSetSelectedLineStitchPattern;
		OE_actionSetSelectedFillStitchPattern* actionSetSelectedFillStitchPattern;
};

class OE_actionMoveInListSelectedStitches : public OE_actions
{
    public:
        OE_actionMoveInListSelectedStitches(OE_document* doc, int posInsertion);

        virtual ~OE_actionMoveInListSelectedStitches();

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

    protected:
        std::list<OE_stitchs*> actionStitches;
        std::list<OE_linkstitch*> newLinkStitches;
        std::list<OE_linkstitch*> oldLinkStitches;
        void startNewBlock(std::list<OE_stitchs*> &list, OE_stitchs* stitch);
};

3dsman's avatar
3dsman committed