aseprite-action/src/app/commands/cmd_advanced_mode.cpp

104 lines
2.9 KiB
C++
Raw Normal View History

/* Aseprite
2013-01-27 23:13:13 +08:00
* 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
#include "app/app.h"
#include "app/commands/command.h"
#include "app/find_widget.h"
#include "app/ini_file.h"
#include "app/load_widget.h"
#include "app/modules/gui.h"
#include "app/ui/main_window.h"
#include "ui/ui.h"
2012-07-10 04:36:45 +08:00
#include <cstdio>
namespace app {
using namespace ui;
class AdvancedModeCommand : public Command {
public:
AdvancedModeCommand();
Command* clone() const OVERRIDE { return new AdvancedModeCommand(*this); }
protected:
void onExecute(Context* context);
};
AdvancedModeCommand::AdvancedModeCommand()
: Command("AdvancedMode",
"Advanced Mode",
CmdUIOnlyFlag)
{
}
void AdvancedModeCommand::onExecute(Context* context)
{
// Switch advanced mode.
MainWindow* mainWindow = App::instance()->getMainWindow();
MainWindow::Mode oldMode = mainWindow->getMode();
MainWindow::Mode newMode = oldMode;
switch (oldMode) {
case MainWindow::NormalMode:
newMode = MainWindow::ContextBarAndTimelineMode;
break;
case MainWindow::ContextBarAndTimelineMode:
newMode = MainWindow::EditorOnlyMode;
break;
case MainWindow::EditorOnlyMode:
newMode = MainWindow::NormalMode;
break;
}
mainWindow->setMode(newMode);
if (oldMode == MainWindow::NormalMode &&
get_config_bool("AdvancedMode", "Warning", true)) {
Accelerator* accel = get_accel_to_execute_command(short_name());
if (accel != NULL) {
char warning[1024];
char buf[1024];
base::UniquePtr<Window> window(app::load_widget<Window>("advanced_mode.xml", "advanced_mode_warning"));
Widget* warning_label = app::find_widget<Widget>(window, "warning_label");
Widget* donot_show = app::find_widget<Widget>(window, "donot_show");
strcpy(warning, "You can back pressing the \"%s\" key.");
std::sprintf(buf, warning, accel->toString().c_str());
warning_label->setText(buf);
2012-07-09 10:24:42 +08:00
window->openWindowInForeground();
set_config_bool("AdvancedMode", "Warning", !donot_show->isSelected());
}
}
}
Command* CommandFactory::createAdvancedModeCommand()
{
return new AdvancedModeCommand;
}
} // namespace app