2013-11-16 03:56:50 +08:00
|
|
|
/* Aseprite
|
|
|
|
* Copyright (C) 2001-2013 David Capello
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2014-04-17 12:29:58 +08:00
|
|
|
#include "app/commands/cmd_set_palette.h"
|
2013-11-16 03:56:50 +08:00
|
|
|
#include "app/commands/command.h"
|
2014-04-17 12:29:58 +08:00
|
|
|
#include "app/commands/commands.h"
|
|
|
|
#include "app/context.h"
|
2013-11-16 03:56:50 +08:00
|
|
|
#include "app/file_selector.h"
|
|
|
|
#include "base/unique_ptr.h"
|
|
|
|
#include "raster/palette.h"
|
|
|
|
#include "ui/alert.h"
|
|
|
|
|
|
|
|
namespace app {
|
|
|
|
|
|
|
|
using namespace ui;
|
|
|
|
|
|
|
|
class LoadPaletteCommand : public Command {
|
|
|
|
public:
|
|
|
|
LoadPaletteCommand();
|
2014-08-15 10:07:47 +08:00
|
|
|
Command* clone() const override { return new LoadPaletteCommand(*this); }
|
2013-11-16 03:56:50 +08:00
|
|
|
|
|
|
|
protected:
|
2014-08-15 10:07:47 +08:00
|
|
|
void onExecute(Context* context) override;
|
2013-11-16 03:56:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
LoadPaletteCommand::LoadPaletteCommand()
|
|
|
|
: Command("LoadPalette",
|
|
|
|
"Load Palette",
|
|
|
|
CmdRecordableFlag)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void LoadPaletteCommand::onExecute(Context* context)
|
|
|
|
{
|
2014-04-21 06:53:27 +08:00
|
|
|
std::string filename = app::show_file_selector("Load Palette", "", "png,pcx,bmp,tga,lbm,col,gpl");
|
2013-11-16 03:56:50 +08:00
|
|
|
if (!filename.empty()) {
|
|
|
|
base::UniquePtr<raster::Palette> palette(raster::Palette::load(filename.c_str()));
|
|
|
|
if (!palette) {
|
|
|
|
Alert::show("Error<<Loading palette file||&Close");
|
|
|
|
}
|
|
|
|
else {
|
2014-04-17 12:29:58 +08:00
|
|
|
SetPaletteCommand* cmd = static_cast<SetPaletteCommand*>(
|
|
|
|
CommandsModule::instance()->getCommandByName(CommandId::SetPalette));
|
|
|
|
cmd->setPalette(palette);
|
|
|
|
context->executeCommand(cmd);
|
2013-11-16 03:56:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Command* CommandFactory::createLoadPaletteCommand()
|
|
|
|
{
|
|
|
|
return new LoadPaletteCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace app
|