mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-07 10:21:30 +00:00
1797 lines
50 KiB
C++
1797 lines
50 KiB
C++
// Aseprite
|
|
// 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/ui/context_bar.h"
|
|
|
|
#include "app/app.h"
|
|
#include "app/app_brushes.h"
|
|
#include "app/app_menus.h"
|
|
#include "app/color_utils.h"
|
|
#include "app/commands/commands.h"
|
|
#include "app/commands/quick_command.h"
|
|
#include "app/doc.h"
|
|
#include "app/ini_file.h"
|
|
#include "app/pref/preferences.h"
|
|
#include "app/shade.h"
|
|
#include "app/tools/active_tool.h"
|
|
#include "app/tools/controller.h"
|
|
#include "app/tools/ink.h"
|
|
#include "app/tools/ink_type.h"
|
|
#include "app/tools/point_shape.h"
|
|
#include "app/tools/tool.h"
|
|
#include "app/tools/tool_box.h"
|
|
#include "app/tools/tool_loop_modifiers.h"
|
|
#include "app/ui/brush_popup.h"
|
|
#include "app/ui/button_set.h"
|
|
#include "app/ui/color_button.h"
|
|
#include "app/ui/color_shades.h"
|
|
#include "app/ui/dithering_selector.h"
|
|
#include "app/ui/icon_button.h"
|
|
#include "app/ui/keyboard_shortcuts.h"
|
|
#include "app/ui/skin/skin_theme.h"
|
|
#include "app/ui_context.h"
|
|
#include "base/bind.h"
|
|
#include "base/scoped_value.h"
|
|
#include "doc/brush.h"
|
|
#include "doc/conversion_she.h"
|
|
#include "doc/image.h"
|
|
#include "doc/palette.h"
|
|
#include "doc/remap.h"
|
|
#include "obs/connection.h"
|
|
#include "render/dithering.h"
|
|
#include "she/surface.h"
|
|
#include "she/system.h"
|
|
#include "ui/button.h"
|
|
#include "ui/combobox.h"
|
|
#include "ui/int_entry.h"
|
|
#include "ui/label.h"
|
|
#include "ui/listitem.h"
|
|
#include "ui/menu.h"
|
|
#include "ui/message.h"
|
|
#include "ui/paint_event.h"
|
|
#include "ui/popup_window.h"
|
|
#include "ui/size_hint_event.h"
|
|
#include "ui/system.h"
|
|
#include "ui/theme.h"
|
|
#include "ui/tooltips.h"
|
|
|
|
namespace app {
|
|
|
|
using namespace app::skin;
|
|
using namespace gfx;
|
|
using namespace ui;
|
|
using namespace tools;
|
|
|
|
static bool g_updatingFromCode = false;
|
|
|
|
class ContextBar::ZoomButtons : public ButtonSet {
|
|
public:
|
|
ZoomButtons()
|
|
: ButtonSet(3) {
|
|
addItem("100%");
|
|
addItem("Center");
|
|
addItem("Fit Screen");
|
|
}
|
|
|
|
private:
|
|
void onItemChange(Item* item) override {
|
|
ButtonSet::onItemChange(item);
|
|
|
|
Command* cmd = nullptr;
|
|
Params params;
|
|
|
|
switch (selectedItem()) {
|
|
|
|
case 0: {
|
|
cmd = Commands::instance()->byId(CommandId::Zoom());
|
|
params.set("action", "set");
|
|
params.set("percentage", "100");
|
|
params.set("focus", "center");
|
|
UIContext::instance()->executeCommand(cmd, params);
|
|
break;
|
|
}
|
|
|
|
case 1: {
|
|
cmd = Commands::instance()->byId(CommandId::ScrollCenter());
|
|
break;
|
|
}
|
|
|
|
case 2: {
|
|
cmd = Commands::instance()->byId(CommandId::FitScreen());
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (cmd)
|
|
UIContext::instance()->executeCommand(cmd, params);
|
|
|
|
deselectItems();
|
|
manager()->freeFocus();
|
|
}
|
|
};
|
|
|
|
class ContextBar::BrushBackField : public ButtonSet {
|
|
public:
|
|
BrushBackField()
|
|
: ButtonSet(1) {
|
|
addItem("Back");
|
|
}
|
|
|
|
protected:
|
|
void onItemChange(Item* item) override {
|
|
ButtonSet::onItemChange(item);
|
|
|
|
Command* discardBrush = Commands::instance()
|
|
->byId(CommandId::DiscardBrush());
|
|
UIContext::instance()->executeCommand(discardBrush);
|
|
}
|
|
};
|
|
|
|
class ContextBar::BrushTypeField : public ButtonSet {
|
|
public:
|
|
BrushTypeField(ContextBar* owner)
|
|
: ButtonSet(1)
|
|
, m_owner(owner)
|
|
, m_brushes(App::instance()->brushes()) {
|
|
SkinPartPtr part(new SkinPart);
|
|
part->setBitmap(0, BrushPopup::createSurfaceForBrush(BrushRef(nullptr)));
|
|
addItem(part);
|
|
}
|
|
|
|
~BrushTypeField() {
|
|
closePopup();
|
|
}
|
|
|
|
void updateBrush(tools::Tool* tool = nullptr) {
|
|
BrushRef brush = m_owner->activeBrush(tool);
|
|
SkinPartPtr part(new SkinPart);
|
|
part->setBitmap(0, BrushPopup::createSurfaceForBrush(brush));
|
|
|
|
const bool mono = (brush->type() != kImageBrushType);
|
|
getItem(0)->setIcon(part, mono);
|
|
}
|
|
|
|
void setupTooltips(TooltipManager* tooltipManager) {
|
|
m_popupWindow.setupTooltips(tooltipManager);
|
|
}
|
|
|
|
void showPopup() {
|
|
openPopup();
|
|
}
|
|
|
|
void showPopupAndHighlightSlot(int slot) {
|
|
// TODO use slot?
|
|
openPopup();
|
|
}
|
|
|
|
protected:
|
|
void onItemChange(Item* item) override {
|
|
ButtonSet::onItemChange(item);
|
|
|
|
if (!m_popupWindow.isVisible())
|
|
openPopup();
|
|
else
|
|
closePopup();
|
|
}
|
|
|
|
void onSizeHint(SizeHintEvent& ev) override {
|
|
ev.setSizeHint(Size(16, 18)*guiscale());
|
|
}
|
|
|
|
void onInitTheme(InitThemeEvent& ev) override {
|
|
ButtonSet::onInitTheme(ev);
|
|
m_popupWindow.initTheme();
|
|
}
|
|
|
|
private:
|
|
// Returns a little rectangle that can be used by the popup as the
|
|
// first brush position.
|
|
gfx::Rect getPopupBox() {
|
|
Rect rc = bounds();
|
|
rc.y += rc.h - 2*guiscale();
|
|
rc.setSize(sizeHint());
|
|
return rc;
|
|
}
|
|
|
|
void openPopup() {
|
|
doc::BrushRef brush = m_owner->activeBrush();
|
|
|
|
m_popupWindow.regenerate(getPopupBox());
|
|
m_popupWindow.setBrush(brush.get());
|
|
|
|
Region rgn(m_popupWindow.bounds().createUnion(bounds()));
|
|
m_popupWindow.setHotRegion(rgn);
|
|
|
|
m_popupWindow.openWindow();
|
|
}
|
|
|
|
void closePopup() {
|
|
m_popupWindow.closeWindow(NULL);
|
|
deselectItems();
|
|
}
|
|
|
|
ContextBar* m_owner;
|
|
AppBrushes& m_brushes;
|
|
BrushPopup m_popupWindow;
|
|
};
|
|
|
|
class ContextBar::BrushSizeField : public IntEntry {
|
|
public:
|
|
BrushSizeField() : IntEntry(Brush::kMinBrushSize, Brush::kMaxBrushSize) {
|
|
setSuffix("px");
|
|
}
|
|
|
|
private:
|
|
void onValueChange() override {
|
|
if (g_updatingFromCode)
|
|
return;
|
|
|
|
IntEntry::onValueChange();
|
|
base::ScopedValue<bool> lockFlag(g_updatingFromCode, true, g_updatingFromCode);
|
|
|
|
Tool* tool = App::instance()->activeTool();
|
|
Preferences::instance().tool(tool).brush.size(getValue());
|
|
}
|
|
};
|
|
|
|
class ContextBar::BrushAngleField : public IntEntry {
|
|
public:
|
|
BrushAngleField(BrushTypeField* brushType)
|
|
: IntEntry(0, 180)
|
|
, m_brushType(brushType) {
|
|
setSuffix("\xc2\xb0");
|
|
}
|
|
|
|
protected:
|
|
void onValueChange() override {
|
|
if (g_updatingFromCode)
|
|
return;
|
|
|
|
IntEntry::onValueChange();
|
|
base::ScopedValue<bool> lockFlag(g_updatingFromCode, true, g_updatingFromCode);
|
|
|
|
Tool* tool = App::instance()->activeTool();
|
|
Preferences::instance().tool(tool).brush.angle(getValue());
|
|
|
|
m_brushType->updateBrush();
|
|
}
|
|
|
|
private:
|
|
BrushTypeField* m_brushType;
|
|
};
|
|
|
|
class ContextBar::BrushPatternField : public ComboBox {
|
|
public:
|
|
BrushPatternField() : m_lock(false) {
|
|
addItem("Pattern aligned to source");
|
|
addItem("Pattern aligned to destination");
|
|
addItem("Paint brush");
|
|
}
|
|
|
|
void setBrushPattern(BrushPattern type) {
|
|
int index = 0;
|
|
|
|
switch (type) {
|
|
case BrushPattern::ALIGNED_TO_SRC: index = 0; break;
|
|
case BrushPattern::ALIGNED_TO_DST: index = 1; break;
|
|
case BrushPattern::PAINT_BRUSH: index = 2; break;
|
|
}
|
|
|
|
m_lock = true;
|
|
setSelectedItemIndex(index);
|
|
m_lock = false;
|
|
}
|
|
|
|
protected:
|
|
void onChange() override {
|
|
ComboBox::onChange();
|
|
|
|
if (m_lock)
|
|
return;
|
|
|
|
BrushPattern type = BrushPattern::ALIGNED_TO_SRC;
|
|
|
|
switch (getSelectedItemIndex()) {
|
|
case 0: type = BrushPattern::ALIGNED_TO_SRC; break;
|
|
case 1: type = BrushPattern::ALIGNED_TO_DST; break;
|
|
case 2: type = BrushPattern::PAINT_BRUSH; break;
|
|
}
|
|
|
|
Preferences::instance().brush.pattern(type);
|
|
}
|
|
|
|
bool m_lock;
|
|
};
|
|
|
|
class ContextBar::ToleranceField : public IntEntry {
|
|
public:
|
|
ToleranceField() : IntEntry(0, 255) {
|
|
}
|
|
|
|
protected:
|
|
void onValueChange() override {
|
|
if (g_updatingFromCode)
|
|
return;
|
|
|
|
IntEntry::onValueChange();
|
|
|
|
Tool* tool = App::instance()->activeTool();
|
|
Preferences::instance().tool(tool).tolerance(getValue());
|
|
}
|
|
};
|
|
|
|
class ContextBar::ContiguousField : public CheckBox {
|
|
public:
|
|
ContiguousField() : CheckBox("Contiguous") {
|
|
initTheme();
|
|
}
|
|
|
|
protected:
|
|
void onInitTheme(InitThemeEvent& ev) override {
|
|
CheckBox::onInitTheme(ev);
|
|
setStyle(SkinTheme::instance()->styles.miniCheckBox());
|
|
}
|
|
|
|
void onClick(Event& ev) override {
|
|
CheckBox::onClick(ev);
|
|
|
|
Tool* tool = App::instance()->activeTool();
|
|
Preferences::instance().tool(tool).contiguous(isSelected());
|
|
|
|
releaseFocus();
|
|
}
|
|
};
|
|
|
|
class ContextBar::PaintBucketSettingsField : public ButtonSet {
|
|
public:
|
|
PaintBucketSettingsField() : ButtonSet(1) {
|
|
SkinTheme* theme = SkinTheme::instance();
|
|
addItem(theme->parts.timelineGear());
|
|
}
|
|
|
|
protected:
|
|
void onItemChange(Item* item) override {
|
|
ButtonSet::onItemChange(item);
|
|
const gfx::Rect bounds = this->bounds();
|
|
|
|
Tool* tool = App::instance()->activeTool();
|
|
auto& toolPref = Preferences::instance().tool(tool);
|
|
|
|
Menu menu;
|
|
MenuItem
|
|
stopAtGrid("Stop at Grid"),
|
|
activeLayer("Refer only active layer"),
|
|
allLayers("Refer visible layers");
|
|
menu.addChild(&stopAtGrid);
|
|
menu.addChild(new MenuSeparator());
|
|
menu.addChild(&activeLayer);
|
|
menu.addChild(&allLayers);
|
|
|
|
stopAtGrid.setSelected(
|
|
toolPref.floodfill.stopAtGrid() == app::gen::StopAtGrid::IF_VISIBLE);
|
|
activeLayer.setSelected(
|
|
toolPref.floodfill.referTo() == app::gen::FillReferTo::ACTIVE_LAYER);
|
|
allLayers.setSelected(
|
|
toolPref.floodfill.referTo() == app::gen::FillReferTo::ALL_LAYERS);
|
|
|
|
stopAtGrid.Click.connect(
|
|
[&]{
|
|
toolPref.floodfill.stopAtGrid(
|
|
toolPref.floodfill.stopAtGrid() == app::gen::StopAtGrid::IF_VISIBLE ?
|
|
app::gen::StopAtGrid::NEVER: app::gen::StopAtGrid::IF_VISIBLE);
|
|
});
|
|
activeLayer.Click.connect(
|
|
[&]{
|
|
toolPref.floodfill.referTo(app::gen::FillReferTo::ACTIVE_LAYER);
|
|
});
|
|
allLayers.Click.connect(
|
|
[&]{
|
|
toolPref.floodfill.referTo(app::gen::FillReferTo::ALL_LAYERS);
|
|
});
|
|
|
|
menu.showPopup(gfx::Point(bounds.x, bounds.y+bounds.h));
|
|
deselectItems();
|
|
}
|
|
|
|
};
|
|
|
|
class ContextBar::InkTypeField : public ButtonSet {
|
|
public:
|
|
InkTypeField(ContextBar* owner) : ButtonSet(1)
|
|
, m_owner(owner) {
|
|
SkinTheme* theme = SkinTheme::instance();
|
|
addItem(theme->parts.inkSimple());
|
|
}
|
|
|
|
void setInkType(InkType inkType) {
|
|
Preferences& pref = Preferences::instance();
|
|
|
|
if (pref.shared.shareInk()) {
|
|
for (Tool* tool : *App::instance()->toolBox())
|
|
pref.tool(tool).ink(inkType);
|
|
}
|
|
else {
|
|
Tool* tool = App::instance()->activeTool();
|
|
pref.tool(tool).ink(inkType);
|
|
}
|
|
|
|
m_owner->updateForActiveTool();
|
|
}
|
|
|
|
void setInkTypeIcon(InkType inkType) {
|
|
SkinTheme* theme = SkinTheme::instance();
|
|
SkinPartPtr part = theme->parts.inkSimple();
|
|
|
|
switch (inkType) {
|
|
case InkType::SIMPLE: part = theme->parts.inkSimple(); break;
|
|
case InkType::ALPHA_COMPOSITING: part = theme->parts.inkAlphaCompositing(); break;
|
|
case InkType::COPY_COLOR: part = theme->parts.inkCopyColor(); break;
|
|
case InkType::LOCK_ALPHA: part = theme->parts.inkLockAlpha(); break;
|
|
case InkType::SHADING: part = theme->parts.inkShading(); break;
|
|
}
|
|
|
|
getItem(0)->setIcon(part);
|
|
}
|
|
|
|
protected:
|
|
void onItemChange(Item* item) override {
|
|
ButtonSet::onItemChange(item);
|
|
|
|
gfx::Rect bounds = this->bounds();
|
|
|
|
AppMenus::instance()
|
|
->getInkPopupMenu()
|
|
->showPopup(gfx::Point(bounds.x, bounds.y+bounds.h));
|
|
|
|
deselectItems();
|
|
}
|
|
|
|
ContextBar* m_owner;
|
|
};
|
|
|
|
class ContextBar::InkShadesField : public HBox {
|
|
|
|
public:
|
|
InkShadesField()
|
|
: m_button(SkinTheme::instance()->parts.iconArrowDown())
|
|
, m_shade(Shade(), ColorShades::DragAndDropEntries)
|
|
, m_loaded(false) {
|
|
addChild(&m_button);
|
|
addChild(&m_shade);
|
|
|
|
m_button.setFocusStop(false);
|
|
m_button.Click.connect(base::Bind<void>(&InkShadesField::onShowMenu, this));
|
|
|
|
initTheme();
|
|
}
|
|
|
|
~InkShadesField() {
|
|
saveShades();
|
|
}
|
|
|
|
void reverseShadeColors() {
|
|
m_shade.reverseShadeColors();
|
|
}
|
|
|
|
doc::Remap* createShadeRemap(bool left) {
|
|
return m_shade.createShadeRemap(left);
|
|
}
|
|
|
|
Shade getShade() const {
|
|
return m_shade.getShade();
|
|
}
|
|
|
|
void setShade(const Shade& shade) {
|
|
m_shade.setShade(shade);
|
|
}
|
|
|
|
void updateShadeFromColorBarPicks() {
|
|
m_shade.updateShadeFromColorBarPicks();
|
|
}
|
|
|
|
private:
|
|
void onInitTheme(InitThemeEvent& ev) override {
|
|
HBox::onInitTheme(ev);
|
|
SkinTheme* theme = SkinTheme::instance();
|
|
noBorderNoChildSpacing();
|
|
m_shade.setStyle(theme->styles.topShadeView());
|
|
m_button.setBgColor(theme->colors.workspace());
|
|
}
|
|
|
|
void onShowMenu() {
|
|
loadShades();
|
|
gfx::Rect bounds = m_button.bounds();
|
|
|
|
Menu menu;
|
|
MenuItem
|
|
reverse("Reverse Shade"),
|
|
save("Save Shade");
|
|
menu.addChild(&reverse);
|
|
menu.addChild(&save);
|
|
|
|
bool hasShade = (m_shade.size() >= 2);
|
|
reverse.setEnabled(hasShade);
|
|
save.setEnabled(hasShade);
|
|
reverse.Click.connect(base::Bind<void>(&InkShadesField::reverseShadeColors, this));
|
|
save.Click.connect(base::Bind<void>(&InkShadesField::onSaveShade, this));
|
|
|
|
if (!m_shades.empty()) {
|
|
SkinTheme* theme = SkinTheme::instance();
|
|
|
|
menu.addChild(new MenuSeparator);
|
|
|
|
int i = 0;
|
|
for (const Shade& shade : m_shades) {
|
|
auto shadeWidget = new ColorShades(shade, ColorShades::ClickWholeShade);
|
|
shadeWidget->setExpansive(true);
|
|
shadeWidget->Click.connect(
|
|
[&]{
|
|
m_shade.setShade(shade);
|
|
});
|
|
|
|
auto close = new IconButton(theme->parts.iconClose());
|
|
close->InitTheme.connect(
|
|
[close]{
|
|
close->setBgColor(
|
|
SkinTheme::instance()->colors.menuitemNormalFace());
|
|
});
|
|
close->initTheme();
|
|
close->Click.connect(
|
|
base::Bind<void>(
|
|
[this, i, close]{
|
|
m_shades.erase(m_shades.begin()+i);
|
|
close->closeWindow();
|
|
}));
|
|
|
|
auto item = new HBox();
|
|
item->InitTheme.connect(
|
|
[item]{
|
|
item->noBorderNoChildSpacing();
|
|
});
|
|
item->initTheme();
|
|
item->addChild(shadeWidget);
|
|
item->addChild(close);
|
|
menu.addChild(item);
|
|
++i;
|
|
}
|
|
}
|
|
|
|
menu.showPopup(gfx::Point(bounds.x, bounds.y+bounds.h));
|
|
m_button.invalidate();
|
|
}
|
|
|
|
void onSaveShade() {
|
|
loadShades();
|
|
m_shades.push_back(m_shade.getShade());
|
|
}
|
|
|
|
void loadShades() {
|
|
if (m_loaded)
|
|
return;
|
|
|
|
m_loaded = true;
|
|
|
|
char buf[32];
|
|
int n = get_config_int("shades", "count", 0);
|
|
n = MID(0, n, 256);
|
|
for (int i=0; i<n; ++i) {
|
|
sprintf(buf, "shade%d", i);
|
|
Shade shade = shade_from_string(get_config_string("shades", buf, ""));
|
|
if (shade.size() >= 2)
|
|
m_shades.push_back(shade);
|
|
}
|
|
}
|
|
|
|
void saveShades() {
|
|
if (!m_loaded)
|
|
return;
|
|
|
|
char buf[32];
|
|
int n = int(m_shades.size());
|
|
set_config_int("shades", "count", n);
|
|
for (int i=0; i<n; ++i) {
|
|
sprintf(buf, "shade%d", i);
|
|
set_config_string("shades", buf, shade_to_string(m_shades[i]).c_str());
|
|
}
|
|
}
|
|
|
|
IconButton m_button;
|
|
ColorShades m_shade;
|
|
std::vector<Shade> m_shades;
|
|
bool m_loaded;
|
|
};
|
|
|
|
class ContextBar::InkOpacityField : public IntEntry {
|
|
public:
|
|
InkOpacityField() : IntEntry(0, 255) {
|
|
}
|
|
|
|
protected:
|
|
void onValueChange() override {
|
|
if (g_updatingFromCode)
|
|
return;
|
|
|
|
IntEntry::onValueChange();
|
|
base::ScopedValue<bool> lockFlag(g_updatingFromCode, true, g_updatingFromCode);
|
|
|
|
int newValue = getValue();
|
|
Preferences& pref = Preferences::instance();
|
|
if (pref.shared.shareInk()) {
|
|
for (Tool* tool : *App::instance()->toolBox())
|
|
pref.tool(tool).opacity(newValue);
|
|
}
|
|
else {
|
|
Tool* tool = App::instance()->activeTool();
|
|
pref.tool(tool).opacity(newValue);
|
|
}
|
|
}
|
|
};
|
|
|
|
class ContextBar::SprayWidthField : public IntEntry {
|
|
public:
|
|
SprayWidthField() : IntEntry(1, 32) {
|
|
}
|
|
|
|
protected:
|
|
void onValueChange() override {
|
|
IntEntry::onValueChange();
|
|
if (g_updatingFromCode)
|
|
return;
|
|
|
|
Tool* tool = App::instance()->activeTool();
|
|
Preferences::instance().tool(tool).spray.width(getValue());
|
|
}
|
|
};
|
|
|
|
class ContextBar::SpraySpeedField : public IntEntry {
|
|
public:
|
|
SpraySpeedField() : IntEntry(1, 100) {
|
|
}
|
|
|
|
protected:
|
|
void onValueChange() override {
|
|
if (g_updatingFromCode)
|
|
return;
|
|
|
|
IntEntry::onValueChange();
|
|
|
|
Tool* tool = App::instance()->activeTool();
|
|
Preferences::instance().tool(tool).spray.speed(getValue());
|
|
}
|
|
};
|
|
|
|
class ContextBar::TransparentColorField : public HBox {
|
|
public:
|
|
TransparentColorField(ContextBar* owner)
|
|
: m_icon(1)
|
|
, m_maskColor(app::Color::fromMask(), IMAGE_RGB, ColorButtonOptions())
|
|
, m_owner(owner) {
|
|
SkinTheme* theme = SkinTheme::instance();
|
|
|
|
addChild(&m_icon);
|
|
addChild(&m_maskColor);
|
|
|
|
m_icon.addItem(theme->parts.selectionOpaque());
|
|
gfx::Size sz = m_icon.getItem(0)->sizeHint();
|
|
sz.w += 2*guiscale();
|
|
m_icon.getItem(0)->setMinSize(sz);
|
|
|
|
m_icon.ItemChange.connect(base::Bind<void>(&TransparentColorField::onPopup, this));
|
|
m_maskColor.Change.connect(base::Bind<void>(&TransparentColorField::onChangeColor, this));
|
|
|
|
Preferences::instance().selection.opaque.AfterChange.connect(
|
|
base::Bind<void>(&TransparentColorField::onOpaqueChange, this));
|
|
|
|
onOpaqueChange();
|
|
}
|
|
|
|
private:
|
|
|
|
void onPopup() {
|
|
gfx::Rect bounds = this->bounds();
|
|
|
|
Menu menu;
|
|
MenuItem
|
|
opaque("Opaque"),
|
|
masked("Transparent"),
|
|
automatic("Adjust automatically depending on layer type");
|
|
menu.addChild(&opaque);
|
|
menu.addChild(&masked);
|
|
menu.addChild(new MenuSeparator);
|
|
menu.addChild(&automatic);
|
|
|
|
if (Preferences::instance().selection.opaque())
|
|
opaque.setSelected(true);
|
|
else
|
|
masked.setSelected(true);
|
|
automatic.setSelected(Preferences::instance().selection.autoOpaque());
|
|
|
|
opaque.Click.connect(base::Bind<void>(&TransparentColorField::setOpaque, this, true));
|
|
masked.Click.connect(base::Bind<void>(&TransparentColorField::setOpaque, this, false));
|
|
automatic.Click.connect(base::Bind<void>(&TransparentColorField::onAutomatic, this));
|
|
|
|
menu.showPopup(gfx::Point(bounds.x, bounds.y+bounds.h));
|
|
}
|
|
|
|
void onChangeColor() {
|
|
Preferences::instance().selection.transparentColor(
|
|
m_maskColor.getColor());
|
|
}
|
|
|
|
void setOpaque(bool opaque) {
|
|
Preferences::instance().selection.opaque(opaque);
|
|
}
|
|
|
|
// When the preference is changed from outside the context bar
|
|
void onOpaqueChange() {
|
|
bool opaque = Preferences::instance().selection.opaque();
|
|
|
|
SkinTheme* theme = SkinTheme::instance();
|
|
SkinPartPtr part = (opaque ? theme->parts.selectionOpaque():
|
|
theme->parts.selectionMasked());
|
|
m_icon.getItem(0)->setIcon(part);
|
|
|
|
m_maskColor.setVisible(!opaque);
|
|
if (!opaque) {
|
|
Preferences::instance().selection.transparentColor(
|
|
m_maskColor.getColor());
|
|
}
|
|
|
|
if (m_owner)
|
|
m_owner->layout();
|
|
}
|
|
|
|
void onAutomatic() {
|
|
Preferences::instance().selection.autoOpaque(
|
|
!Preferences::instance().selection.autoOpaque());
|
|
}
|
|
|
|
ButtonSet m_icon;
|
|
ColorButton m_maskColor;
|
|
ContextBar* m_owner;
|
|
};
|
|
|
|
class ContextBar::PivotField : public ButtonSet {
|
|
public:
|
|
PivotField()
|
|
: ButtonSet(1) {
|
|
addItem(SkinTheme::instance()->parts.pivotCenter());
|
|
|
|
Preferences::instance().selection.pivotPosition.AfterChange.connect(
|
|
base::Bind<void>(&PivotField::onPivotChange, this));
|
|
|
|
onPivotChange();
|
|
}
|
|
|
|
private:
|
|
|
|
void onItemChange(Item* item) override {
|
|
ButtonSet::onItemChange(item);
|
|
|
|
SkinTheme* theme = static_cast<SkinTheme*>(this->theme());
|
|
gfx::Rect bounds = this->bounds();
|
|
|
|
Menu menu;
|
|
CheckBox visible("Display pivot by default");
|
|
HBox box;
|
|
ButtonSet buttonset(3);
|
|
buttonset.addItem(theme->parts.pivotNorthwest());
|
|
buttonset.addItem(theme->parts.pivotNorth());
|
|
buttonset.addItem(theme->parts.pivotNortheast());
|
|
buttonset.addItem(theme->parts.pivotWest());
|
|
buttonset.addItem(theme->parts.pivotCenter());
|
|
buttonset.addItem(theme->parts.pivotEast());
|
|
buttonset.addItem(theme->parts.pivotSouthwest());
|
|
buttonset.addItem(theme->parts.pivotSouth());
|
|
buttonset.addItem(theme->parts.pivotSoutheast());
|
|
box.addChild(&buttonset);
|
|
|
|
menu.addChild(&visible);
|
|
menu.addChild(new MenuSeparator);
|
|
menu.addChild(&box);
|
|
|
|
bool isVisible = Preferences::instance().selection.pivotVisibility();
|
|
app::gen::PivotPosition pos = Preferences::instance().selection.pivotPosition();
|
|
visible.setSelected(isVisible);
|
|
buttonset.setSelectedItem(int(pos));
|
|
|
|
visible.Click.connect(
|
|
[&visible](Event&){
|
|
Preferences::instance().selection.pivotVisibility(
|
|
visible.isSelected());
|
|
});
|
|
|
|
buttonset.ItemChange.connect(
|
|
[&buttonset](ButtonSet::Item* item){
|
|
Preferences::instance().selection.pivotPosition(
|
|
app::gen::PivotPosition(buttonset.selectedItem()));
|
|
});
|
|
|
|
menu.showPopup(gfx::Point(bounds.x, bounds.y+bounds.h));
|
|
}
|
|
|
|
void onPivotChange() {
|
|
SkinTheme* theme = SkinTheme::instance();
|
|
SkinPartPtr part;
|
|
switch (Preferences::instance().selection.pivotPosition()) {
|
|
case app::gen::PivotPosition::NORTHWEST: part = theme->parts.pivotNorthwest(); break;
|
|
case app::gen::PivotPosition::NORTH: part = theme->parts.pivotNorth(); break;
|
|
case app::gen::PivotPosition::NORTHEAST: part = theme->parts.pivotNortheast(); break;
|
|
case app::gen::PivotPosition::WEST: part = theme->parts.pivotWest(); break;
|
|
case app::gen::PivotPosition::CENTER: part = theme->parts.pivotCenter(); break;
|
|
case app::gen::PivotPosition::EAST: part = theme->parts.pivotEast(); break;
|
|
case app::gen::PivotPosition::SOUTHWEST: part = theme->parts.pivotSouthwest(); break;
|
|
case app::gen::PivotPosition::SOUTH: part = theme->parts.pivotSouth(); break;
|
|
case app::gen::PivotPosition::SOUTHEAST: part = theme->parts.pivotSoutheast(); break;
|
|
}
|
|
if (part)
|
|
getItem(0)->setIcon(part);
|
|
}
|
|
|
|
};
|
|
|
|
class ContextBar::RotAlgorithmField : public ComboBox {
|
|
public:
|
|
RotAlgorithmField() {
|
|
// We use "m_lockChange" variable to avoid setting the rotation
|
|
// algorithm when we call ComboBox::addItem() (because the first
|
|
// addItem() generates an onChange() event).
|
|
m_lockChange = true;
|
|
addItem(new Item("Fast Rotation", tools::RotationAlgorithm::FAST));
|
|
addItem(new Item("RotSprite", tools::RotationAlgorithm::ROTSPRITE));
|
|
m_lockChange = false;
|
|
|
|
setSelectedItemIndex((int)Preferences::instance().selection.rotationAlgorithm());
|
|
}
|
|
|
|
protected:
|
|
void onChange() override {
|
|
if (m_lockChange)
|
|
return;
|
|
|
|
Preferences::instance().selection.rotationAlgorithm(
|
|
static_cast<Item*>(getSelectedItem())->algo());
|
|
}
|
|
|
|
void onCloseListBox() override {
|
|
releaseFocus();
|
|
}
|
|
|
|
private:
|
|
class Item : public ListItem {
|
|
public:
|
|
Item(const std::string& text, tools::RotationAlgorithm algo) :
|
|
ListItem(text),
|
|
m_algo(algo) {
|
|
}
|
|
|
|
tools::RotationAlgorithm algo() const { return m_algo; }
|
|
|
|
private:
|
|
tools::RotationAlgorithm m_algo;
|
|
};
|
|
|
|
bool m_lockChange;
|
|
};
|
|
|
|
class ContextBar::FreehandAlgorithmField : public CheckBox {
|
|
public:
|
|
FreehandAlgorithmField() : CheckBox("Pixel-perfect") {
|
|
initTheme();
|
|
}
|
|
|
|
void setupTooltips(TooltipManager* tooltipManager) {
|
|
// Do nothing
|
|
}
|
|
|
|
void setFreehandAlgorithm(tools::FreehandAlgorithm algo) {
|
|
switch (algo) {
|
|
case tools::FreehandAlgorithm::DEFAULT:
|
|
setSelected(false);
|
|
break;
|
|
case tools::FreehandAlgorithm::PIXEL_PERFECT:
|
|
setSelected(true);
|
|
break;
|
|
case tools::FreehandAlgorithm::DOTS:
|
|
// Not available
|
|
break;
|
|
}
|
|
}
|
|
|
|
protected:
|
|
void onInitTheme(InitThemeEvent& ev) override {
|
|
CheckBox::onInitTheme(ev);
|
|
setStyle(SkinTheme::instance()->styles.miniCheckBox());
|
|
}
|
|
|
|
void onClick(Event& ev) override {
|
|
CheckBox::onClick(ev);
|
|
|
|
Tool* tool = App::instance()->activeTool();
|
|
Preferences::instance().tool(tool).freehandAlgorithm(
|
|
isSelected() ?
|
|
tools::FreehandAlgorithm::PIXEL_PERFECT:
|
|
tools::FreehandAlgorithm::DEFAULT);
|
|
|
|
releaseFocus();
|
|
}
|
|
};
|
|
|
|
class ContextBar::SelectionModeField : public ButtonSet {
|
|
public:
|
|
SelectionModeField() : ButtonSet(3) {
|
|
SkinTheme* theme = static_cast<SkinTheme*>(this->theme());
|
|
|
|
addItem(theme->parts.selectionReplace());
|
|
addItem(theme->parts.selectionAdd());
|
|
addItem(theme->parts.selectionSubtract());
|
|
|
|
setSelectedItem((int)Preferences::instance().selection.mode());
|
|
}
|
|
|
|
void setupTooltips(TooltipManager* tooltipManager) {
|
|
tooltipManager->addTooltipFor(
|
|
at(0), "Replace selection", BOTTOM);
|
|
|
|
tooltipManager->addTooltipFor(
|
|
at(1), key_tooltip("Add to selection", KeyAction::AddSelection), BOTTOM);
|
|
|
|
tooltipManager->addTooltipFor(
|
|
at(2), key_tooltip("Subtract from selection", KeyAction::SubtractSelection), BOTTOM);
|
|
}
|
|
|
|
void setSelectionMode(gen::SelectionMode mode) {
|
|
setSelectedItem((int)mode, false);
|
|
invalidate();
|
|
}
|
|
|
|
protected:
|
|
void onItemChange(Item* item) override {
|
|
ButtonSet::onItemChange(item);
|
|
|
|
Preferences::instance().selection.mode(
|
|
(gen::SelectionMode)selectedItem());
|
|
}
|
|
};
|
|
|
|
class ContextBar::DropPixelsField : public ButtonSet {
|
|
public:
|
|
DropPixelsField() : ButtonSet(2) {
|
|
SkinTheme* theme = static_cast<SkinTheme*>(this->theme());
|
|
|
|
addItem(theme->parts.dropPixelsOk());
|
|
addItem(theme->parts.dropPixelsCancel());
|
|
setOfferCapture(false);
|
|
}
|
|
|
|
void setupTooltips(TooltipManager* tooltipManager) {
|
|
// TODO Enter and Esc should be configurable keys
|
|
tooltipManager->addTooltipFor(at(0), "Drop pixels here (Enter)", BOTTOM);
|
|
tooltipManager->addTooltipFor(at(1), "Cancel drag and drop (Esc)", BOTTOM);
|
|
}
|
|
|
|
obs::signal<void(ContextBarObserver::DropAction)> DropPixels;
|
|
|
|
protected:
|
|
void onItemChange(Item* item) override {
|
|
ButtonSet::onItemChange(item);
|
|
|
|
switch (selectedItem()) {
|
|
case 0: DropPixels(ContextBarObserver::DropPixels); break;
|
|
case 1: DropPixels(ContextBarObserver::CancelDrag); break;
|
|
}
|
|
}
|
|
};
|
|
|
|
class ContextBar::EyedropperField : public HBox {
|
|
public:
|
|
EyedropperField() {
|
|
m_channel.addItem("Color+Alpha");
|
|
m_channel.addItem("Color");
|
|
m_channel.addItem("Alpha");
|
|
m_channel.addItem("RGB+Alpha");
|
|
m_channel.addItem("RGB");
|
|
m_channel.addItem("HSV+Alpha");
|
|
m_channel.addItem("HSV");
|
|
m_channel.addItem("HSL+Alpha");
|
|
m_channel.addItem("HSL");
|
|
m_channel.addItem("Gray+Alpha");
|
|
m_channel.addItem("Gray");
|
|
m_channel.addItem("Best fit Index");
|
|
|
|
m_sample.addItem("All Layers");
|
|
m_sample.addItem("Current Layer");
|
|
m_sample.addItem("First Reference Layer");
|
|
|
|
addChild(new Label("Pick:"));
|
|
addChild(&m_channel);
|
|
addChild(new Label("Sample:"));
|
|
addChild(&m_sample);
|
|
|
|
m_channel.Change.connect(base::Bind<void>(&EyedropperField::onChannelChange, this));
|
|
m_sample.Change.connect(base::Bind<void>(&EyedropperField::onSampleChange, this));
|
|
}
|
|
|
|
void updateFromPreferences(app::Preferences::Eyedropper& prefEyedropper) {
|
|
m_channel.setSelectedItemIndex((int)prefEyedropper.channel());
|
|
m_sample.setSelectedItemIndex((int)prefEyedropper.sample());
|
|
}
|
|
|
|
private:
|
|
void onChannelChange() {
|
|
Preferences::instance().eyedropper.channel(
|
|
(app::gen::EyedropperChannel)m_channel.getSelectedItemIndex());
|
|
}
|
|
|
|
void onSampleChange() {
|
|
Preferences::instance().eyedropper.sample(
|
|
(app::gen::EyedropperSample)m_sample.getSelectedItemIndex());
|
|
}
|
|
|
|
ComboBox m_channel;
|
|
ComboBox m_sample;
|
|
};
|
|
|
|
class ContextBar::AutoSelectLayerField : public CheckBox {
|
|
public:
|
|
AutoSelectLayerField() : CheckBox("Auto Select Layer") {
|
|
initTheme();
|
|
}
|
|
|
|
protected:
|
|
void onInitTheme(InitThemeEvent& ev) override {
|
|
CheckBox::onInitTheme(ev);
|
|
setStyle(SkinTheme::instance()->styles.miniCheckBox());
|
|
}
|
|
|
|
void onClick(Event& ev) override {
|
|
CheckBox::onClick(ev);
|
|
|
|
Preferences::instance().editor.autoSelectLayer(isSelected());
|
|
|
|
releaseFocus();
|
|
}
|
|
};
|
|
|
|
class ContextBar::SymmetryField : public ButtonSet {
|
|
public:
|
|
SymmetryField() : ButtonSet(2) {
|
|
setMultipleSelection(true);
|
|
SkinTheme* theme = SkinTheme::instance();
|
|
addItem(theme->parts.horizontalSymmetry());
|
|
addItem(theme->parts.verticalSymmetry());
|
|
}
|
|
|
|
void setupTooltips(TooltipManager* tooltipManager) {
|
|
tooltipManager->addTooltipFor(at(0), "Horizontal Symmetry", BOTTOM);
|
|
tooltipManager->addTooltipFor(at(1), "Vertical Symmetry", BOTTOM);
|
|
}
|
|
|
|
void updateWithCurrentDocument() {
|
|
Doc* doc = UIContext::instance()->activeDocument();
|
|
if (!doc)
|
|
return;
|
|
|
|
DocumentPreferences& docPref = Preferences::instance().document(doc);
|
|
|
|
at(0)->setSelected(int(docPref.symmetry.mode()) & int(app::gen::SymmetryMode::HORIZONTAL) ? true: false);
|
|
at(1)->setSelected(int(docPref.symmetry.mode()) & int(app::gen::SymmetryMode::VERTICAL) ? true: false);
|
|
}
|
|
|
|
private:
|
|
void onItemChange(Item* item) override {
|
|
ButtonSet::onItemChange(item);
|
|
|
|
Doc* doc = UIContext::instance()->activeDocument();
|
|
if (!doc)
|
|
return;
|
|
|
|
DocumentPreferences& docPref =
|
|
Preferences::instance().document(doc);
|
|
|
|
int mode = 0;
|
|
if (at(0)->isSelected()) mode |= int(app::gen::SymmetryMode::HORIZONTAL);
|
|
if (at(1)->isSelected()) mode |= int(app::gen::SymmetryMode::VERTICAL);
|
|
docPref.symmetry.mode(app::gen::SymmetryMode(mode));
|
|
|
|
// Redraw symmetry rules
|
|
doc->notifyGeneralUpdate();
|
|
}
|
|
};
|
|
|
|
ContextBar::ContextBar()
|
|
: Box(HORIZONTAL)
|
|
{
|
|
addChild(m_selectionOptionsBox = new HBox());
|
|
m_selectionOptionsBox->addChild(m_dropPixels = new DropPixelsField());
|
|
m_selectionOptionsBox->addChild(m_selectionMode = new SelectionModeField);
|
|
m_selectionOptionsBox->addChild(m_transparentColor = new TransparentColorField(this));
|
|
m_selectionOptionsBox->addChild(m_pivot = new PivotField);
|
|
m_selectionOptionsBox->addChild(m_rotAlgo = new RotAlgorithmField());
|
|
|
|
addChild(m_zoomButtons = new ZoomButtons);
|
|
|
|
addChild(m_brushBack = new BrushBackField);
|
|
addChild(m_brushType = new BrushTypeField(this));
|
|
addChild(m_brushSize = new BrushSizeField());
|
|
addChild(m_brushAngle = new BrushAngleField(m_brushType));
|
|
addChild(m_brushPatternField = new BrushPatternField());
|
|
|
|
addChild(m_toleranceLabel = new Label("Tolerance:"));
|
|
addChild(m_tolerance = new ToleranceField());
|
|
addChild(m_contiguous = new ContiguousField());
|
|
addChild(m_paintBucketSettings = new PaintBucketSettingsField());
|
|
addChild(m_ditheringSelector = new DitheringSelector(DitheringSelector::SelectMatrix));
|
|
m_ditheringSelector->setUseCustomWidget(false); // Disable custom widget because the context bar is too small
|
|
|
|
addChild(m_inkType = new InkTypeField(this));
|
|
addChild(m_inkOpacityLabel = new Label("Opacity:"));
|
|
addChild(m_inkOpacity = new InkOpacityField());
|
|
addChild(m_inkShades = new InkShadesField());
|
|
|
|
addChild(m_eyedropperField = new EyedropperField());
|
|
|
|
addChild(m_autoSelectLayer = new AutoSelectLayerField());
|
|
|
|
// addChild(new InkChannelTargetField());
|
|
// addChild(new InkShadeField());
|
|
// addChild(new InkSelectionField());
|
|
|
|
addChild(m_sprayBox = new HBox());
|
|
m_sprayBox->addChild(m_sprayLabel = new Label("Spray:"));
|
|
m_sprayBox->addChild(m_sprayWidth = new SprayWidthField());
|
|
m_sprayBox->addChild(m_spraySpeed = new SpraySpeedField());
|
|
|
|
addChild(m_selectBoxHelp = new Label(""));
|
|
addChild(m_freehandBox = new HBox());
|
|
|
|
m_freehandBox->addChild(m_freehandAlgo = new FreehandAlgorithmField());
|
|
|
|
addChild(m_symmetry = new SymmetryField());
|
|
m_symmetry->setVisible(Preferences::instance().symmetryMode.enabled());
|
|
|
|
TooltipManager* tooltipManager = new TooltipManager();
|
|
addChild(tooltipManager);
|
|
|
|
setupTooltips(tooltipManager);
|
|
|
|
App::instance()->activeToolManager()->add_observer(this);
|
|
|
|
auto& pref = Preferences::instance();
|
|
pref.symmetryMode.enabled.AfterChange.connect(
|
|
base::Bind<void>(&ContextBar::onSymmetryModeChange, this));
|
|
pref.colorBar.fgColor.AfterChange.connect(
|
|
base::Bind<void>(&ContextBar::onFgOrBgColorChange, this, doc::Brush::ImageColor::MainColor));
|
|
pref.colorBar.bgColor.AfterChange.connect(
|
|
base::Bind<void>(&ContextBar::onFgOrBgColorChange, this, doc::Brush::ImageColor::BackgroundColor));
|
|
|
|
KeyboardShortcuts::instance()->UserChange.connect(
|
|
base::Bind<void>(&ContextBar::setupTooltips, this, tooltipManager));
|
|
|
|
m_dropPixels->DropPixels.connect(&ContextBar::onDropPixels, this);
|
|
|
|
setActiveBrush(createBrushFromPreferences());
|
|
|
|
initTheme();
|
|
registerCommands();
|
|
}
|
|
|
|
ContextBar::~ContextBar()
|
|
{
|
|
App::instance()->activeToolManager()->remove_observer(this);
|
|
}
|
|
|
|
void ContextBar::onInitTheme(ui::InitThemeEvent& ev)
|
|
{
|
|
Box::onInitTheme(ev);
|
|
|
|
SkinTheme* theme = static_cast<SkinTheme*>(this->theme());
|
|
gfx::Border border = this->border();
|
|
border.bottom(2*guiscale());
|
|
setBorder(border);
|
|
setBgColor(theme->colors.workspace());
|
|
m_sprayLabel->setStyle(theme->styles.miniLabel());
|
|
m_toleranceLabel->setStyle(theme->styles.miniLabel());
|
|
m_inkOpacityLabel->setStyle(theme->styles.miniLabel());
|
|
}
|
|
|
|
void ContextBar::onSizeHint(SizeHintEvent& ev)
|
|
{
|
|
ev.setSizeHint(gfx::Size(0, 18*guiscale())); // TODO calculate height
|
|
}
|
|
|
|
void ContextBar::onToolSetOpacity(const int& newOpacity)
|
|
{
|
|
if (g_updatingFromCode)
|
|
return;
|
|
|
|
m_inkOpacity->setTextf("%d", newOpacity);
|
|
}
|
|
|
|
void ContextBar::onToolSetFreehandAlgorithm()
|
|
{
|
|
Tool* tool = App::instance()->activeTool();
|
|
if (tool) {
|
|
m_freehandAlgo->setFreehandAlgorithm(
|
|
Preferences::instance().tool(tool).freehandAlgorithm());
|
|
}
|
|
}
|
|
|
|
void ContextBar::onToolSetContiguous()
|
|
{
|
|
Tool* tool = App::instance()->activeTool();
|
|
if (tool) {
|
|
m_contiguous->setSelected(
|
|
Preferences::instance().tool(tool).contiguous());
|
|
}
|
|
}
|
|
|
|
void ContextBar::onBrushSizeChange()
|
|
{
|
|
if (m_activeBrush->type() != kImageBrushType)
|
|
discardActiveBrush();
|
|
|
|
updateForActiveTool();
|
|
}
|
|
|
|
void ContextBar::onBrushAngleChange()
|
|
{
|
|
if (m_activeBrush->type() != kImageBrushType)
|
|
discardActiveBrush();
|
|
}
|
|
|
|
void ContextBar::onActiveToolChange(tools::Tool* tool)
|
|
{
|
|
if (m_activeBrush->type() != kImageBrushType)
|
|
setActiveBrush(ContextBar::createBrushFromPreferences());
|
|
else {
|
|
updateForTool(tool);
|
|
}
|
|
}
|
|
|
|
void ContextBar::onSymmetryModeChange()
|
|
{
|
|
updateForActiveTool();
|
|
}
|
|
|
|
void ContextBar::onFgOrBgColorChange(doc::Brush::ImageColor imageColor)
|
|
{
|
|
if (!m_activeBrush)
|
|
return;
|
|
|
|
if (m_activeBrush->type() == kImageBrushType) {
|
|
ASSERT(m_activeBrush->image());
|
|
|
|
auto& pref = Preferences::instance();
|
|
m_activeBrush->setImageColor(
|
|
imageColor,
|
|
color_utils::color_for_target_mask(
|
|
(imageColor == doc::Brush::ImageColor::MainColor ?
|
|
pref.colorBar.fgColor():
|
|
pref.colorBar.bgColor()),
|
|
ColorTarget(ColorTarget::TransparentLayer,
|
|
m_activeBrush->image()->pixelFormat(),
|
|
-1)));
|
|
}
|
|
}
|
|
|
|
void ContextBar::onDropPixels(ContextBarObserver::DropAction action)
|
|
{
|
|
notify_observers(&ContextBarObserver::onDropPixels, action);
|
|
}
|
|
|
|
void ContextBar::updateForActiveTool()
|
|
{
|
|
updateForTool(App::instance()->activeTool());
|
|
}
|
|
|
|
void ContextBar::updateForTool(tools::Tool* tool)
|
|
{
|
|
// TODO Improve the design of the visibility of ContextBar
|
|
// items. Actually this manual show/hide logic is a mess. There
|
|
// should be a IContextBarUser interface, with a method to ask who
|
|
// needs which items to be visible. E.g. different tools elements
|
|
// (inks, controllers, etc.) and sprite editor states are the main
|
|
// target to implement this new IContextBarUser and ask for
|
|
// ContextBar elements.
|
|
|
|
const bool oldUpdatingFromCode = g_updatingFromCode;
|
|
base::ScopedValue<bool> lockFlag(g_updatingFromCode, true, oldUpdatingFromCode);
|
|
|
|
ToolPreferences* toolPref = nullptr;
|
|
ToolPreferences::Brush* brushPref = nullptr;
|
|
Preferences& preferences = Preferences::instance();
|
|
|
|
if (tool) {
|
|
toolPref = &preferences.tool(tool);
|
|
brushPref = &toolPref->brush;
|
|
}
|
|
|
|
if (toolPref) {
|
|
m_sizeConn = brushPref->size.AfterChange.connect(base::Bind<void>(&ContextBar::onBrushSizeChange, this));
|
|
m_angleConn = brushPref->angle.AfterChange.connect(base::Bind<void>(&ContextBar::onBrushAngleChange, this));
|
|
m_opacityConn = toolPref->opacity.AfterChange.connect(&ContextBar::onToolSetOpacity, this);
|
|
m_freehandAlgoConn = toolPref->freehandAlgorithm.AfterChange.connect(base::Bind<void>(&ContextBar::onToolSetFreehandAlgorithm, this));
|
|
m_contiguousConn = toolPref->contiguous.AfterChange.connect(base::Bind<void>(&ContextBar::onToolSetContiguous, this));
|
|
}
|
|
|
|
if (tool)
|
|
m_brushType->updateBrush(tool);
|
|
|
|
if (brushPref) {
|
|
if (!oldUpdatingFromCode) {
|
|
m_brushSize->setTextf("%d", brushPref->size());
|
|
m_brushAngle->setTextf("%d", brushPref->angle());
|
|
}
|
|
}
|
|
|
|
m_brushPatternField->setBrushPattern(
|
|
preferences.brush.pattern());
|
|
|
|
// Tool ink
|
|
bool isPaint = tool &&
|
|
(tool->getInk(0)->isPaint() ||
|
|
tool->getInk(1)->isPaint());
|
|
bool isEffect = tool &&
|
|
(tool->getInk(0)->isEffect() ||
|
|
tool->getInk(1)->isEffect());
|
|
|
|
// True if the current tool support opacity slider
|
|
bool supportOpacity = (isPaint || isEffect);
|
|
|
|
// True if it makes sense to change the ink property for the current
|
|
// tool.
|
|
bool hasInk = tool &&
|
|
((tool->getInk(0)->isPaint() && !tool->getInk(0)->isEffect()) ||
|
|
(tool->getInk(1)->isPaint() && !tool->getInk(1)->isEffect()));
|
|
|
|
bool hasInkWithOpacity = false;
|
|
bool hasInkShades = false;
|
|
|
|
if (toolPref) {
|
|
m_tolerance->setTextf("%d", toolPref->tolerance());
|
|
m_contiguous->setSelected(toolPref->contiguous());
|
|
|
|
m_inkType->setInkTypeIcon(toolPref->ink());
|
|
m_inkOpacity->setTextf("%d", toolPref->opacity());
|
|
|
|
hasInkWithOpacity =
|
|
((isPaint && tools::inkHasOpacity(toolPref->ink())) ||
|
|
(isEffect));
|
|
|
|
hasInkShades =
|
|
(isPaint && !isEffect && toolPref->ink() == InkType::SHADING);
|
|
|
|
m_freehandAlgo->setFreehandAlgorithm(toolPref->freehandAlgorithm());
|
|
|
|
m_sprayWidth->setValue(toolPref->spray.width());
|
|
m_spraySpeed->setValue(toolPref->spray.speed());
|
|
}
|
|
|
|
const bool updateShade = (!m_inkShades->isVisible() && hasInkShades);
|
|
|
|
m_eyedropperField->updateFromPreferences(preferences.eyedropper);
|
|
m_autoSelectLayer->setSelected(preferences.editor.autoSelectLayer());
|
|
|
|
// True if we have an image as brush
|
|
const bool hasImageBrush = (activeBrush()->type() == kImageBrushType);
|
|
|
|
// True if the brush type supports angle.
|
|
const bool hasBrushWithAngle =
|
|
(activeBrush()->size() > 1) &&
|
|
(activeBrush()->type() == kSquareBrushType ||
|
|
activeBrush()->type() == kLineBrushType);
|
|
|
|
// True if the current tool is eyedropper.
|
|
const bool needZoomButtons = tool &&
|
|
(tool->getInk(0)->isZoom() ||
|
|
tool->getInk(1)->isZoom() ||
|
|
tool->getInk(0)->isScrollMovement() ||
|
|
tool->getInk(1)->isScrollMovement());
|
|
|
|
// True if the current tool is eyedropper.
|
|
const bool isEyedropper = tool &&
|
|
(tool->getInk(0)->isEyedropper() ||
|
|
tool->getInk(1)->isEyedropper());
|
|
|
|
// True if the current tool is move tool.
|
|
const bool isMove = tool &&
|
|
(tool->getInk(0)->isCelMovement() ||
|
|
tool->getInk(1)->isCelMovement());
|
|
|
|
// True if the current tool is floodfill
|
|
const bool isFloodfill = tool &&
|
|
(tool->getPointShape(0)->isFloodFill() ||
|
|
tool->getPointShape(1)->isFloodFill());
|
|
|
|
// True if the current tool needs tolerance options
|
|
const bool hasTolerance = tool &&
|
|
(tool->getPointShape(0)->isFloodFill() ||
|
|
tool->getPointShape(1)->isFloodFill());
|
|
|
|
// True if the current tool needs spray options
|
|
const bool hasSprayOptions = tool &&
|
|
(tool->getPointShape(0)->isSpray() ||
|
|
tool->getPointShape(1)->isSpray());
|
|
|
|
const bool hasSelectOptions = tool &&
|
|
(tool->getInk(0)->isSelection() ||
|
|
tool->getInk(1)->isSelection());
|
|
|
|
const bool isFreehand = tool &&
|
|
(tool->getController(0)->isFreehand() ||
|
|
tool->getController(1)->isFreehand());
|
|
|
|
const bool showOpacity =
|
|
(supportOpacity) &&
|
|
((isPaint && (hasInkWithOpacity || hasImageBrush)) ||
|
|
(isEffect));
|
|
|
|
const bool withDithering = tool &&
|
|
(tool->getInk(0)->withDitheringOptions() ||
|
|
tool->getInk(1)->withDitheringOptions());
|
|
|
|
// Show/Hide fields
|
|
m_zoomButtons->setVisible(needZoomButtons);
|
|
m_brushBack->setVisible(supportOpacity && hasImageBrush && !withDithering);
|
|
m_brushType->setVisible(supportOpacity && (!isFloodfill || (isFloodfill && hasImageBrush && !withDithering)));
|
|
m_brushSize->setVisible(supportOpacity && !isFloodfill && !hasImageBrush);
|
|
m_brushAngle->setVisible(supportOpacity && !isFloodfill && !hasImageBrush && hasBrushWithAngle);
|
|
m_brushPatternField->setVisible(supportOpacity && hasImageBrush && !withDithering);
|
|
m_inkType->setVisible(hasInk);
|
|
m_inkOpacityLabel->setVisible(showOpacity);
|
|
m_inkOpacity->setVisible(showOpacity);
|
|
m_inkShades->setVisible(hasInkShades);
|
|
m_eyedropperField->setVisible(isEyedropper);
|
|
m_autoSelectLayer->setVisible(isMove);
|
|
m_freehandBox->setVisible(isFreehand && supportOpacity);
|
|
m_toleranceLabel->setVisible(hasTolerance);
|
|
m_tolerance->setVisible(hasTolerance);
|
|
m_contiguous->setVisible(hasTolerance);
|
|
m_paintBucketSettings->setVisible(hasTolerance);
|
|
m_sprayBox->setVisible(hasSprayOptions);
|
|
m_selectionOptionsBox->setVisible(hasSelectOptions);
|
|
m_ditheringSelector->setVisible(withDithering);
|
|
m_selectionMode->setVisible(true);
|
|
m_pivot->setVisible(true);
|
|
m_dropPixels->setVisible(false);
|
|
m_selectBoxHelp->setVisible(false);
|
|
|
|
m_symmetry->setVisible(
|
|
Preferences::instance().symmetryMode.enabled() &&
|
|
(isPaint || isEffect || hasSelectOptions));
|
|
m_symmetry->updateWithCurrentDocument();
|
|
|
|
// Update ink shades with the current selected palette entries
|
|
if (updateShade)
|
|
m_inkShades->updateShadeFromColorBarPicks();
|
|
|
|
layout();
|
|
}
|
|
|
|
void ContextBar::updateForMovingPixels()
|
|
{
|
|
tools::Tool* tool = App::instance()->toolBox()->getToolById(
|
|
tools::WellKnownTools::RectangularMarquee);
|
|
if (tool)
|
|
updateForTool(tool);
|
|
|
|
m_dropPixels->deselectItems();
|
|
m_dropPixels->setVisible(true);
|
|
m_selectionMode->setVisible(false);
|
|
layout();
|
|
}
|
|
|
|
void ContextBar::updateForSelectingBox(const std::string& text)
|
|
{
|
|
if (m_selectBoxHelp->isVisible() && m_selectBoxHelp->text() == text)
|
|
return;
|
|
|
|
updateForTool(nullptr);
|
|
m_selectBoxHelp->setText(text);
|
|
m_selectBoxHelp->setVisible(true);
|
|
layout();
|
|
}
|
|
|
|
void ContextBar::updateToolLoopModifiersIndicators(tools::ToolLoopModifiers modifiers)
|
|
{
|
|
if (!m_selectionMode->isVisible())
|
|
return;
|
|
|
|
gen::SelectionMode mode = gen::SelectionMode::DEFAULT;
|
|
if (int(modifiers) & int(tools::ToolLoopModifiers::kAddSelection))
|
|
mode = gen::SelectionMode::ADD;
|
|
else if (int(modifiers) & int(tools::ToolLoopModifiers::kSubtractSelection))
|
|
mode = gen::SelectionMode::SUBTRACT;
|
|
|
|
m_selectionMode->setSelectionMode(mode);
|
|
}
|
|
|
|
void ContextBar::updateAutoSelectLayer(bool state)
|
|
{
|
|
m_autoSelectLayer->setSelected(state);
|
|
}
|
|
|
|
bool ContextBar::isAutoSelectLayer() const
|
|
{
|
|
return m_autoSelectLayer->isSelected();
|
|
}
|
|
|
|
void ContextBar::setActiveBrushBySlot(tools::Tool* tool, int slot)
|
|
{
|
|
ASSERT(tool);
|
|
if (!tool)
|
|
return;
|
|
|
|
AppBrushes& brushes = App::instance()->brushes();
|
|
BrushSlot brush = brushes.getBrushSlot(slot);
|
|
if (!brush.isEmpty()) {
|
|
brushes.lockBrushSlot(slot);
|
|
|
|
Preferences& pref = Preferences::instance();
|
|
ToolPreferences& toolPref = pref.tool(tool);
|
|
ToolPreferences::Brush& brushPref = toolPref.brush;
|
|
|
|
if (brush.brush()) {
|
|
if (brush.brush()->type() == doc::kImageBrushType) {
|
|
setActiveBrush(brush.brush());
|
|
}
|
|
else {
|
|
if (brush.hasFlag(BrushSlot::Flags::BrushType))
|
|
brushPref.type(static_cast<app::gen::BrushType>(brush.brush()->type()));
|
|
|
|
if (brush.hasFlag(BrushSlot::Flags::BrushSize))
|
|
brushPref.size(brush.brush()->size());
|
|
|
|
if (brush.hasFlag(BrushSlot::Flags::BrushAngle))
|
|
brushPref.angle(brush.brush()->angle());
|
|
|
|
setActiveBrush(ContextBar::createBrushFromPreferences());
|
|
}
|
|
}
|
|
|
|
if (brush.hasFlag(BrushSlot::Flags::FgColor))
|
|
pref.colorBar.fgColor(brush.fgColor());
|
|
|
|
if (brush.hasFlag(BrushSlot::Flags::BgColor))
|
|
pref.colorBar.bgColor(brush.bgColor());
|
|
|
|
// If the image/stamp brush doesn't have the "ImageColor" flag, it
|
|
// means that we have to change the image color to the current
|
|
// "foreground color".
|
|
if (brush.brush() &&
|
|
brush.brush()->type() == doc::kImageBrushType &&
|
|
!brush.hasFlag(BrushSlot::Flags::ImageColor)) {
|
|
auto pixelFormat = brush.brush()->image()->pixelFormat();
|
|
|
|
brush.brush()->setImageColor(
|
|
Brush::ImageColor::MainColor,
|
|
color_utils::color_for_target_mask(
|
|
pref.colorBar.fgColor(),
|
|
ColorTarget(ColorTarget::TransparentLayer,
|
|
pixelFormat,
|
|
-1)));
|
|
|
|
brush.brush()->setImageColor(
|
|
Brush::ImageColor::BackgroundColor,
|
|
color_utils::color_for_target_mask(
|
|
pref.colorBar.bgColor(),
|
|
ColorTarget(ColorTarget::TransparentLayer,
|
|
pixelFormat,
|
|
-1)));
|
|
}
|
|
|
|
if (brush.hasFlag(BrushSlot::Flags::InkType))
|
|
setInkType(brush.inkType());
|
|
|
|
if (brush.hasFlag(BrushSlot::Flags::InkOpacity))
|
|
toolPref.opacity(brush.inkOpacity());
|
|
|
|
if (brush.hasFlag(BrushSlot::Flags::Shade))
|
|
m_inkShades->setShade(brush.shade());
|
|
|
|
if (brush.hasFlag(BrushSlot::Flags::PixelPerfect))
|
|
toolPref.freehandAlgorithm(
|
|
(brush.pixelPerfect() ?
|
|
tools::FreehandAlgorithm::PIXEL_PERFECT:
|
|
tools::FreehandAlgorithm::REGULAR));
|
|
}
|
|
else {
|
|
updateForTool(tool);
|
|
m_brushType->showPopupAndHighlightSlot(slot);
|
|
}
|
|
}
|
|
|
|
void ContextBar::setActiveBrush(const doc::BrushRef& brush)
|
|
{
|
|
if (brush->type() == kImageBrushType)
|
|
m_activeBrush = brush;
|
|
else {
|
|
Tool* tool = App::instance()->activeTool();
|
|
auto& brushPref = Preferences::instance().tool(tool).brush;
|
|
auto newBrushType = static_cast<app::gen::BrushType>(brush->type());
|
|
if (brushPref.type() != newBrushType)
|
|
brushPref.type(newBrushType);
|
|
|
|
m_activeBrush = brush;
|
|
}
|
|
|
|
BrushChange();
|
|
|
|
updateForActiveTool();
|
|
}
|
|
|
|
doc::BrushRef ContextBar::activeBrush(tools::Tool* tool,
|
|
tools::Ink* ink) const
|
|
{
|
|
if (ink == nullptr)
|
|
ink = (tool ? tool->getInk(0): nullptr);
|
|
|
|
// Selection tools use a brush with size = 1 (always)
|
|
if (ink && ink->isSelection()) {
|
|
doc::BrushRef brush;
|
|
brush.reset(new Brush(kCircleBrushType, 1, 0));
|
|
return brush;
|
|
}
|
|
|
|
if ((tool == nullptr) ||
|
|
(tool == App::instance()->activeTool()) ||
|
|
(ink && ink->isPaint() &&
|
|
m_activeBrush->type() == kImageBrushType)) {
|
|
m_activeBrush->setPattern(Preferences::instance().brush.pattern());
|
|
return m_activeBrush;
|
|
}
|
|
|
|
return ContextBar::createBrushFromPreferences(
|
|
&Preferences::instance().tool(tool).brush);
|
|
}
|
|
|
|
void ContextBar::discardActiveBrush()
|
|
{
|
|
setActiveBrush(ContextBar::createBrushFromPreferences());
|
|
}
|
|
|
|
// static
|
|
doc::BrushRef ContextBar::createBrushFromPreferences(ToolPreferences::Brush* brushPref)
|
|
{
|
|
if (brushPref == nullptr) {
|
|
tools::Tool* tool = App::instance()->activeTool();
|
|
brushPref = &Preferences::instance().tool(tool).brush;
|
|
}
|
|
|
|
doc::BrushRef brush;
|
|
brush.reset(
|
|
new Brush(
|
|
static_cast<doc::BrushType>(brushPref->type()),
|
|
brushPref->size(),
|
|
brushPref->angle()));
|
|
return brush;
|
|
}
|
|
|
|
BrushSlot ContextBar::createBrushSlotFromPreferences()
|
|
{
|
|
tools::Tool* activeTool = App::instance()->activeTool();
|
|
auto& pref = Preferences::instance();
|
|
auto& saveBrush = pref.saveBrush;
|
|
auto& toolPref = pref.tool(activeTool);
|
|
|
|
int flags = 0;
|
|
if (saveBrush.brushType()) flags |= int(BrushSlot::Flags::BrushType);
|
|
if (saveBrush.brushSize()) flags |= int(BrushSlot::Flags::BrushSize);
|
|
if (saveBrush.brushAngle()) flags |= int(BrushSlot::Flags::BrushAngle);
|
|
if (saveBrush.fgColor()) flags |= int(BrushSlot::Flags::FgColor);
|
|
if (saveBrush.bgColor()) flags |= int(BrushSlot::Flags::BgColor);
|
|
if (saveBrush.imageColor()) flags |= int(BrushSlot::Flags::ImageColor);
|
|
if (saveBrush.inkType()) flags |= int(BrushSlot::Flags::InkType);
|
|
if (saveBrush.inkOpacity()) flags |= int(BrushSlot::Flags::InkOpacity);
|
|
if (saveBrush.shade()) flags |= int(BrushSlot::Flags::Shade);
|
|
if (saveBrush.pixelPerfect()) flags |= int(BrushSlot::Flags::PixelPerfect);
|
|
|
|
return BrushSlot(
|
|
BrushSlot::Flags(flags),
|
|
activeBrush(activeTool),
|
|
pref.colorBar.fgColor(),
|
|
pref.colorBar.bgColor(),
|
|
toolPref.ink(),
|
|
toolPref.opacity(),
|
|
getShade(),
|
|
toolPref.freehandAlgorithm() == tools::FreehandAlgorithm::PIXEL_PERFECT);
|
|
}
|
|
|
|
Shade ContextBar::getShade() const
|
|
{
|
|
return m_inkShades->getShade();
|
|
}
|
|
|
|
doc::Remap* ContextBar::createShadeRemap(bool left)
|
|
{
|
|
return m_inkShades->createShadeRemap(left);
|
|
}
|
|
|
|
void ContextBar::reverseShadeColors()
|
|
{
|
|
m_inkShades->reverseShadeColors();
|
|
}
|
|
|
|
void ContextBar::setInkType(tools::InkType type)
|
|
{
|
|
m_inkType->setInkType(type);
|
|
}
|
|
|
|
render::DitheringMatrix ContextBar::ditheringMatrix()
|
|
{
|
|
return m_ditheringSelector->ditheringMatrix();
|
|
}
|
|
|
|
render::DitheringAlgorithmBase* ContextBar::ditheringAlgorithm()
|
|
{
|
|
static std::unique_ptr<render::DitheringAlgorithmBase> s_dither;
|
|
|
|
switch (m_ditheringSelector->ditheringAlgorithm()) {
|
|
case render::DitheringAlgorithm::None:
|
|
s_dither.reset(nullptr);
|
|
break;
|
|
case render::DitheringAlgorithm::Ordered:
|
|
s_dither.reset(new render::OrderedDither2(-1));
|
|
break;
|
|
case render::DitheringAlgorithm::Old:
|
|
s_dither.reset(new render::OrderedDither(-1));
|
|
break;
|
|
}
|
|
|
|
return s_dither.get();
|
|
}
|
|
|
|
void ContextBar::setupTooltips(TooltipManager* tooltipManager)
|
|
{
|
|
tooltipManager->addTooltipFor(m_brushBack, "Discard Brush (Esc)", BOTTOM);
|
|
tooltipManager->addTooltipFor(m_brushType, "Brush Type", BOTTOM);
|
|
tooltipManager->addTooltipFor(m_brushSize, "Brush Size (in pixels)", BOTTOM);
|
|
tooltipManager->addTooltipFor(m_brushAngle, "Brush Angle (in degrees)", BOTTOM);
|
|
tooltipManager->addTooltipFor(m_inkType, "Ink", BOTTOM);
|
|
tooltipManager->addTooltipFor(m_inkOpacity, "Opacity (paint intensity)", BOTTOM);
|
|
tooltipManager->addTooltipFor(m_inkShades, "Shades", BOTTOM);
|
|
tooltipManager->addTooltipFor(m_sprayWidth, "Spray Width", BOTTOM);
|
|
tooltipManager->addTooltipFor(m_spraySpeed, "Spray Speed", BOTTOM);
|
|
tooltipManager->addTooltipFor(m_pivot, "Rotation Pivot", BOTTOM);
|
|
tooltipManager->addTooltipFor(m_transparentColor, "Transparent Color", BOTTOM);
|
|
tooltipManager->addTooltipFor(m_rotAlgo, "Rotation Algorithm", BOTTOM);
|
|
tooltipManager->addTooltipFor(m_freehandAlgo,
|
|
key_tooltip("Freehand trace algorithm",
|
|
CommandId::PixelPerfectMode()), BOTTOM);
|
|
tooltipManager->addTooltipFor(m_contiguous,
|
|
key_tooltip("Fill contiguous areas color",
|
|
CommandId::ContiguousFill()), BOTTOM);
|
|
tooltipManager->addTooltipFor(m_paintBucketSettings,
|
|
"Extra paint bucket options", BOTTOM);
|
|
|
|
m_brushType->setupTooltips(tooltipManager);
|
|
m_selectionMode->setupTooltips(tooltipManager);
|
|
m_dropPixels->setupTooltips(tooltipManager);
|
|
m_freehandAlgo->setupTooltips(tooltipManager);
|
|
m_symmetry->setupTooltips(tooltipManager);
|
|
}
|
|
|
|
void ContextBar::registerCommands()
|
|
{
|
|
Commands::instance()
|
|
->add(
|
|
new QuickCommand(
|
|
CommandId::ShowBrushes(),
|
|
[this]{ this->showBrushes(); }));
|
|
}
|
|
|
|
void ContextBar::showBrushes()
|
|
{
|
|
m_brushType->showPopup();
|
|
}
|
|
|
|
} // namespace app
|