1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
|
/*
* Copyright (c) 2009-2016, Albertas Vyšniauskas
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* * Neither the name of the software author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "Variations.h"
#include "ColorObject.h"
#include "ColorSource.h"
#include "ColorSourceManager.h"
#include "DragDrop.h"
#include "GlobalState.h"
#include "ToolColorNaming.h"
#include "uiUtilities.h"
#include "ColorList.h"
#include "gtk/ColorWidget.h"
#include "Converter.h"
#include "dynv/Map.h"
#include "I18N.h"
#include "color_names/ColorNames.h"
#include "StandardEventHandler.h"
#include "IMenuExtension.h"
#include "common/Format.h"
#include <gdk/gdkkeysyms.h>
#include <sstream>
const int Rows = 5;
const int VariantWidgets = 8;
enum class Component {
hslHue = 1,
hslSaturation,
hslLightness,
labLightness,
rgbRed,
rgbGreen,
rgbBlue,
};
struct Type {
const char *id;
const char *name;
const char *symbol;
Component component;
float strengthMultiplier;
};
const Type types[] = {
{ "rgb_red", N_("Red"), "R<span font='8' rise='8000'>RGB</span>", Component::rgbRed, 1 },
{ "rgb_green", N_("Green"), "G<span font='8' rise='8000'>RGB</span>", Component::rgbGreen, 1 },
{ "rgb_blue", N_("Blue"), "B<span font='8' rise='8000'>RGB</span>", Component::rgbBlue, 1 },
{ "hsl_hue", N_("Hue"), "H<span font='8' rise='8000'>HSL</span>", Component::hslHue, 1 },
{ "hsl_saturation", N_("Saturation"), "S<span font='8' rise='8000'>HSL</span>", Component::hslSaturation, 1 },
{ "hsl_lightness", N_("Lightness"), "L<span font='8' rise='8000'>HSL</span>", Component::hslLightness, 1 },
{ "lab_lightness", N_("Lightness (Lab)"), "L<span font='8' rise='8000'>Lab</span>", Component::labLightness, 1 },
};
struct VariationsColorNameAssigner: public ToolColorNameAssigner {
VariationsColorNameAssigner(GlobalState *gs):
ToolColorNameAssigner(gs) {
}
void assign(ColorObject *colorObject, const Color *color, const std::string &ident) {
m_ident = ident.c_str();
ToolColorNameAssigner::assign(colorObject, color);
}
virtual std::string getToolSpecificName(ColorObject *colorObject, const Color *color) {
m_stream.str("");
m_stream << color_names_get(m_gs->getColorNames(), color, false) << " " << _("variations") << " " << m_ident;
return m_stream.str();
}
protected:
std::stringstream m_stream;
const char *m_ident;
};
struct VariationsArgs {
ColorSource source;
GtkWidget *main, *statusBar, *strengthRange, *lastFocusedColor, *colorPreviews, *allColors;
struct {
GtkWidget *primary;
GtkWidget *variants[VariantWidgets];
const Type *type;
} rows[Rows];
dynv::Ref options;
GlobalState *gs;
void addToPalette() {
color_list_add_color_object(gs->getColorList(), getColor(), true);
}
void addToPalette(VariationsColorNameAssigner &nameAssigner, Color &color, GtkWidget *widget) {
gtk_color_get_color(GTK_COLOR(widget), &color);
colorObject.setColor(color);
nameAssigner.assign(&colorObject, &color, identifyColorWidget(widget));
color_list_add_color_object(gs->getColorList(), colorObject, true);
}
void addAllToPalette() {
VariationsColorNameAssigner nameAssigner(gs);
Color color;
addToPalette(nameAssigner, color, allColors);
for (int i = 0; i < Rows; ++i) {
for (int j = 0; j < VariantWidgets; ++j) {
if (j == VariantWidgets / 2)
addToPalette(nameAssigner, color, rows[i].primary);
addToPalette(nameAssigner, color, rows[i].variants[j]);
}
}
}
void setColor(const ColorObject &colorObject) {
gtk_color_set_color(GTK_COLOR(lastFocusedColor), colorObject.getColor());
if (lastFocusedColor == allColors) {
for (int i = 0; i < Rows; ++i) {
gtk_color_set_color(GTK_COLOR(rows[i].primary), colorObject.getColor());
}
}
update();
}
ColorObject colorObject;
const ColorObject &getColor() {
Color color;
gtk_color_get_color(GTK_COLOR(lastFocusedColor), &color);
colorObject.setColor(color);
VariationsColorNameAssigner nameAssigner(gs);
nameAssigner.assign(&colorObject, &color, identifyColorWidget(lastFocusedColor));
return colorObject;
}
std::string identifyColorWidget(GtkWidget *widget) {
if (allColors == widget) {
return _("all colors");
} else
for (int i = 0; i < Rows; ++i) {
if (rows[i].primary == widget) {
return common::format(_("primary {}"), i + 1);
}
for (int j = 0; j < VariantWidgets; ++j) {
if (rows[i].variants[j] == widget) {
return common::format(_("result {} line {}"), j + 1, i + 1);
}
}
}
return "unknown";
}
bool isEditable() {
if (lastFocusedColor == allColors)
return true;
for (int i = 0; i < Rows; ++i)
if (lastFocusedColor == rows[i].primary)
return true;
return false;
}
bool isPrimary() {
for (int i = 0; i < Rows; ++i) {
if (rows[i].primary == lastFocusedColor)
return true;
}
return false;
}
static gboolean onFocusEvent(GtkWidget *widget, GdkEventFocus *, VariationsArgs *args) {
args->setActiveWidget(widget);
return false;
}
void setActiveWidget(GtkWidget *widget) {
lastFocusedColor = widget;
}
int getActiveRow() {
for (int i = 0; i < Rows; ++i) {
if (rows[i].primary == lastFocusedColor)
return i;
for (int j = 0; j < VariantWidgets; ++j) {
if (rows[i].variants[j] == lastFocusedColor)
return i;
}
}
return 0;
}
static void onModeChange(GtkWidget *widget, VariationsArgs *args) {
if (!gtk_check_menu_item_get_active(GTK_CHECK_MENU_ITEM(widget)))
return;
auto type = static_cast<const Type *>(g_object_get_data(G_OBJECT(widget), "variation_type"));
args->rows[args->getActiveRow()].type = type;
gtk_color_set_text(GTK_COLOR(args->rows[args->getActiveRow()].primary), type->symbol);
args->update();
}
static void onColorActivate(GtkWidget *, VariationsArgs *args) {
args->addToPalette();
}
static void onChange(GtkWidget *, VariationsArgs *args) {
args->update();
}
void update(bool saveSettings = false) {
float strength = static_cast<float>(gtk_range_get_value(GTK_RANGE(strengthRange)));
if (saveSettings) {
options->set("strength", strength);
}
Color color, rgb, hsl, lab, r, rgbModified, hslModified, labModified;
for (int i = 0; i < Rows; ++i) {
gtk_color_get_color(GTK_COLOR(rows[i].primary), &color);
switch (rows[i].type->component) {
case Component::rgbRed:
case Component::rgbGreen:
case Component::rgbBlue:
color_rgb_get_linear(&color, &rgb);
break;
case Component::hslHue:
case Component::hslSaturation:
case Component::hslLightness:
color_rgb_to_hsl(&color, &hsl);
break;
case Component::labLightness:
color_rgb_to_lab_d50(&color, &lab);
break;
}
for (int j = 0; j < VariantWidgets; ++j) {
float position = rows[i].type->strengthMultiplier * strength * (j / static_cast<float>(VariantWidgets - 1) - 0.5f);
switch (rows[i].type->component) {
case Component::rgbRed:
rgbModified = rgb;
rgbModified.rgb.red = clamp_float(rgbModified.rgb.red + position / 100.0f, 0, 1);
color_linear_get_rgb(&rgbModified, &r);
break;
case Component::rgbGreen:
rgbModified = rgb;
rgbModified.rgb.green = clamp_float(rgbModified.rgb.green + position / 100.0f, 0, 1);
color_linear_get_rgb(&rgbModified, &r);
break;
case Component::rgbBlue:
rgbModified = rgb;
rgbModified.rgb.blue = clamp_float(rgbModified.rgb.blue + position / 100.0f, 0, 1);
color_linear_get_rgb(&rgbModified, &r);
break;
case Component::hslHue:
color_copy(&hsl, &hslModified);
hslModified.hsl.hue = wrap_float(hsl.hsl.hue + position / 100.0f);
color_hsl_to_rgb(&hslModified, &r);
break;
case Component::hslSaturation:
color_copy(&hsl, &hslModified);
hslModified.hsl.saturation = clamp_float(hsl.hsl.saturation + position / 100.0f, 0, 1);
color_hsl_to_rgb(&hslModified, &r);
break;
case Component::hslLightness:
color_copy(&hsl, &hslModified);
hslModified.hsl.lightness = clamp_float(hsl.hsl.lightness + position / 100.0f, 0, 1);
color_hsl_to_rgb(&hslModified, &r);
break;
case Component::labLightness:
color_copy(&lab, &labModified);
labModified.lab.L = clamp_float(lab.lab.L + position, 0, 100);
color_lab_to_rgb_d50(&labModified, &r);
color_rgb_normalize(&r);
break;
}
gtk_color_set_color(GTK_COLOR(rows[i].variants[j]), r);
}
}
}
struct Editable: IEditableColorsUI, IMenuExtension {
Editable(VariationsArgs *args):
args(args) {
}
virtual ~Editable() = default;
virtual void addToPalette(const ColorObject &) override {
args->addToPalette();
}
virtual void addAllToPalette() override {
args->addAllToPalette();
}
virtual void setColor(const ColorObject &colorObject) override {
args->setColor(colorObject.getColor());
}
virtual const ColorObject &getColor() override {
return args->getColor();
}
virtual std::vector<ColorObject> getColors(bool selected) override {
std::vector<ColorObject> colors;
colors.push_back(getColor());
return colors;
}
virtual bool isEditable() override {
return args->isEditable();
}
virtual bool hasColor() override {
return true;
}
virtual bool hasSelectedColor() override {
return true;
}
virtual void extendMenu(GtkWidget *menu, Position position) {
if (position != Position::end || !isEditable() || !args->isPrimary())
return;
gtk_menu_shell_append(GTK_MENU_SHELL(menu), gtk_separator_menu_item_new());
GSList *group = nullptr;
int row = args->getActiveRow();
gtk_menu_shell_append(GTK_MENU_SHELL(menu), gtk_separator_menu_item_new());
for (size_t i = 0; i < sizeof(types) / sizeof(Type); i++) {
auto item = gtk_radio_menu_item_new_with_label(group, _(types[i].name));
group = gtk_radio_menu_item_get_group(GTK_RADIO_MENU_ITEM(item));
if (args->rows[row].type == &types[i])
gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(item), true);
g_object_set_data(G_OBJECT(item), "variation_type", const_cast<Type *>(&types[i]));
g_signal_connect(G_OBJECT(item), "toggled", G_CALLBACK(VariationsArgs::onModeChange), args);
gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
}
}
private:
VariationsArgs *args;
};
boost::optional<Editable> editable;
};
static int destroy(VariationsArgs *args) {
Color color;
char tmp[32];
for (int i = 0; i < Rows; ++i) {
sprintf(tmp, "type%d", i);
args->options->set(tmp, args->rows[i].type->id);
sprintf(tmp, "color%d", i);
gtk_color_get_color(GTK_COLOR(args->rows[i].primary), &color);
args->options->set(tmp, color);
}
gtk_color_get_color(GTK_COLOR(args->allColors), &color);
args->options->set("all_colors", color);
gtk_widget_destroy(args->main);
delete args;
return 0;
}
static int getColor(VariationsArgs *args, ColorObject **color) {
auto colorObject = args->getColor();
*color = colorObject.copy();
return 0;
}
static int setColor(VariationsArgs *args, ColorObject *colorObject) {
args->setColor(*colorObject);
return 0;
}
static int activate(VariationsArgs *args) {
auto chain = args->gs->getTransformationChain();
gtk_color_set_transformation_chain(GTK_COLOR(args->allColors), chain);
for (int i = 0; i < Rows; ++i) {
gtk_color_set_transformation_chain(GTK_COLOR(args->rows[i].primary), chain);
for (int j = 0; j < VariantWidgets; ++j) {
gtk_color_set_transformation_chain(GTK_COLOR(args->rows[i].variants[j]), chain);
}
}
gtk_statusbar_push(GTK_STATUSBAR(args->statusBar), gtk_statusbar_get_context_id(GTK_STATUSBAR(args->statusBar), "empty"), "");
return 0;
}
static int deactivate(VariationsArgs *args) {
args->update(true);
return 0;
}
static ColorObject *getColorObject(struct DragDrop *dd) {
auto *args = static_cast<VariationsArgs *>(dd->userdata);
return args->getColor().copy();
}
static int setColorObjectAt(struct DragDrop *dd, ColorObject *colorObject, int x, int y, bool, bool) {
auto *args = static_cast<VariationsArgs *>(dd->userdata);
args->setActiveWidget(dd->widget);
args->setColor(*colorObject);
return 0;
}
static ColorSource *source_implement(ColorSource *source, GlobalState *gs, const dynv::Ref &options) {
auto *args = new VariationsArgs;
args->editable = VariationsArgs::Editable(args);
args->options = options;
args->statusBar = gs->getStatusBar();
args->gs = gs;
color_source_init(&args->source, source->identificator, source->hr_name);
args->source.destroy = (int (*)(ColorSource *))destroy;
args->source.get_color = (int (*)(ColorSource *, ColorObject **))getColor;
args->source.set_color = (int (*)(ColorSource *, ColorObject *))setColor;
args->source.deactivate = (int (*)(ColorSource *))deactivate;
args->source.activate = (int (*)(ColorSource * source)) activate;
GtkWidget *table, *vbox, *hbox, *widget, *hbox2;
hbox = gtk_hbox_new(false, 0);
vbox = gtk_vbox_new(false, 0);
gtk_box_pack_start(GTK_BOX(hbox), vbox, true, true, 5);
args->colorPreviews = gtk_table_new(Rows, VariantWidgets + 1, false);
gtk_box_pack_start(GTK_BOX(vbox), args->colorPreviews, true, true, 0);
struct DragDrop dd;
dragdrop_init(&dd, gs);
dd.converterType = Converters::Type::display;
dd.userdata = args;
dd.get_color_object = getColorObject;
dd.set_color_object_at = setColorObjectAt;
widget = gtk_color_new();
gtk_color_set_rounded(GTK_COLOR(widget), true);
gtk_color_set_hcenter(GTK_COLOR(widget), true);
gtk_color_set_roundness(GTK_COLOR(widget), 5);
gtk_table_attach(GTK_TABLE(args->colorPreviews), widget, VariantWidgets / 2, VariantWidgets / 2 + 1, 0, 1, GtkAttachOptions(GTK_FILL | GTK_EXPAND), GtkAttachOptions(GTK_FILL), 0, 0);
args->allColors = widget;
g_signal_connect(G_OBJECT(widget), "activated", G_CALLBACK(VariationsArgs::onColorActivate), args);
g_signal_connect(G_OBJECT(widget), "focus-in-event", G_CALLBACK(VariationsArgs::onFocusEvent), args);
StandardEventHandler::forWidget(widget, args->gs, &*args->editable);
//setup drag&drop
gtk_widget_set_size_request(widget, 60, 30);
gtk_drag_dest_set(widget, GtkDestDefaults(GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_HIGHLIGHT), 0, 0, GDK_ACTION_COPY);
gtk_drag_source_set(widget, GDK_BUTTON1_MASK, 0, 0, GDK_ACTION_COPY);
dragdrop_widget_attach(widget, DragDropFlags(DRAGDROP_SOURCE | DRAGDROP_DESTINATION), &dd);
for (int i = 0; i < Rows; ++i) {
args->rows[i].type = &types[i];
args->rows[i].primary = widget = gtk_color_new();
gtk_color_set_rounded(GTK_COLOR(widget), true);
gtk_color_set_hcenter(GTK_COLOR(widget), true);
gtk_color_set_roundness(GTK_COLOR(widget), 5);
gtk_table_attach(GTK_TABLE(args->colorPreviews), widget, VariantWidgets / 2, VariantWidgets / 2 + 1, i + 1, i + 2, GtkAttachOptions(GTK_FILL | GTK_EXPAND), GtkAttachOptions(GTK_FILL | GTK_EXPAND), 0, 0);
g_signal_connect(G_OBJECT(widget), "activated", G_CALLBACK(VariationsArgs::onColorActivate), args);
g_signal_connect(G_OBJECT(widget), "focus-in-event", G_CALLBACK(VariationsArgs::onFocusEvent), args);
StandardEventHandler::forWidget(widget, args->gs, &*args->editable);
gtk_widget_set_size_request(widget, 60, 30);
gtk_drag_dest_set(widget, GtkDestDefaults(GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_HIGHLIGHT), 0, 0, GDK_ACTION_COPY);
gtk_drag_source_set(widget, GDK_BUTTON1_MASK, 0, 0, GDK_ACTION_COPY);
dragdrop_widget_attach(widget, DragDropFlags(DRAGDROP_SOURCE | DRAGDROP_DESTINATION), &dd);
for (int j = 0; j < VariantWidgets; ++j) {
int x = j + (j >= VariantWidgets / 2 ? 1 : 0);
args->rows[i].variants[j] = widget = gtk_color_new();
gtk_color_set_rounded(GTK_COLOR(widget), true);
gtk_color_set_hcenter(GTK_COLOR(widget), true);
gtk_color_set_roundness(GTK_COLOR(widget), 5);
gtk_table_attach(GTK_TABLE(args->colorPreviews), widget, x, x + 1, i + 1, i + 2, GtkAttachOptions(GTK_FILL | GTK_EXPAND), GtkAttachOptions(GTK_FILL | GTK_EXPAND), 0, 0);
g_signal_connect(G_OBJECT(widget), "activated", G_CALLBACK(VariationsArgs::onColorActivate), args);
g_signal_connect(G_OBJECT(widget), "focus-in-event", G_CALLBACK(VariationsArgs::onFocusEvent), args);
StandardEventHandler::forWidget(widget, args->gs, &*args->editable);
gtk_widget_set_size_request(widget, 30, 30);
gtk_drag_source_set(widget, GDK_BUTTON1_MASK, 0, 0, GDK_ACTION_COPY);
dragdrop_widget_attach(widget, DragDropFlags(DRAGDROP_SOURCE), &dd);
}
}
char tmp[32];
for (int i = 0; i < Rows; ++i) {
sprintf(tmp, "type%d", i);
auto typeName = options->getString(tmp, "lab_lightness");
for (uint32_t j = 0; j < sizeof(types) / sizeof(Type); j++) {
if (types[j].id == typeName) {
args->rows[i].type = &types[j];
break;
}
}
sprintf(tmp, "color%d", i);
gtk_color_set_color(GTK_COLOR(args->rows[i].primary), options->getColor(tmp, Color(0.5f)), args->rows[i].type->symbol);
}
gtk_color_set_color(GTK_COLOR(args->allColors), options->getColor("all_colors", Color(0.5f)));
hbox2 = gtk_hbox_new(false, 0);
gtk_box_pack_start(GTK_BOX(vbox), hbox2, false, false, 0);
gint table_y;
table = gtk_table_new(5, 2, false);
gtk_box_pack_start(GTK_BOX(hbox2), table, true, true, 0);
table_y = 0;
gtk_table_attach(GTK_TABLE(table), gtk_label_aligned_new(_("Strength:"), 0, 0.5, 0, 0), 0, 1, table_y, table_y + 1, GtkAttachOptions(GTK_FILL), GTK_FILL, 0, 0);
args->strengthRange = widget = gtk_hscale_new_with_range(1, 100, 1);
gtk_range_set_value(GTK_RANGE(widget), options->getFloat("strength", 30));
g_signal_connect(G_OBJECT(widget), "value-changed", G_CALLBACK(VariationsArgs::onChange), args);
gtk_table_attach(GTK_TABLE(table), widget, 1, 2, table_y, table_y + 1, GtkAttachOptions(GTK_FILL | GTK_EXPAND), GTK_FILL, 0, 0);
table_y++;
gtk_widget_show_all(hbox);
args->update();
args->main = hbox;
args->source.widget = hbox;
return (ColorSource *)args;
}
int variations_source_register(ColorSourceManager *csm) {
ColorSource *color_source = new ColorSource;
color_source_init(color_source, "variations", _("Variations"));
color_source->implement = source_implement;
color_source->default_accelerator = GDK_KEY_v;
color_source_manager_add_source(csm, color_source);
return 0;
}
|