2013-08-09 08:01:20 +08:00
|
|
|
/* Aseprite
|
2013-01-27 23:13:13 +08:00
|
|
|
* Copyright (C) 2001-2013 David Capello
|
2012-01-06 06:45:03 +08:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
*/
|
|
|
|
|
|
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/app.h"
|
2014-01-29 10:56:44 +08:00
|
|
|
#include "app/color.h"
|
|
|
|
|
#include "app/color_picker.h"
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "app/commands/command.h"
|
|
|
|
|
#include "app/commands/params.h"
|
2014-01-29 10:56:44 +08:00
|
|
|
#include "app/document_location.h"
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "app/modules/editors.h"
|
2014-01-29 10:56:44 +08:00
|
|
|
#include "app/settings/settings.h"
|
|
|
|
|
#include "app/tools/tool.h"
|
|
|
|
|
#include "app/tools/tool_box.h"
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "app/ui/color_bar.h"
|
|
|
|
|
#include "app/ui/editor/editor.h"
|
2014-01-29 10:56:44 +08:00
|
|
|
#include "app/ui_context.h"
|
2012-01-06 06:45:03 +08:00
|
|
|
#include "raster/image.h"
|
2012-06-18 09:49:58 +08:00
|
|
|
#include "raster/sprite.h"
|
2014-01-29 10:56:44 +08:00
|
|
|
#include "ui/manager.h"
|
|
|
|
|
#include "ui/system.h"
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
namespace app {
|
2012-06-18 09:02:54 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
using namespace ui;
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
class EyedropperCommand : public Command {
|
2012-01-06 06:45:03 +08:00
|
|
|
/**
|
|
|
|
|
* True means "pick background color", false the foreground color.
|
|
|
|
|
*/
|
|
|
|
|
bool m_background;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
EyedropperCommand();
|
2014-03-30 04:08:40 +08:00
|
|
|
Command* clone() const OVERRIDE { return new EyedropperCommand(*this); }
|
2012-01-06 06:45:03 +08:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void onLoadParams(Params* params);
|
|
|
|
|
void onExecute(Context* context);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
EyedropperCommand::EyedropperCommand()
|
|
|
|
|
: Command("Eyedropper",
|
|
|
|
|
"Eyedropper",
|
|
|
|
|
CmdUIOnlyFlag)
|
|
|
|
|
{
|
|
|
|
|
m_background = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EyedropperCommand::onLoadParams(Params* params)
|
|
|
|
|
{
|
|
|
|
|
std::string target = params->get("target");
|
|
|
|
|
if (target == "foreground") m_background = false;
|
|
|
|
|
else if (target == "background") m_background = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EyedropperCommand::onExecute(Context* context)
|
|
|
|
|
{
|
2012-06-18 09:02:54 +08:00
|
|
|
Widget* widget = ui::Manager::getDefault()->getMouse();
|
2012-01-06 06:45:03 +08:00
|
|
|
if (!widget || widget->type != editor_type())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Editor* editor = static_cast<Editor*>(widget);
|
2014-07-30 12:28:15 +08:00
|
|
|
Sprite* sprite = editor->sprite();
|
2012-01-06 06:45:03 +08:00
|
|
|
if (!sprite)
|
|
|
|
|
return;
|
|
|
|
|
|
2014-07-30 12:28:15 +08:00
|
|
|
FrameNumber frame = editor->frame();
|
2013-03-12 07:29:45 +08:00
|
|
|
|
2012-01-06 06:45:03 +08:00
|
|
|
// pixel position to get
|
|
|
|
|
int x, y;
|
|
|
|
|
editor->screenToEditor(jmouse_x(0), jmouse_y(0), &x, &y);
|
|
|
|
|
|
2014-01-29 10:56:44 +08:00
|
|
|
// Check if we've to grab alpha channel or the merged color.
|
|
|
|
|
ISettings* settings = UIContext::instance()->settings();
|
|
|
|
|
bool grabAlpha = settings->getGrabAlpha();
|
|
|
|
|
|
|
|
|
|
ColorPicker picker;
|
|
|
|
|
picker.pickColor(editor->getDocumentLocation(), x, y,
|
|
|
|
|
grabAlpha ?
|
|
|
|
|
ColorPicker::FromActiveLayer:
|
|
|
|
|
ColorPicker::FromComposition);
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2014-01-29 10:56:44 +08:00
|
|
|
if (grabAlpha) {
|
|
|
|
|
tools::ToolBox* toolBox = App::instance()->getToolBox();
|
|
|
|
|
for (tools::ToolIterator it=toolBox->begin(), end=toolBox->end(); it!=end; ++it) {
|
|
|
|
|
settings->getToolSettings(*it)->setOpacity(picker.alpha());
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-01-06 06:45:03 +08:00
|
|
|
|
|
|
|
|
if (m_background)
|
2014-01-29 10:56:44 +08:00
|
|
|
settings->setBgColor(picker.color());
|
2012-01-06 06:45:03 +08:00
|
|
|
else
|
2014-01-29 10:56:44 +08:00
|
|
|
settings->setFgColor(picker.color());
|
2012-01-06 06:45:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Command* CommandFactory::createEyedropperCommand()
|
|
|
|
|
{
|
|
|
|
|
return new EyedropperCommand;
|
|
|
|
|
}
|
2013-08-06 08:20:19 +08:00
|
|
|
|
|
|
|
|
} // namespace app
|