mirror of https://github.com/GNOME/gimp.git
385 lines
10 KiB
C
385 lines
10 KiB
C
/* LIBGIMP - The GIMP Library
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
* Copyright (C) 1998 Andy Thomas
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "gimp.h"
|
|
#include "gimpui.h"
|
|
|
|
|
|
|
|
|
|
/* Idea is to have a function to call that returns a widget that
|
|
* completely controls the selection of a pattern.
|
|
* you get a widget returned that you can use in a table say.
|
|
* In:- Initial pattern name. Null means use current selection.
|
|
* pointer to func to call when pattern changes (GRubPatternCallback).
|
|
* Returned:- Pointer to a widget that you can use in UI.
|
|
*
|
|
* Widget simply made up of a preview widget (20x20) containing the pattern
|
|
* and a button that can be clicked on to change the pattern.
|
|
*/
|
|
|
|
|
|
#define PSEL_DATA_KEY "__psel_data"
|
|
#define CELL_SIZE 20
|
|
#define PREVIEW_EVENT_MASK GDK_EXPOSURE_MASK | \
|
|
GDK_BUTTON_PRESS_MASK | \
|
|
GDK_BUTTON_RELEASE_MASK | \
|
|
GDK_BUTTON1_MOTION_MASK
|
|
|
|
struct __patterns_sel {
|
|
gchar * dname;
|
|
GRunPatternCallback cback;
|
|
GtkWidget *pattern_preview;
|
|
GtkWidget *device_patpopup;
|
|
GtkWidget *device_patpreview;
|
|
GtkWidget *button;
|
|
GtkWidget *top_hbox;
|
|
gchar *pattern_name; /* Local copy */
|
|
gint width;
|
|
gint height;
|
|
gint bytes;
|
|
gchar *mask_data; /* local copy */
|
|
void *pattern_popup_pnt; /* POinter use to control the popup */
|
|
gpointer udata;
|
|
};
|
|
|
|
typedef struct __patterns_sel PSelect, * PSelectP;
|
|
|
|
static void
|
|
pattern_popup_open (int x,
|
|
int y,
|
|
PSelectP psel)
|
|
{
|
|
gint x_org, y_org;
|
|
gint scr_w, scr_h;
|
|
gchar *src, *buf;
|
|
|
|
/* make sure the popup exists and is not visible */
|
|
if (psel->device_patpopup == NULL)
|
|
{
|
|
GtkWidget *frame;
|
|
|
|
psel->device_patpopup = gtk_window_new (GTK_WINDOW_POPUP);
|
|
gtk_window_set_policy (GTK_WINDOW (psel->device_patpopup), FALSE, FALSE, TRUE);
|
|
|
|
frame = gtk_frame_new (NULL);
|
|
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_OUT);
|
|
gtk_container_add (GTK_CONTAINER (psel->device_patpopup), frame);
|
|
gtk_widget_show (frame);
|
|
psel->device_patpreview = gtk_preview_new (GTK_PREVIEW_COLOR);
|
|
gtk_container_add (GTK_CONTAINER (frame), psel->device_patpreview);
|
|
gtk_widget_show (psel->device_patpreview);
|
|
}
|
|
else
|
|
{
|
|
gtk_widget_hide (psel->device_patpopup);
|
|
}
|
|
|
|
/* decide where to put the popup */
|
|
gdk_window_get_origin (psel->pattern_preview->window, &x_org, &y_org);
|
|
scr_w = gdk_screen_width ();
|
|
scr_h = gdk_screen_height ();
|
|
x = x_org + x - (psel->width >> 1);
|
|
y = y_org + y - (psel->height >> 1);
|
|
x = (x < 0) ? 0 : x;
|
|
y = (y < 0) ? 0 : y;
|
|
x = (x + psel->width > scr_w) ? scr_w - psel->width : x;
|
|
y = (y + psel->height > scr_h) ? scr_h - psel->height : y;
|
|
gtk_preview_size (GTK_PREVIEW (psel->device_patpreview), psel->width, psel->height);
|
|
|
|
gtk_widget_popup (psel->device_patpopup, x, y);
|
|
|
|
/* Draw the pattern */
|
|
buf = g_new (gchar, psel->width * 3);
|
|
src = psel->mask_data;
|
|
for (y = 0; y < psel->height; y++)
|
|
{
|
|
if (psel->bytes == 1)
|
|
for (x = 0; x < psel->width; x++)
|
|
{
|
|
buf[x*3+0] = src[x];
|
|
buf[x*3+1] = src[x];
|
|
buf[x*3+2] = src[x];
|
|
}
|
|
else
|
|
for (x = 0; x < psel->width; x++)
|
|
{
|
|
buf[x*3+0] = src[x*3+0];
|
|
buf[x*3+1] = src[x*3+1];
|
|
buf[x*3+2] = src[x*3+2];
|
|
}
|
|
gtk_preview_draw_row (GTK_PREVIEW (psel->device_patpreview), (guchar *)buf, 0, y, psel->width);
|
|
src += psel->width * psel->bytes;
|
|
}
|
|
g_free(buf);
|
|
|
|
/* Draw the brush preview */
|
|
gtk_widget_draw (psel->device_patpreview, NULL);
|
|
}
|
|
|
|
static void
|
|
pattern_popup_close (PSelectP psel)
|
|
{
|
|
if (psel->device_patpopup != NULL)
|
|
gtk_widget_hide (psel->device_patpopup);
|
|
}
|
|
|
|
static gint
|
|
pattern_preview_events (GtkWidget *widget,
|
|
GdkEvent *event,
|
|
gpointer udata)
|
|
{
|
|
GdkEventButton *bevent;
|
|
PSelectP psel = (PSelectP)udata;
|
|
|
|
if(psel->mask_data)
|
|
{
|
|
switch (event->type)
|
|
{
|
|
case GDK_EXPOSE:
|
|
break;
|
|
|
|
case GDK_BUTTON_PRESS:
|
|
bevent = (GdkEventButton *) event;
|
|
|
|
if (bevent->button == 1)
|
|
{
|
|
pattern_popup_open (bevent->x, bevent->y, psel);
|
|
}
|
|
break;
|
|
|
|
case GDK_BUTTON_RELEASE:
|
|
bevent = (GdkEventButton *) event;
|
|
|
|
if (bevent->button == 1)
|
|
{
|
|
/* Ungrab the pointer */
|
|
gdk_pointer_ungrab (bevent->time);
|
|
|
|
/* Close the device preview popup window */
|
|
pattern_popup_close (psel);
|
|
}
|
|
break;
|
|
case GDK_DELETE:
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
pattern_pre_update(GtkWidget *pattern_preview,
|
|
gint width,
|
|
gint height,
|
|
gint bytes,
|
|
gchar *mask_data)
|
|
{
|
|
gint x,y;
|
|
gchar *src, *buf;
|
|
/* Draw the pattern */
|
|
buf = g_new (gchar, width * 3);
|
|
src = mask_data;
|
|
for (y = 0; y< CELL_SIZE && y < height; y++)
|
|
{
|
|
if (bytes == 1)
|
|
for (x = 0; x < width && x < CELL_SIZE; x++)
|
|
{
|
|
buf[x*3+0] = src[x];
|
|
buf[x*3+1] = src[x];
|
|
buf[x*3+2] = src[x];
|
|
}
|
|
else
|
|
for (x = 0; x < width && x < CELL_SIZE; x++)
|
|
{
|
|
buf[x*3+0] = src[x*3+0];
|
|
buf[x*3+1] = src[x*3+1];
|
|
buf[x*3+2] = src[x*3+2];
|
|
}
|
|
gtk_preview_draw_row (GTK_PREVIEW (pattern_preview), (guchar *)buf, 0, y, (width < CELL_SIZE)?width:CELL_SIZE);
|
|
src += width * bytes;
|
|
}
|
|
g_free(buf);
|
|
|
|
/* Draw the brush preview */
|
|
gtk_widget_draw (pattern_preview, NULL);
|
|
}
|
|
|
|
static void
|
|
pattern_select_invoker(gchar *name,
|
|
gint width,
|
|
gint height,
|
|
gint bytes,
|
|
gchar * mask_data,
|
|
gint closing,
|
|
gpointer udata)
|
|
{
|
|
gint mask_d_sz;
|
|
PSelectP psel = (PSelectP)udata;
|
|
if(psel->mask_data != NULL)
|
|
g_free(psel->mask_data);
|
|
psel->width = width;
|
|
psel->height = height;
|
|
psel->bytes = bytes;
|
|
mask_d_sz = width*height*bytes;
|
|
psel->mask_data = g_malloc(mask_d_sz);
|
|
g_memmove(psel->mask_data,mask_data,mask_d_sz);
|
|
pattern_pre_update(psel->pattern_preview,psel->width,psel->height,psel->bytes,psel->mask_data);
|
|
if(psel->cback != NULL)
|
|
(psel->cback)(name,width,height,bytes,mask_data,closing,psel->udata);
|
|
if(closing)
|
|
{
|
|
gtk_widget_set_sensitive(psel->button,TRUE);
|
|
psel->pattern_popup_pnt = NULL;
|
|
}
|
|
}
|
|
|
|
|
|
static void
|
|
patterns_select_callback (GtkWidget *widget,
|
|
gpointer data)
|
|
{
|
|
PSelectP psel = (PSelectP)data;
|
|
gtk_widget_set_sensitive(psel->button,FALSE);
|
|
psel->pattern_popup_pnt =
|
|
gimp_interactive_selection_pattern((psel->dname)?psel->dname:"Pattern Plugin Selection",
|
|
psel->pattern_name,
|
|
pattern_select_invoker,psel);
|
|
}
|
|
|
|
GtkWidget *
|
|
gimp_pattern_select_widget(gchar *dname,
|
|
gchar *ipattern,
|
|
GRunPatternCallback cback,
|
|
gpointer udata)
|
|
{
|
|
GtkWidget * frame;
|
|
GtkWidget * hbox;
|
|
GtkWidget * pattern;
|
|
GtkWidget * button;
|
|
gint width,height,bytes;
|
|
gchar *mask_data;
|
|
gchar *pattern_name;
|
|
|
|
PSelectP psel = g_new(PSelect, sizeof(PSelect));
|
|
|
|
hbox = gtk_hbox_new (FALSE, 3);
|
|
gtk_widget_show(hbox);
|
|
|
|
frame = gtk_frame_new (NULL);
|
|
gtk_frame_set_shadow_type (GTK_FRAME(frame), GTK_SHADOW_OUT);
|
|
gtk_widget_show(frame);
|
|
|
|
pattern = gtk_preview_new (GTK_PREVIEW_COLOR);
|
|
gtk_preview_size (GTK_PREVIEW (pattern), CELL_SIZE, CELL_SIZE);
|
|
gtk_widget_show(pattern);
|
|
gtk_container_add (GTK_CONTAINER (frame), pattern);
|
|
|
|
gtk_widget_set_events (pattern, PREVIEW_EVENT_MASK);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (pattern), "event",
|
|
(GtkSignalFunc) pattern_preview_events,
|
|
(gpointer)psel);
|
|
|
|
psel->cback = cback;
|
|
psel->udata = udata;
|
|
psel->mask_data = NULL;
|
|
psel->device_patpopup = psel->device_patpreview = NULL;
|
|
psel->pattern_preview = pattern;
|
|
psel->pattern_name = ipattern;
|
|
psel->dname = dname;
|
|
psel->pattern_popup_pnt = NULL;
|
|
|
|
/* Do initial pattern setup */
|
|
pattern_name = gimp_pattern_get_pattern_data(ipattern,&width,&height,&bytes,&mask_data);
|
|
if(pattern_name)
|
|
{
|
|
pattern_pre_update(psel->pattern_preview,width,height,bytes,mask_data);
|
|
psel->mask_data = mask_data;
|
|
psel->pattern_name = pattern_name;
|
|
psel->width = width;
|
|
psel->height = height;
|
|
psel->bytes = bytes;
|
|
}
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), frame, TRUE, TRUE, 0);
|
|
|
|
button = gtk_button_new_with_label ("... ");
|
|
gtk_container_add (GTK_CONTAINER (hbox), button);
|
|
gtk_widget_show(button);
|
|
|
|
psel->button = button;
|
|
gtk_signal_connect (GTK_OBJECT (button), "clicked",
|
|
(GtkSignalFunc) patterns_select_callback,
|
|
(gpointer)psel);
|
|
|
|
gtk_object_set_data(GTK_OBJECT(hbox),PSEL_DATA_KEY,(gpointer)psel);
|
|
|
|
return hbox;
|
|
}
|
|
|
|
|
|
gint
|
|
gimp_pattern_select_widget_close_popup(GtkWidget *w)
|
|
{
|
|
gint ret_val = FALSE;
|
|
|
|
PSelectP psel = (PSelectP)gtk_object_get_data(GTK_OBJECT(w),PSEL_DATA_KEY);
|
|
if(psel && psel->pattern_popup_pnt)
|
|
{
|
|
ret_val = gimp_pattern_close_popup(psel->pattern_popup_pnt);
|
|
psel->pattern_popup_pnt = NULL;
|
|
}
|
|
|
|
return ret_val;
|
|
}
|
|
|
|
gint
|
|
gimp_pattern_select_widget_set_popup(GtkWidget *w,gchar *pname)
|
|
{
|
|
gint ret_val = FALSE;
|
|
gint width,height,bytes;
|
|
gchar *mask_data;
|
|
gchar *pattern_name;
|
|
|
|
PSelectP psel = (PSelectP)gtk_object_get_data(GTK_OBJECT(w),PSEL_DATA_KEY);
|
|
|
|
if(psel)
|
|
{
|
|
pattern_name = gimp_pattern_get_pattern_data(pname,&width,&height,&bytes,&mask_data);
|
|
|
|
pattern_select_invoker(pname,width,height,bytes,mask_data,0,psel);
|
|
|
|
if(psel->pattern_popup_pnt)
|
|
{
|
|
if(gimp_pattern_set_popup(psel->pattern_popup_pnt,pname))
|
|
{
|
|
ret_val = TRUE;
|
|
}
|
|
}
|
|
}
|
|
return ret_val;
|
|
}
|