aseprite/src/app/commands/cmd_remove_layer.cpp

111 lines
2.9 KiB
C++
Raw Normal View History

2015-02-12 23:16:25 +08:00
// Aseprite
// Copyright (C) 2001-2016 David Capello
2015-02-12 23:16:25 +08:00
//
// 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.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "app/app.h"
#include "app/commands/command.h"
#include "app/context_access.h"
#include "app/document_api.h"
#include "app/modules/gui.h"
#include "app/ui/status_bar.h"
#include "app/transaction.h"
#include "doc/layer.h"
#include "doc/sprite.h"
#include "ui/alert.h"
2012-06-18 09:49:58 +08:00
#include "ui/widget.h"
namespace app {
2015-02-12 23:16:25 +08:00
class RemoveLayerCommand : public Command {
public:
RemoveLayerCommand();
Command* clone() const override { return new RemoveLayerCommand(*this); }
protected:
bool onEnabled(Context* context) override;
void onExecute(Context* context) override;
};
RemoveLayerCommand::RemoveLayerCommand()
: Command("RemoveLayer",
"Remove Layer",
CmdRecordableFlag)
{
}
bool RemoveLayerCommand::onEnabled(Context* context)
{
return context->checkFlags(ContextFlags::ActiveDocumentIsWritable |
ContextFlags::HasActiveSprite |
ContextFlags::HasActiveLayer |
2014-11-17 10:03:30 +08:00
ContextFlags::ActiveLayerIsVisible |
ContextFlags::ActiveLayerIsEditable);
}
void RemoveLayerCommand::onExecute(Context* context)
{
std::string layerName;
ContextWriter writer(context);
Document* document(writer.document());
Sprite* sprite(writer.sprite());
{
Transaction transaction(writer.context(), "Remove Layer");
DocumentApi api = document->getApi(transaction);
const Site* site = writer.site();
if (site->inTimeline() &&
!site->selectedLayers().empty()) {
SelectedLayers selLayers = site->selectedLayers();
remove_children_if_parent_is_selected(selLayers);
int deletedTopLevelLayers = 0;
for (Layer* layer : selLayers) {
if (layer->parent() == sprite->root())
++deletedTopLevelLayers;
}
if (deletedTopLevelLayers == sprite->countLayers()) {
ui::Alert::show("Error<<You cannot delete all layers.||&OK");
return;
}
for (Layer* layer : selLayers) {
api.removeLayer(layer);
}
}
else {
if (sprite->allLayersCount() == 1) {
ui::Alert::show("Error<<You cannot delete the last layer.||&OK");
return;
}
Layer* layer = writer.layer();
layerName = layer->name();
api.removeLayer(layer);
}
transaction.commit();
}
update_screen_for_document(document);
StatusBar::instance()->invalidate();
if (!layerName.empty())
StatusBar::instance()->showTip(1000, "Layer '%s' removed", layerName.c_str());
else
StatusBar::instance()->showTip(1000, "Layers removed");
}
Command* CommandFactory::createRemoveLayerCommand()
{
return new RemoveLayerCommand;
}
} // namespace app