aseprite/src/widgets/target.cpp

221 lines
5.7 KiB
C++
Raw Normal View History

2007-11-16 18:25:45 +00:00
/* ASE - Allegro Sprite Editor
2008-02-10 12:35:13 +00:00
* Copyright (C) 2001-2008 David A. Capello
2007-09-18 23:57:02 +00: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
*/
#include "config.h"
#include <allegro.h>
#include <string.h>
#include "jinete/jbox.h"
#include "jinete/jbutton.h"
#include "jinete/jhook.h"
#include "jinete/jwidget.h"
2007-09-18 23:57:02 +00:00
#include "core/cfg.h"
#include "effect/effect.h"
2007-09-18 23:57:02 +00:00
#include "modules/gfx.h"
#include "modules/gui.h"
#include "raster/image.h"
#include "widgets/target.h"
static bool channel_change_hook(JWidget widget, void *data);
static bool images_change_hook(JWidget widget, void *data);
static int get_target_image_gfx(int target);
2007-09-18 23:57:02 +00:00
/**
* Creates a new button to handle "targets" to apply some effect in
* the sprite
*
* user_data[0] = target flags (TARGET_RED_CHANNEL, etc.)
*/
2007-09-18 23:57:02 +00:00
JWidget target_button_new(int imgtype, bool with_channels)
{
#define ADD(box, widget, hook) \
if (widget) { \
jwidget_set_border(widget, 2, 2, 2, 2); \
jwidget_add_child(box, widget); \
HOOK(widget, \
widget->type == JI_BUTTON ? \
JI_SIGNAL_BUTTON_SELECT: JI_SIGNAL_CHECK_CHANGE, hook, vbox); \
2007-09-18 23:57:02 +00:00
}
int default_targets = 0;
2007-09-18 23:57:02 +00:00
JWidget vbox, hbox;
JWidget r=NULL, g=NULL, b=NULL, k=NULL, a=NULL, index=NULL, images=NULL;
vbox = jbox_new(JI_VERTICAL);
hbox = jbox_new(JI_HORIZONTAL | JI_HOMOGENEOUS);
2007-09-18 23:57:02 +00:00
jwidget_noborders(vbox);
jwidget_noborders(hbox);
2007-09-18 23:57:02 +00:00
if (with_channels) {
switch (imgtype) {
case IMAGE_RGB:
case IMAGE_INDEXED:
r = check_button_new("R", 2, 0, 0, 0);
g = check_button_new("G", 0, 0, 0, 0);
b = check_button_new("B", 0, (imgtype == IMAGE_RGB) ? 0: 2, 0, 0);
jwidget_set_name(r, "r");
jwidget_set_name(g, "g");
jwidget_set_name(b, "b");
if (imgtype == IMAGE_RGB) {
2007-09-18 23:57:02 +00:00
a = check_button_new("A", 0, 2, 0, 0);
jwidget_set_name(a, "a");
}
else {
2007-09-18 23:57:02 +00:00
index = check_button_new("Index", 0, 0, 0, 0);
jwidget_set_name(index, "i");
}
2007-09-18 23:57:02 +00:00
break;
case IMAGE_GRAYSCALE:
k = check_button_new("K", 2, 0, 0, 0);
a = check_button_new("A", 0, 2, 0, 0);
jwidget_set_name(k, "k");
jwidget_set_name(a, "a");
2007-09-18 23:57:02 +00:00
break;
}
}
/* create the button to select "image" target */
images = jbutton_new(NULL);
jbutton_set_bevel(images,
with_channels ? 0: 2,
with_channels ? 0: 2, 2, 2);
add_gfxicon_to_button(images, get_target_image_gfx(default_targets),
JI_CENTER | JI_MIDDLE);
2007-09-18 23:57:02 +00:00
/* make hierarchy */
ADD(hbox, r, channel_change_hook);
ADD(hbox, g, channel_change_hook);
ADD(hbox, b, channel_change_hook);
ADD(hbox, k, channel_change_hook);
ADD(hbox, a, channel_change_hook);
2007-09-18 23:57:02 +00:00
if (with_channels)
jwidget_add_child(vbox, hbox);
2007-09-18 23:57:02 +00:00
else
jwidget_free(hbox);
ADD(vbox, index, channel_change_hook);
ADD(vbox, images, images_change_hook);
2007-09-18 23:57:02 +00:00
vbox->user_data[0] = (void *)default_targets;
2007-09-18 23:57:02 +00:00
return vbox;
}
int target_button_get_target(JWidget widget)
{
return (int)widget->user_data[0];
}
void target_button_set_target(JWidget widget, int target)
{
JWidget w;
#define ACTIVATE_TARGET(name, TARGET) \
w = jwidget_find_name(widget, name); \
if (w != NULL) { \
if ((target & TARGET) == TARGET) \
jwidget_select(w); \
else \
jwidget_deselect(w); \
}
ACTIVATE_TARGET("r", TARGET_RED_CHANNEL);
ACTIVATE_TARGET("g", TARGET_GREEN_CHANNEL);
ACTIVATE_TARGET("b", TARGET_BLUE_CHANNEL);
ACTIVATE_TARGET("a", TARGET_ALPHA_CHANNEL);
ACTIVATE_TARGET("k", TARGET_GRAY_CHANNEL);
ACTIVATE_TARGET("i", TARGET_INDEX_CHANNEL);
widget->user_data[0] = (void *)target;
}
static bool channel_change_hook(JWidget widget, void *data)
2007-09-18 23:57:02 +00:00
{
JWidget target_button = (JWidget)data;
int target = (int)target_button->user_data[0];
int flag = 0;
switch (*widget->name) {
case 'r': flag = TARGET_RED_CHANNEL; break;
case 'g': flag = TARGET_GREEN_CHANNEL; break;
case 'b': flag = TARGET_BLUE_CHANNEL; break;
case 'k': flag = TARGET_GRAY_CHANNEL; break;
case 'a': flag = TARGET_ALPHA_CHANNEL; break;
case 'i': flag = TARGET_INDEX_CHANNEL; break;
2007-09-18 23:57:02 +00:00
default:
return TRUE;
}
if (jwidget_is_selected(widget))
target |= flag;
else
target &= ~flag;
2007-09-18 23:57:02 +00:00
target_button->user_data[0] = (void *)target;
jwidget_emit_signal(target_button, SIGNAL_TARGET_BUTTON_CHANGE);
2007-09-18 23:57:02 +00:00
return TRUE;
}
static bool images_change_hook(JWidget widget, void *data)
2007-09-18 23:57:02 +00:00
{
JWidget target_button = (JWidget)data;
int target = (int)target_button->user_data[0];
/* rotate target */
if (target & TARGET_ALL_FRAMES) {
target &= ~TARGET_ALL_FRAMES;
2007-09-18 23:57:02 +00:00
if (target & TARGET_ALL_LAYERS)
target &= ~TARGET_ALL_LAYERS;
else
target |= TARGET_ALL_LAYERS;
}
else {
target |= TARGET_ALL_FRAMES;
}
set_gfxicon_in_button(widget, get_target_image_gfx(target));
target_button->user_data[0] = (void *)target;
jwidget_emit_signal(target_button, SIGNAL_TARGET_BUTTON_CHANGE);
2007-09-18 23:57:02 +00:00
return TRUE;
}
static int get_target_image_gfx(int target)
2007-09-18 23:57:02 +00:00
{
if (target & TARGET_ALL_FRAMES) {
return target & TARGET_ALL_LAYERS ?
GFX_TARGET_FRAMES_LAYERS:
GFX_TARGET_FRAMES;
}
else {
return target & TARGET_ALL_LAYERS ?
GFX_TARGET_LAYERS:
GFX_TARGET_ONE;
2007-09-18 23:57:02 +00:00
}
}