root/src/apps/icon-o-matic/transformable/ResetTransformationCommand.h
/*
 * Copyright 2006-2007, Haiku. All rights reserved.
 * Distributed under the terms of the MIT License.
 *
 * Authors:
 *              Stephan Aßmus <superstippi@gmx.de>
 */

#ifndef RESET_TRANSFORM_COMMAND_H
#define RESET_TRANSFORM_COMMAND_H


#include "Command.h"
#include "IconBuild.h"


_BEGIN_ICON_NAMESPACE
        class Transformable;
_END_ICON_NAMESPACE

_USING_ICON_NAMESPACE


class ResetTransformationCommand : public Command {
 public:
                                                                ResetTransformationCommand(
                                                                                Transformable** const objects,
                                                                                int32 count);
        virtual                                         ~ResetTransformationCommand();

        // Command interface
        virtual status_t                        InitCheck();

        virtual status_t                        Perform();
        virtual status_t                        Undo();

        virtual void                            GetName(BString& name);

 protected:
                        Transformable**         fObjects;
                        double*                         fOriginals;
                        int32                           fCount;
};

#endif // RESET_TRANSFORM_COMMAND_H