Skip to content
OE_actionsStitchs.h 2.32 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"

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;
        OE_stitchs* linkStitch;
};

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;
};

class OE_actionNewBirailStitch : public OE_actions
{
    public:
        OE_actionNewBirailStitch(OE_curve* curve1, OE_curve* curve2, bool reverse1, bool reverse2, float offset1, float offset2, float len);

        virtual ~OE_actionNewBirailStitch();

        virtual void undo();

        virtual void redo();
    protected:
        OE_actions* action;
};

class OE_actionNewLineStitch : public OE_actions
{
    public:
        OE_actionNewLineStitch(OE_curve* curve, float len, float width, unsigned motif, float offset);

        virtual ~OE_actionNewLineStitch();

        virtual void undo();

        virtual void redo();
    protected:
        OE_actions* action;
};
#endif // OE_ACTIONSSTITCHS_H