mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 14:21:45 +00:00
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
// Aseprite
|
|
// Copyright (C) 2017 David Capello
|
|
// Copyright (C) 2016 Carlo Caputo
|
|
//
|
|
// 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/context.h"
|
|
#include "app/doc.h"
|
|
#include "app/pref/preferences.h"
|
|
|
|
namespace app {
|
|
|
|
using namespace gfx;
|
|
|
|
class ToggleTimelineThumbnailsCommand : public Command {
|
|
public:
|
|
ToggleTimelineThumbnailsCommand()
|
|
: Command(CommandId::ToggleTimelineThumbnails(), CmdUIOnlyFlag) {
|
|
}
|
|
|
|
protected:
|
|
bool onChecked(Context* context) override {
|
|
DocumentPreferences& docPref = Preferences::instance().document(context->activeDocument());
|
|
return docPref.thumbnails.enabled();
|
|
}
|
|
|
|
void onExecute(Context* context) override {
|
|
DocumentPreferences& docPref = Preferences::instance().document(context->activeDocument());
|
|
docPref.thumbnails.enabled(!docPref.thumbnails.enabled());
|
|
}
|
|
};
|
|
|
|
Command* CommandFactory::createToggleTimelineThumbnailsCommand()
|
|
{
|
|
return new ToggleTimelineThumbnailsCommand;
|
|
}
|
|
|
|
} // namespace app
|