aseprite/src/app/commands/cmd_grid.cpp

159 lines
3.9 KiB
C++

// Aseprite
// Copyright (C) 2019-2020 Igara Studio S.A.
// Copyright (C) 2001-2018 David Capello
//
// 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/cmd/set_grid_bounds.h"
#include "app/commands/command.h"
#include "app/context.h"
#include "app/context_access.h"
#include "app/doc.h"
#include "app/pref/preferences.h"
#include "app/tx.h"
#include "app/ui/status_bar.h"
#include "doc/mask.h"
#include "ui/window.h"
#include "grid_settings.xml.h"
#include <algorithm>
namespace app {
using namespace ui;
using namespace gfx;
class SnapToGridCommand : public Command {
public:
SnapToGridCommand() : Command(CommandId::SnapToGrid()) {}
protected:
bool onChecked(Context* ctx) override
{
auto& docPref = Preferences::instance().document(ctx->activeDocument());
return docPref.grid.snap();
}
void onExecute(Context* ctx) override
{
auto& docPref = Preferences::instance().document(ctx->activeDocument());
bool newValue = !docPref.grid.snap();
docPref.grid.snap(newValue);
if (ctx->isUIAvailable())
StatusBar::instance()->showSnapToGridWarning(newValue);
}
};
class SelectionAsGridCommand : public Command {
public:
SelectionAsGridCommand() : Command(CommandId::SelectionAsGrid()) {}
protected:
bool onEnabled(Context* ctx) override
{
return ctx->checkFlags(ContextFlags::ActiveDocumentIsWritable | ContextFlags::HasVisibleMask);
}
void onExecute(Context* ctx) override
{
ContextWriter writer(ctx);
Doc* doc = writer.document();
const Mask* mask = doc->mask();
gfx::Rect newGrid = mask->bounds();
Tx tx(writer, friendlyName(), ModifyDocument);
tx(new cmd::SetGridBounds(writer.sprite(), newGrid));
tx.commit();
auto& docPref = Preferences::instance().document(doc);
docPref.grid.bounds(newGrid);
if (!docPref.show.grid()) // Make grid visible
docPref.show.grid(true);
}
};
class GridSettingsCommand : public Command {
public:
GridSettingsCommand();
protected:
bool onEnabled(Context* context) override;
void onExecute(Context* context) override;
};
GridSettingsCommand::GridSettingsCommand() : Command(CommandId::GridSettings())
{
}
bool GridSettingsCommand::onEnabled(Context* context)
{
return context->isUIAvailable();
}
void GridSettingsCommand::onExecute(Context* context)
{
gen::GridSettings window;
Site site = context->activeSite();
Rect bounds = site.gridBounds();
window.gridX()->setTextf("%d", bounds.x);
window.gridY()->setTextf("%d", bounds.y);
window.gridW()->setTextf("%d", bounds.w);
window.gridH()->setTextf("%d", bounds.h);
window.gridW()->Leave.connect([&window] {
// Prevent entering a width lesser than 1
if (window.gridW()->textInt() <= 0)
window.gridW()->setText("1");
});
window.gridH()->Leave.connect([&window] {
// Prevent entering a height lesser than 1
if (window.gridH()->textInt() <= 0)
window.gridH()->setText("1");
});
window.openWindowInForeground();
if (window.closer() == window.ok()) {
bounds.x = window.gridX()->textInt();
bounds.y = window.gridY()->textInt();
bounds.w = window.gridW()->textInt();
bounds.h = window.gridH()->textInt();
bounds.w = std::max(bounds.w, 1);
bounds.h = std::max(bounds.h, 1);
ContextWriter writer(context);
Tx tx(writer, friendlyName(), ModifyDocument);
tx(new cmd::SetGridBounds(site.sprite(), bounds));
tx.commit();
auto& docPref = Preferences::instance().document(site.document());
if (!docPref.show.grid()) // Make grid visible
docPref.show.grid(true);
}
}
Command* CommandFactory::createSnapToGridCommand()
{
return new SnapToGridCommand;
}
Command* CommandFactory::createGridSettingsCommand()
{
return new GridSettingsCommand;
}
Command* CommandFactory::createSelectionAsGridCommand()
{
return new SelectionAsGridCommand;
}
} // namespace app