Skip to content
OE_actionsStitchs.h 2.71 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.
 *
 */

#ifndef OE_ACTIONSSTITCHS_H
#define OE_ACTIONSSTITCHS_H


#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"

class OE_actionNewStitch : public OE_actions
{
    public:
        OE_actionNewStitch(OE_stitchs* stitch);

        virtual ~OE_actionNewStitch();
		
        virtual void undo();

        virtual void redo();
    protected:
        OE_stitchs* actionStitch = 0;
        OE_stitchs* linkStitch = 0;
};

class OE_actionDelStitch : public OE_actions
{
    public:
        OE_actionDelStitch(OE_stitchs* stitch);

        virtual ~OE_actionDelStitch();

        virtual void undo();

        virtual void redo();

    protected:
        OE_stitchs* actionStitch = 0;
		OE_linkstitch* linkStitchBefore = 0;
		OE_linkstitch* linkStitchAfter = 0;
		OE_stitchs* nextStitch = 0;
		OE_stitchs* selNextLinkStitchBefore = 0;
		OE_stitchs* selNextLinkStitchAfter = 0;
		OE_stitchs* selNextStitch = 0;

		OE_linkstitch* newLinkStitch = 0;

		bool linkStitchBeforeSelected = false;
		bool linkStitchAfterSelected = false;
		bool selected = false;
class OE_actionSetStitchMaxLen : public OE_actions
        OE_actionSetStitchMaxLen(OE_stitchs* stitch, float maxLen);
        virtual ~OE_actionSetStitchMaxLen();

        virtual void undo();

        virtual void redo();
    protected:
        OE_stitchs* actionStitch = 0;
class OE_actionSetStitchThread : public OE_actions
        OE_actionSetStitchThread(OE_stitchs* stitch, OE_thread * thread);
        virtual ~OE_actionSetStitchThread();

        virtual void undo();

        virtual void redo();
    protected:
        OE_stitchs* actionStitch = 0;
        OE_thread * oldThread = 0;
#endif // OE_ACTIONSSTITCHS_H