aseprite/src/app/commands/cmd_open_with_app.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.0 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/commands/command.h"
#include "app/context.h"
#include "app/context_access.h"
2018-07-07 22:54:44 +08:00
#include "app/doc.h"
#include "app/launcher.h"
namespace app {
class OpenWithAppCommand : public Command {
public:
OpenWithAppCommand();
protected:
bool onEnabled(Context* context) override;
void onExecute(Context* context) override;
};
2025-07-24 07:00:12 +08:00
OpenWithAppCommand::OpenWithAppCommand() : Command(CommandId::OpenWithApp())
{
}
bool OpenWithAppCommand::onEnabled(Context* context)
{
const ContextReader reader(context);
return reader.document() && reader.document()->isAssociatedToFile();
}
void OpenWithAppCommand::onExecute(Context* context)
{
launcher::open_file(context->activeDocument()->filename());
}
Command* CommandFactory::createOpenWithAppCommand()
{
return new OpenWithAppCommand;
}
} // namespace app