2015-02-12 23:16:25 +08:00
|
|
|
// Aseprite
|
2018-08-21 03:00:59 +08:00
|
|
|
// Copyright (C) 2001-2018 David Capello
|
2015-02-12 23:16:25 +08:00
|
|
|
//
|
2016-08-27 04:02:58 +08:00
|
|
|
// This program is distributed under the terms of
|
|
|
|
// the End-User License Agreement for Aseprite.
|
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"
|
2018-07-07 14:07:16 +08:00
|
|
|
#include "app/doc_api.h"
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "app/modules/gui.h"
|
2018-08-21 03:00:59 +08:00
|
|
|
#include "app/tx.h"
|
2017-12-01 10:41:45 +08:00
|
|
|
#include "app/ui/color_bar.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();
|
|
|
|
|
|
|
|
protected:
|
2015-10-01 03:34:43 +08:00
|
|
|
bool onEnabled(Context* context) override;
|
|
|
|
void onExecute(Context* context) override;
|
2012-01-06 06:45:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
BackgroundFromLayerCommand::BackgroundFromLayerCommand()
|
2017-12-02 02:10:21 +08:00
|
|
|
: Command(CommandId::BackgroundFromLayer(), CmdRecordableFlag)
|
2012-01-06 06:45:03 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2016-10-18 00:48:52 +08:00
|
|
|
!context->checkFlags(ContextFlags::HasBackgroundLayer) &&
|
|
|
|
// Isn't a reference layer
|
|
|
|
!context->checkFlags(ContextFlags::ActiveLayerIsReference);
|
2012-01-06 06:45:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void BackgroundFromLayerCommand::onExecute(Context* context)
|
|
|
|
{
|
2013-03-12 07:29:45 +08:00
|
|
|
ContextWriter writer(context);
|
2018-07-07 22:54:44 +08:00
|
|
|
Doc* document(writer.document());
|
2012-01-06 06:45:03 +08:00
|
|
|
|
|
|
|
{
|
2018-08-21 03:00:59 +08:00
|
|
|
Tx tx(writer.context(), "Background from Layer");
|
|
|
|
document->getApi(tx).backgroundFromLayer(
|
2014-09-12 12:58:33 +08:00
|
|
|
static_cast<LayerImage*>(writer.layer()));
|
2018-08-21 03:00:59 +08:00
|
|
|
tx.commit();
|
2012-01-06 06:45:03 +08:00
|
|
|
}
|
2014-05-08 11:30:36 +08:00
|
|
|
|
2018-09-07 01:18:59 +08:00
|
|
|
#ifdef ENABLE_UI
|
|
|
|
if (context->isUIAvailable())
|
|
|
|
update_screen_for_document(document);
|
|
|
|
#endif
|
2012-01-06 06:45:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Command* CommandFactory::createBackgroundFromLayerCommand()
|
|
|
|
{
|
|
|
|
return new BackgroundFromLayerCommand;
|
|
|
|
}
|
2013-08-06 08:20:19 +08:00
|
|
|
|
|
|
|
} // namespace app
|