mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-02 13:20:12 +00:00
100 lines
2.2 KiB
C++
100 lines
2.2 KiB
C++
// Aseprite
|
|
// Copyright (C) 2024 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/commands/command.h"
|
|
#include "app/commands/commands.h"
|
|
#include "app/context_access.h"
|
|
#include "app/ui/doc_view.h"
|
|
#include "app/ui/status_bar.h"
|
|
#include "app/ui/workspace.h"
|
|
#include "app/ui_context.h"
|
|
#include "doc/sprite.h"
|
|
#include "ui/ui.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace app {
|
|
|
|
using namespace ui;
|
|
|
|
class CloseFileCommand : public Command {
|
|
public:
|
|
CloseFileCommand()
|
|
: Command(CommandId::CloseFile(), CmdUIOnlyFlag) {
|
|
}
|
|
|
|
protected:
|
|
|
|
bool onEnabled(Context* context) override {
|
|
Workspace* workspace = App::instance()->workspace();
|
|
if (!workspace) // Workspace (main window) can be null if we are in --batch mode
|
|
return false;
|
|
WorkspaceView* view = workspace->activeView();
|
|
return (view != nullptr);
|
|
}
|
|
|
|
void onExecute(Context* context) override {
|
|
Workspace* workspace = App::instance()->workspace();
|
|
WorkspaceView* view = workspace->activeView();
|
|
if (view)
|
|
workspace->closeView(view, false);
|
|
}
|
|
};
|
|
|
|
class CloseAllFilesCommand : public Command {
|
|
public:
|
|
CloseAllFilesCommand()
|
|
: Command(CommandId::CloseAllFiles(), CmdRecordableFlag) {
|
|
m_quitting = false;
|
|
}
|
|
|
|
protected:
|
|
|
|
void onLoadParams(const Params& params) override {
|
|
m_quitting = params.get_as<bool>("quitting");
|
|
}
|
|
|
|
void onExecute(Context* context) override {
|
|
Workspace* workspace = App::instance()->workspace();
|
|
if (!workspace) // Workspace (main window) can be null if we are in --batch mode
|
|
return;
|
|
|
|
// Collect all document views
|
|
DocViews docViews;
|
|
for (auto view : *workspace) {
|
|
DocView* docView = dynamic_cast<DocView*>(view);
|
|
if (docView)
|
|
docViews.push_back(docView);
|
|
}
|
|
|
|
for (auto docView : docViews) {
|
|
if (!workspace->closeView(docView, m_quitting))
|
|
break;
|
|
}
|
|
}
|
|
|
|
private:
|
|
bool m_quitting;
|
|
};
|
|
|
|
Command* CommandFactory::createCloseFileCommand()
|
|
{
|
|
return new CloseFileCommand;
|
|
}
|
|
|
|
Command* CommandFactory::createCloseAllFilesCommand()
|
|
{
|
|
return new CloseAllFilesCommand;
|
|
}
|
|
|
|
} // namespace app
|