aseprite/src/app/commands/cmd_goto_layer.cpp

118 lines
2.6 KiB
C++
Raw Normal View History

2015-02-12 23:16:25 +08:00
// Aseprite
// Copyright (C) 2001-2017 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.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "app/app.h"
#include "app/commands/command.h"
#include "app/context_access.h"
#include "app/modules/editors.h"
#include "app/modules/gui.h"
#include "app/ui/editor/editor.h"
#include "app/ui/status_bar.h"
#include "app/ui/timeline/timeline.h"
#include "doc/layer.h"
#include "doc/sprite.h"
namespace app {
2016-06-11 02:23:45 +08:00
class GotoLayerCommand : public Command {
public:
2016-06-11 02:23:45 +08:00
GotoLayerCommand(int offset,
const char* id,
2016-06-11 02:23:45 +08:00
CommandFlags flags)
: Command(id, flags),
2016-06-11 02:23:45 +08:00
m_offset(offset) {
}
protected:
2016-06-11 02:23:45 +08:00
bool onEnabled(Context* context) override {
return (current_editor &&
current_editor->document());
}
void onExecute(Context* context) override {
Site site = current_editor->getSite();
Layer* layer = site.layer();
if (!layer)
return;
if (m_offset > 0) {
int i = m_offset;
while (i-- > 0) {
layer = layer->getNextBrowsable();
if (!layer)
layer = site.sprite()->firstBrowsableLayer();
2016-06-11 02:23:45 +08:00
}
}
else if (m_offset < 0) {
int i = m_offset;
while (i++ < 0) {
layer = layer->getPreviousBrowsable();
2016-06-15 02:00:11 +08:00
if (!layer)
layer = site.sprite()->root()->lastLayer();
2016-06-11 02:23:45 +08:00
}
}
2016-06-15 02:00:11 +08:00
site.layer(layer);
2016-06-11 02:23:45 +08:00
// Flash the current layer
current_editor->setLayer(site.layer());
current_editor->flashCurrentLayer();
updateStatusBar(site);
}
void updateStatusBar(Site& site) {
if (site.layer() != NULL)
2016-06-11 02:23:45 +08:00
StatusBar::instance()->setStatusText(
1000, "%s '%s' selected",
(site.layer()->isGroup() ? "Group": "Layer"),
site.layer()->name().c_str());
}
2016-06-11 02:23:45 +08:00
private:
int m_offset;
};
2016-06-11 02:23:45 +08:00
class GotoPreviousLayerCommand : public GotoLayerCommand {
public:
2016-06-11 02:23:45 +08:00
GotoPreviousLayerCommand()
: GotoLayerCommand(-1, "GotoPreviousLayer",
CmdUIOnlyFlag) {
}
Command* clone() const override {
return new GotoPreviousLayerCommand(*this);
}
};
2016-06-11 02:23:45 +08:00
class GotoNextLayerCommand : public GotoLayerCommand {
public:
2016-06-11 02:23:45 +08:00
GotoNextLayerCommand()
: GotoLayerCommand(+1, "GotoNextLayer",
CmdUIOnlyFlag) {
}
Command* clone() const override {
return new GotoNextLayerCommand(*this);
}
};
Command* CommandFactory::createGotoPreviousLayerCommand()
{
return new GotoPreviousLayerCommand;
}
Command* CommandFactory::createGotoNextLayerCommand()
{
return new GotoNextLayerCommand;
}
} // namespace app