2013-08-09 08:01:20 +08:00
|
|
|
/* Aseprite
|
2015-01-19 09:05:33 +08:00
|
|
|
* Copyright (C) 2001-2015 David Capello
|
2012-01-06 06:45:03 +08:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2012-01-06 06:45:03 +08:00
|
|
|
#include "config.h"
|
2013-08-06 08:20:19 +08:00
|
|
|
#endif
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "app/app.h"
|
|
|
|
#include "app/commands/command.h"
|
|
|
|
#include "app/context.h"
|
2012-06-16 10:37:59 +08:00
|
|
|
#include "app/find_widget.h"
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "app/ini_file.h"
|
2014-06-14 10:00:49 +08:00
|
|
|
#include "app/launcher.h"
|
2012-06-16 10:37:59 +08:00
|
|
|
#include "app/load_widget.h"
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "app/modules/editors.h"
|
2014-02-08 11:19:20 +08:00
|
|
|
#include "app/modules/gui.h"
|
2014-12-15 07:19:31 +08:00
|
|
|
#include "app/pref/preferences.h"
|
2014-08-20 11:11:19 +08:00
|
|
|
#include "app/resource_finder.h"
|
2014-08-24 11:19:14 +08:00
|
|
|
#include "app/send_crash.h"
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "app/settings/document_settings.h"
|
|
|
|
#include "app/settings/settings.h"
|
|
|
|
#include "app/ui/color_button.h"
|
|
|
|
#include "app/ui/editor/editor.h"
|
2012-06-16 10:37:59 +08:00
|
|
|
#include "base/bind.h"
|
2014-08-24 11:19:14 +08:00
|
|
|
#include "base/path.h"
|
2014-10-21 09:21:31 +08:00
|
|
|
#include "doc/image.h"
|
2014-12-28 22:06:11 +08:00
|
|
|
#include "render/render.h"
|
2014-08-11 06:51:14 +08:00
|
|
|
#include "she/system.h"
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "ui/ui.h"
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2014-08-10 12:12:31 +08:00
|
|
|
#include "generated_options.h"
|
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
namespace app {
|
2012-06-18 09:02:54 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
using namespace ui;
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2014-08-10 12:12:31 +08:00
|
|
|
class OptionsWindow : public app::gen::Options {
|
2012-01-06 06:45:03 +08:00
|
|
|
public:
|
2014-06-23 08:56:04 +08:00
|
|
|
OptionsWindow(Context* context)
|
2014-08-10 12:12:31 +08:00
|
|
|
: m_settings(context->settings())
|
2014-09-09 10:08:06 +08:00
|
|
|
, m_docSettings(m_settings->getDocumentSettings(context->activeDocument()))
|
2014-12-28 22:06:11 +08:00
|
|
|
, m_preferences(App::instance()->preferences())
|
|
|
|
, m_docPref(m_preferences.document(context->activeDocument()))
|
|
|
|
, m_checked_bg_color1(new ColorButton(m_docPref.bg.color1(), IMAGE_RGB))
|
|
|
|
, m_checked_bg_color2(new ColorButton(m_docPref.bg.color2(), IMAGE_RGB))
|
2014-06-23 08:56:04 +08:00
|
|
|
, m_pixelGridColor(new ColorButton(m_docSettings->getPixelGridColor(), IMAGE_RGB))
|
|
|
|
, m_gridColor(new ColorButton(m_docSettings->getGridColor(), IMAGE_RGB))
|
|
|
|
, m_cursorColor(new ColorButton(Editor::get_cursor_color(), IMAGE_RGB))
|
|
|
|
{
|
2014-08-10 12:12:31 +08:00
|
|
|
sectionListbox()->ChangeSelectedItem.connect(Bind<void>(&OptionsWindow::onChangeSection, this));
|
|
|
|
cursorColorBox()->addChild(m_cursorColor);
|
2014-06-23 08:56:04 +08:00
|
|
|
|
|
|
|
// Grid color
|
|
|
|
m_gridColor->setId("grid_color");
|
2014-11-25 06:13:25 +08:00
|
|
|
gridColorPlaceholder()->addChild(m_gridColor);
|
|
|
|
gridOpacity()->setValue(m_docSettings->getGridOpacity());
|
|
|
|
gridAutoOpacity()->setSelected(m_docSettings->getGridAutoOpacity());
|
2014-06-23 08:56:04 +08:00
|
|
|
|
|
|
|
// Pixel grid color
|
|
|
|
m_pixelGridColor->setId("pixel_grid_color");
|
2014-11-25 06:13:25 +08:00
|
|
|
pixelGridColorPlaceholder()->addChild(m_pixelGridColor);
|
|
|
|
pixelGridOpacity()->setValue(m_docSettings->getPixelGridOpacity());
|
|
|
|
pixelGridAutoOpacity()->setSelected(m_docSettings->getPixelGridAutoOpacity());
|
2014-06-23 08:56:04 +08:00
|
|
|
|
|
|
|
// Others
|
2014-12-28 22:06:11 +08:00
|
|
|
if (m_preferences.general.autoshowTimeline())
|
2014-08-10 12:12:31 +08:00
|
|
|
autotimeline()->setSelected(true);
|
2014-06-23 08:56:04 +08:00
|
|
|
|
2014-12-28 22:06:11 +08:00
|
|
|
if (m_preferences.general.expandMenubarOnMouseover())
|
2014-10-25 22:24:29 +08:00
|
|
|
expandMenubarOnMouseover()->setSelected(true);
|
|
|
|
|
2014-11-29 10:04:01 +08:00
|
|
|
if (m_settings->getCenterOnZoom())
|
2014-11-08 06:11:23 +08:00
|
|
|
centerOnZoom()->setSelected(true);
|
|
|
|
|
2014-08-11 06:51:14 +08:00
|
|
|
if (m_settings->experimental()->useNativeCursor())
|
|
|
|
nativeCursor()->setSelected(true);
|
|
|
|
|
2014-10-26 03:04:39 +08:00
|
|
|
if (m_settings->experimental()->flashLayer())
|
|
|
|
flashLayer()->setSelected(true);
|
|
|
|
|
2014-06-23 08:56:04 +08:00
|
|
|
if (m_settings->getShowSpriteEditorScrollbars())
|
2014-08-10 12:12:31 +08:00
|
|
|
showScrollbars()->setSelected(true);
|
2014-06-23 08:56:04 +08:00
|
|
|
|
|
|
|
// Checked background size
|
2014-08-10 12:12:31 +08:00
|
|
|
screenScale()->addItem("1:1");
|
|
|
|
screenScale()->addItem("2:1");
|
|
|
|
screenScale()->addItem("3:1");
|
|
|
|
screenScale()->addItem("4:1");
|
|
|
|
screenScale()->setSelectedItemIndex(get_screen_scaling()-1);
|
2014-06-23 08:56:04 +08:00
|
|
|
|
2014-08-19 19:17:57 +08:00
|
|
|
// Right-click
|
|
|
|
rightClickBehavior()->addItem("Paint with background color");
|
|
|
|
rightClickBehavior()->addItem("Pick foreground color");
|
|
|
|
rightClickBehavior()->addItem("Erase");
|
|
|
|
rightClickBehavior()->setSelectedItemIndex((int)m_settings->getRightClickMode());
|
|
|
|
|
2014-06-23 09:35:51 +08:00
|
|
|
// Zoom with Scroll Wheel
|
2014-08-10 12:12:31 +08:00
|
|
|
wheelZoom()->setSelected(m_settings->getZoomWithScrollWheel());
|
2014-06-23 09:35:51 +08:00
|
|
|
|
2014-06-23 08:56:04 +08:00
|
|
|
// Checked background size
|
2014-08-10 12:12:31 +08:00
|
|
|
checkedBgSize()->addItem("16x16");
|
|
|
|
checkedBgSize()->addItem("8x8");
|
|
|
|
checkedBgSize()->addItem("4x4");
|
|
|
|
checkedBgSize()->addItem("2x2");
|
2014-12-28 22:06:11 +08:00
|
|
|
checkedBgSize()->setSelectedItemIndex(int(m_docPref.bg.type()));
|
2014-06-23 08:56:04 +08:00
|
|
|
|
|
|
|
// Zoom checked background
|
2014-12-28 22:06:11 +08:00
|
|
|
if (m_docPref.bg.zoom())
|
2014-08-10 12:12:31 +08:00
|
|
|
checkedBgZoom()->setSelected(true);
|
2014-06-23 08:56:04 +08:00
|
|
|
|
|
|
|
// Checked background colors
|
2014-08-10 12:12:31 +08:00
|
|
|
checkedBgColor1Box()->addChild(m_checked_bg_color1);
|
|
|
|
checkedBgColor2Box()->addChild(m_checked_bg_color2);
|
2014-06-23 08:56:04 +08:00
|
|
|
|
|
|
|
// Reset button
|
2014-11-25 06:13:25 +08:00
|
|
|
reset()->Click.connect(Bind<void>(&OptionsWindow::onReset, this));
|
2014-06-23 08:56:04 +08:00
|
|
|
|
2014-08-20 11:11:19 +08:00
|
|
|
// Links
|
2014-08-10 12:12:31 +08:00
|
|
|
locateFile()->Click.connect(Bind<void>(&OptionsWindow::onLocateConfigFile, this));
|
2014-08-20 11:11:19 +08:00
|
|
|
#if WIN32
|
|
|
|
locateCrashFolder()->Click.connect(Bind<void>(&OptionsWindow::onLocateCrashFolder, this));
|
|
|
|
#else
|
|
|
|
locateCrashFolder()->setVisible(false);
|
|
|
|
#endif
|
2014-06-23 08:56:04 +08:00
|
|
|
|
2015-01-19 09:05:33 +08:00
|
|
|
// Undo preferences
|
|
|
|
undoSizeLimit()->setTextf("%d", m_preferences.undo.sizeLimit());
|
|
|
|
undoGotoModified()->setSelected(m_preferences.undo.gotoModified());
|
|
|
|
undoAllowNonlinearHistory()->setSelected(m_preferences.undo.allowNonlinearHistory());
|
2014-06-23 08:56:04 +08:00
|
|
|
|
2014-08-10 12:12:31 +08:00
|
|
|
sectionListbox()->selectIndex(0);
|
2014-06-23 08:56:04 +08:00
|
|
|
}
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2014-06-23 08:56:04 +08:00
|
|
|
bool ok() {
|
2014-08-10 12:12:31 +08:00
|
|
|
return (getKiller() == buttonOk());
|
2014-06-23 08:56:04 +08:00
|
|
|
}
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2014-06-23 08:56:04 +08:00
|
|
|
void saveConfig() {
|
|
|
|
Editor::set_cursor_color(m_cursorColor->getColor());
|
|
|
|
m_docSettings->setGridColor(m_gridColor->getColor());
|
2014-11-25 06:13:25 +08:00
|
|
|
m_docSettings->setGridOpacity(gridOpacity()->getValue());
|
|
|
|
m_docSettings->setGridAutoOpacity(gridAutoOpacity()->isSelected());
|
2014-06-23 08:56:04 +08:00
|
|
|
m_docSettings->setPixelGridColor(m_pixelGridColor->getColor());
|
2014-11-25 06:13:25 +08:00
|
|
|
m_docSettings->setPixelGridOpacity(pixelGridOpacity()->getValue());
|
|
|
|
m_docSettings->setPixelGridAutoOpacity(pixelGridAutoOpacity()->isSelected());
|
|
|
|
|
2014-12-28 22:06:11 +08:00
|
|
|
m_preferences.general.autoshowTimeline(autotimeline()->isSelected());
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2014-10-25 22:24:29 +08:00
|
|
|
bool expandOnMouseover = expandMenubarOnMouseover()->isSelected();
|
2014-12-28 22:06:11 +08:00
|
|
|
m_preferences.general.expandMenubarOnMouseover(expandOnMouseover);
|
2014-10-25 22:24:29 +08:00
|
|
|
ui::MenuBar::setExpandOnMouseover(expandOnMouseover);
|
|
|
|
|
2014-11-29 10:04:01 +08:00
|
|
|
m_settings->setCenterOnZoom(centerOnZoom()->isSelected());
|
2014-10-25 22:24:29 +08:00
|
|
|
|
2014-08-10 12:12:31 +08:00
|
|
|
m_settings->setShowSpriteEditorScrollbars(showScrollbars()->isSelected());
|
|
|
|
m_settings->setZoomWithScrollWheel(wheelZoom()->isSelected());
|
2014-08-19 19:17:57 +08:00
|
|
|
m_settings->setRightClickMode(static_cast<RightClickMode>(rightClickBehavior()->getSelectedItemIndex()));
|
2014-01-27 00:28:11 +08:00
|
|
|
|
2014-12-28 22:06:11 +08:00
|
|
|
m_docPref.bg.type(app::gen::BgType(checkedBgSize()->getSelectedItemIndex()));
|
|
|
|
m_docPref.bg.zoom(checkedBgZoom()->isSelected());
|
|
|
|
m_docPref.bg.color1(m_checked_bg_color1->getColor());
|
|
|
|
m_docPref.bg.color2(m_checked_bg_color2->getColor());
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2014-06-23 08:56:04 +08:00
|
|
|
int undo_size_limit_value;
|
2014-08-10 12:12:31 +08:00
|
|
|
undo_size_limit_value = undoSizeLimit()->getTextInt();
|
2012-01-06 06:45:03 +08:00
|
|
|
undo_size_limit_value = MID(1, undo_size_limit_value, 9999);
|
2014-07-31 11:19:58 +08:00
|
|
|
|
2015-01-19 09:05:33 +08:00
|
|
|
m_preferences.undo.sizeLimit(undo_size_limit_value);
|
|
|
|
m_preferences.undo.gotoModified(undoGotoModified()->isSelected());
|
|
|
|
m_preferences.undo.allowNonlinearHistory(undoAllowNonlinearHistory()->isSelected());
|
2012-01-06 06:45:03 +08:00
|
|
|
|
2014-10-26 03:04:39 +08:00
|
|
|
// Experimental features
|
2014-08-11 06:51:14 +08:00
|
|
|
m_settings->experimental()->setUseNativeCursor(nativeCursor()->isSelected());
|
2014-10-26 03:04:39 +08:00
|
|
|
m_settings->experimental()->setFlashLayer(flashLayer()->isSelected());
|
2014-08-11 06:51:14 +08:00
|
|
|
|
2014-08-10 12:12:31 +08:00
|
|
|
int new_screen_scaling = screenScale()->getSelectedItemIndex()+1;
|
2014-02-08 11:19:20 +08:00
|
|
|
if (new_screen_scaling != get_screen_scaling()) {
|
|
|
|
set_screen_scaling(new_screen_scaling);
|
|
|
|
|
|
|
|
ui::Alert::show(PACKAGE
|
|
|
|
"<<You must restart the program to see your changes to 'Screen Scale' setting."
|
|
|
|
"||&OK");
|
|
|
|
}
|
|
|
|
|
2012-01-06 06:45:03 +08:00
|
|
|
// Save configuration
|
|
|
|
flush_config_file();
|
|
|
|
}
|
|
|
|
|
2014-06-23 08:56:04 +08:00
|
|
|
private:
|
|
|
|
void onChangeSection() {
|
2014-08-10 12:12:31 +08:00
|
|
|
ListItem* item = sectionListbox()->getSelectedChild();
|
2014-06-23 08:56:04 +08:00
|
|
|
if (!item)
|
|
|
|
return;
|
|
|
|
|
2014-08-10 12:12:31 +08:00
|
|
|
panel()->showChild(findChild(item->getValue().c_str()));
|
2014-06-23 08:56:04 +08:00
|
|
|
}
|
|
|
|
|
2014-11-25 06:13:25 +08:00
|
|
|
void onReset() {
|
2014-06-23 08:56:04 +08:00
|
|
|
// Default values
|
2014-11-25 06:13:25 +08:00
|
|
|
// TODO improve settings and default values (store everything in
|
|
|
|
// an XML and generate code from it)
|
|
|
|
|
|
|
|
m_gridColor->setColor(app::Color::fromRgb(0, 0, 255));
|
|
|
|
gridOpacity()->setValue(200);
|
|
|
|
gridAutoOpacity()->setSelected(true);
|
|
|
|
|
|
|
|
m_pixelGridColor->setColor(app::Color::fromRgb(200, 200, 200));
|
|
|
|
pixelGridOpacity()->setValue(200);
|
|
|
|
pixelGridAutoOpacity()->setSelected(true);
|
|
|
|
|
2014-12-28 22:06:11 +08:00
|
|
|
checkedBgSize()->setSelectedItemIndex(int(m_docPref.bg.type.defaultValue()));
|
|
|
|
checkedBgZoom()->setSelected(m_docPref.bg.zoom.defaultValue());
|
|
|
|
m_checked_bg_color1->setColor(m_docPref.bg.color1.defaultValue());
|
|
|
|
m_checked_bg_color2->setColor(m_docPref.bg.color2.defaultValue());
|
2014-06-23 08:56:04 +08:00
|
|
|
}
|
|
|
|
|
2014-08-20 11:11:19 +08:00
|
|
|
void onLocateCrashFolder() {
|
2014-08-24 11:19:14 +08:00
|
|
|
app::launcher::open_folder(base::get_file_path(app::memory_dump_filename()));
|
2014-08-20 11:11:19 +08:00
|
|
|
}
|
|
|
|
|
2014-06-23 08:56:04 +08:00
|
|
|
void onLocateConfigFile() {
|
2014-10-17 08:27:25 +08:00
|
|
|
app::launcher::open_folder(app::main_config_filename());
|
2014-06-23 08:56:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ISettings* m_settings;
|
|
|
|
IDocumentSettings* m_docSettings;
|
2014-12-28 22:06:11 +08:00
|
|
|
Preferences& m_preferences;
|
|
|
|
DocumentPreferences& m_docPref;
|
2014-06-23 08:56:04 +08:00
|
|
|
ColorButton* m_checked_bg_color1;
|
|
|
|
ColorButton* m_checked_bg_color2;
|
|
|
|
ColorButton* m_pixelGridColor;
|
|
|
|
ColorButton* m_gridColor;
|
|
|
|
ColorButton* m_cursorColor;
|
|
|
|
};
|
|
|
|
|
|
|
|
class OptionsCommand : public Command {
|
|
|
|
public:
|
|
|
|
OptionsCommand();
|
2014-08-15 10:07:47 +08:00
|
|
|
Command* clone() const override { return new OptionsCommand(*this); }
|
2014-06-23 08:56:04 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void onExecute(Context* context);
|
|
|
|
};
|
|
|
|
|
|
|
|
OptionsCommand::OptionsCommand()
|
|
|
|
: Command("Options",
|
|
|
|
"Options",
|
|
|
|
CmdUIOnlyFlag)
|
2012-01-06 06:45:03 +08:00
|
|
|
{
|
2014-12-15 07:19:31 +08:00
|
|
|
Preferences& preferences = App::instance()->preferences();
|
|
|
|
|
2014-10-25 22:24:29 +08:00
|
|
|
ui::MenuBar::setExpandOnMouseover(
|
2014-12-15 07:19:31 +08:00
|
|
|
preferences.general.expandMenubarOnMouseover());
|
2012-01-06 06:45:03 +08:00
|
|
|
}
|
|
|
|
|
2014-06-23 08:56:04 +08:00
|
|
|
void OptionsCommand::onExecute(Context* context)
|
2014-06-14 10:00:49 +08:00
|
|
|
{
|
2014-06-23 08:56:04 +08:00
|
|
|
OptionsWindow window(context);
|
|
|
|
window.openWindowInForeground();
|
|
|
|
if (window.ok())
|
|
|
|
window.saveConfig();
|
2014-06-14 10:00:49 +08:00
|
|
|
}
|
|
|
|
|
2012-01-06 06:45:03 +08:00
|
|
|
Command* CommandFactory::createOptionsCommand()
|
|
|
|
{
|
|
|
|
return new OptionsCommand;
|
|
|
|
}
|
2013-08-06 08:20:19 +08:00
|
|
|
|
|
|
|
} // namespace app
|