2015-02-12 23:16:25 +08:00
|
|
|
// Aseprite
|
|
|
|
// Copyright (C) 2001-2015 David Capello
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
|
|
// published by the Free Software Foundation.
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2012-01-06 06:45:03 +08:00
|
|
|
#include "config.h"
|
2013-08-06 08:20:19 +08:00
|
|
|
#endif
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "app/commands/command.h"
|
|
|
|
#include "app/context_access.h"
|
|
|
|
#include "app/document_api.h"
|
|
|
|
#include "app/modules/gui.h"
|
|
|
|
#include "app/ui/color_bar.h"
|
2015-01-19 09:05:33 +08:00
|
|
|
#include "app/transaction.h"
|
2014-10-21 09:21:31 +08:00
|
|
|
#include "doc/layer.h"
|
|
|
|
#include "doc/sprite.h"
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
namespace app {
|
2015-02-12 23:16:25 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
class BackgroundFromLayerCommand : public Command {
|
2012-01-06 06:45:03 +08:00
|
|
|
public:
|
|
|
|
BackgroundFromLayerCommand();
|
2014-08-15 10:07:47 +08:00
|
|
|
Command* clone() const override { return new BackgroundFromLayerCommand(*this); }
|
2012-01-06 06:45:03 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
bool onEnabled(Context* context);
|
|
|
|
void onExecute(Context* context);
|
|
|
|
};
|
|
|
|
|
|
|
|
BackgroundFromLayerCommand::BackgroundFromLayerCommand()
|
|
|
|
: Command("BackgroundFromLayer",
|
|
|
|
"BackgroundFromLayer",
|
|
|
|
CmdRecordableFlag)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BackgroundFromLayerCommand::onEnabled(Context* context)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
context->checkFlags(ContextFlags::ActiveDocumentIsWritable |
|
2014-11-17 10:03:30 +08:00
|
|
|
ContextFlags::ActiveLayerIsVisible |
|
|
|
|
ContextFlags::ActiveLayerIsEditable |
|
2015-01-19 09:05:33 +08:00
|
|
|
ContextFlags::ActiveLayerIsImage) &&
|
2012-01-06 06:45:03 +08:00
|
|
|
// Doesn't have a background layer
|
|
|
|
!context->checkFlags(ContextFlags::HasBackgroundLayer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BackgroundFromLayerCommand::onExecute(Context* context)
|
|
|
|
{
|
2013-03-12 07:29:45 +08:00
|
|
|
ContextWriter writer(context);
|
|
|
|
Document* document(writer.document());
|
2012-01-06 06:45:03 +08:00
|
|
|
|
|
|
|
{
|
2015-01-19 09:05:33 +08:00
|
|
|
Transaction transaction(writer.context(), "Background from Layer");
|
|
|
|
document->getApi(transaction).backgroundFromLayer(
|
2014-09-12 12:58:33 +08:00
|
|
|
static_cast<LayerImage*>(writer.layer()));
|
2015-01-19 09:05:33 +08:00
|
|
|
transaction.commit();
|
2012-01-06 06:45:03 +08:00
|
|
|
}
|
2014-05-08 11:30:36 +08:00
|
|
|
|
2012-01-06 06:45:03 +08:00
|
|
|
update_screen_for_document(document);
|
|
|
|
}
|
|
|
|
|
|
|
|
Command* CommandFactory::createBackgroundFromLayerCommand()
|
|
|
|
{
|
|
|
|
return new BackgroundFromLayerCommand;
|
|
|
|
}
|
2013-08-06 08:20:19 +08:00
|
|
|
|
|
|
|
} // namespace app
|