1999-03-06 07:50:24 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1999 Andy Thomas alt@picnic.demon.co.uk
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* Some of this code is based on the layers_dialog box code.
|
|
|
|
*/
|
Check for mmap.
* configure.in: Check for mmap.
* app/makefile.msc: Depend on gimpi.lib.
* app/app_procs.c (app_init): Fix gccism: Allocate filenames (an
array with non-constant size) dynamically.
* app/{datafiles,fileops,general,install,module_db,temp_buf}.c:
Include glib.h before standard headers, because of certain obscure
details related to compiling with gcc on Win32.
(If you really want to know: glib.h defines he names of POSIXish
(but non-ANSI) functions as prefixed with underscore, because
that's how they are named in the msvcrt runtime C library we want
to use. However, defining stat as _stat causes some problems if
done after including the mingw32 <sys/stat.h>. So, it's easiest to
include <glib.h> early.)
* app/main.c: Use _stdcall and __argc, __argv with MSC, but
__attribute__((stdcall)) and _argc, _argv with gcc. Don't print
the "Passed serialization test" message on Win32. (It would open
up an otherwise unnecessary console window.)
* app/paint_funcs.c (gaussian_blur_region): Don't use variable sum
until initialized.
* app/{bezier_select,paths_dialog}.c: Include config.h and define
rint() if necessary.
* app/plug_in.c: Use _spawnv, not spawnv, on Win32 and OS/2.
1999-05-29 01:47:17 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1999-03-13 06:04:30 +08:00
|
|
|
#include <errno.h>
|
1999-08-05 07:22:29 +08:00
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
#include "gdk/gdkkeysyms.h"
|
app/appenv.h New file. Includes <math.h>. Move G_PI, RINT(), ROUND() etc
1999-09-01 Tor Lillqvist <tml@iki.fi>
* app/appenv.h
* libgimp/gimpmath.h: New file. Includes <math.h>. Move G_PI,
RINT(), ROUND() etc from app/appenv.h here, so plug-ins can
use them, too. Remove some commented-out old stuff in appenv.h.
* libgimp/gimp.h: Include gimpmath.h.
* libgimp/gimp.c (gimp_main): Win32: Don't install signal
handlers, we can't do anything useful in the handler ourselves
anyway (it would be nice to print out a backtrace, but that seems
pretty hard to do, even if not impossible). Let Windows inform the
user about the crash. If the plug-in was compiled with MSVC, and
the user also has it, she is offered a chance to start the
debugger automatically anyway.
* app/*several*.c: Include gimpmath.h for G_PI etc. Don't include
<math.h>, as gimpmath.h includes it.
* plug-ins/*/*many*.c: Include config.h. Don't include <math.h>.
Remove all the duplicated definitions of G_PI and rint(). Use
RINT() instead of rint().
* app/app_procs.[ch]: app_exit() takes a gboolean.
* app/batch.c
* app/commands.c
* app/interface.c: Call app_exit() with FALSE or TRUE.
* app/main.c (on_error): Call gimp_fatal_error. (main): Don't
install any signal handler on Win32 here, either.
* app/errors.c (gimp_fatal_error, gimp_terminate): Win32: Format
the message and call MessageBox with it. g_on_error_query doesn't
do anything useful on Win32, and printf'ing a message to stdout or
stderr doesn't do anything, either, in a windowing application.
1999-09-02 04:30:56 +08:00
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
#include "appenv.h"
|
|
|
|
#include "draw_core.h"
|
|
|
|
#include "actionarea.h"
|
|
|
|
#include "colormaps.h"
|
|
|
|
#include "drawable.h"
|
|
|
|
#include "errors.h"
|
|
|
|
#include "floating_sel.h"
|
|
|
|
#include "gimage.h"
|
1999-07-10 05:52:00 +08:00
|
|
|
#include "gimpimage.h"
|
|
|
|
#include "gimpdrawable.h"
|
1999-03-06 07:50:24 +08:00
|
|
|
#include "gimage_mask.h"
|
1999-07-10 05:52:00 +08:00
|
|
|
#include "gdisplay.h"
|
1999-03-06 07:50:24 +08:00
|
|
|
#include "gimprc.h"
|
|
|
|
#include "gimpset.h"
|
|
|
|
#include "general.h"
|
|
|
|
#include "image_render.h"
|
|
|
|
#include "interface.h"
|
1999-06-07 01:26:51 +08:00
|
|
|
#include "lc_dialogP.h"
|
|
|
|
#include "menus.h"
|
1999-03-06 07:50:24 +08:00
|
|
|
#include "ops_buttons.h"
|
|
|
|
#include "bezier_select.h"
|
|
|
|
#include "bezier_selectP.h"
|
|
|
|
#include "pathsP.h"
|
|
|
|
#include "paths_dialog.h"
|
1999-06-07 01:26:51 +08:00
|
|
|
#include "paths_dialogP.h"
|
1999-03-06 07:50:24 +08:00
|
|
|
#include "resize.h"
|
|
|
|
#include "session.h"
|
|
|
|
#include "undo.h"
|
|
|
|
|
1999-07-10 05:52:00 +08:00
|
|
|
#include "drawable_pvt.h"
|
1999-08-05 07:22:29 +08:00
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
#include "libgimp/gimpintl.h"
|
app/appenv.h New file. Includes <math.h>. Move G_PI, RINT(), ROUND() etc
1999-09-01 Tor Lillqvist <tml@iki.fi>
* app/appenv.h
* libgimp/gimpmath.h: New file. Includes <math.h>. Move G_PI,
RINT(), ROUND() etc from app/appenv.h here, so plug-ins can
use them, too. Remove some commented-out old stuff in appenv.h.
* libgimp/gimp.h: Include gimpmath.h.
* libgimp/gimp.c (gimp_main): Win32: Don't install signal
handlers, we can't do anything useful in the handler ourselves
anyway (it would be nice to print out a backtrace, but that seems
pretty hard to do, even if not impossible). Let Windows inform the
user about the crash. If the plug-in was compiled with MSVC, and
the user also has it, she is offered a chance to start the
debugger automatically anyway.
* app/*several*.c: Include gimpmath.h for G_PI etc. Don't include
<math.h>, as gimpmath.h includes it.
* plug-ins/*/*many*.c: Include config.h. Don't include <math.h>.
Remove all the duplicated definitions of G_PI and rint(). Use
RINT() instead of rint().
* app/app_procs.[ch]: app_exit() takes a gboolean.
* app/batch.c
* app/commands.c
* app/interface.c: Call app_exit() with FALSE or TRUE.
* app/main.c (on_error): Call gimp_fatal_error. (main): Don't
install any signal handler on Win32 here, either.
* app/errors.c (gimp_fatal_error, gimp_terminate): Win32: Format
the message and call MessageBox with it. g_on_error_query doesn't
do anything useful on Win32, and printf'ing a message to stdout or
stderr doesn't do anything, either, in a windowing application.
1999-09-02 04:30:56 +08:00
|
|
|
#include "libgimp/gimpmath.h"
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-03-13 06:43:12 +08:00
|
|
|
#include "pixmaps/new.xpm"
|
|
|
|
#include "pixmaps/duplicate.xpm"
|
|
|
|
#include "pixmaps/delete.xpm"
|
|
|
|
#include "pixmaps/pennorm.xpm"
|
|
|
|
#include "pixmaps/penadd.xpm"
|
|
|
|
#include "pixmaps/pendel.xpm"
|
|
|
|
#include "pixmaps/penedit.xpm"
|
|
|
|
#include "pixmaps/penstroke.xpm"
|
1999-03-14 02:55:04 +08:00
|
|
|
#include "pixmaps/toselection.xpm"
|
1999-07-10 05:52:00 +08:00
|
|
|
#include "pixmaps/topath.xpm"
|
1999-03-13 06:43:12 +08:00
|
|
|
#include "pixmaps/path.xbm"
|
1999-07-08 03:09:52 +08:00
|
|
|
#include "pixmaps/locked.xbm"
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
#define PREVIEW_EVENT_MASK GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK | \
|
|
|
|
GDK_ENTER_NOTIFY_MASK
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
#define PATHS_LIST_WIDTH 200
|
1999-03-06 07:50:24 +08:00
|
|
|
#define PATHS_LIST_HEIGHT 150
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GtkWidget *paths_list;
|
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *ops_menu;
|
|
|
|
GtkAccelGroup *accel_group;
|
|
|
|
|
|
|
|
double ratio;
|
|
|
|
int image_width, image_height;
|
|
|
|
int gimage_width, gimage_height;
|
|
|
|
|
1999-03-13 06:04:30 +08:00
|
|
|
/* pixmaps for the no preview bitmap */
|
|
|
|
GdkPixmap * pixmap_normal;
|
|
|
|
GdkPixmap * pixmap_selected;
|
1999-07-08 03:09:52 +08:00
|
|
|
GdkPixmap * pixmap_locked_normal;
|
|
|
|
GdkPixmap * pixmap_locked_selected;
|
1999-03-13 06:04:30 +08:00
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
/* state information */
|
|
|
|
gint selsigid;
|
|
|
|
GimpImage * gimage;
|
|
|
|
GdkGC * gc;
|
|
|
|
GdkColor black;
|
|
|
|
GdkColor white;
|
|
|
|
gint selected_row_num;
|
|
|
|
gboolean been_selected;
|
|
|
|
PATHIMAGELISTP current_path_list;
|
|
|
|
} PATHSLIST, *PATHSLISTP;
|
|
|
|
|
|
|
|
static PATHSLISTP paths_dialog = NULL;
|
1999-05-14 06:53:40 +08:00
|
|
|
static PATHP copy_pp = NULL;
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
typedef struct {
|
1999-04-14 05:50:28 +08:00
|
|
|
GdkPixmap *paths_pixmap;
|
|
|
|
GString *text;
|
|
|
|
PATHP bzp;
|
1999-03-06 07:50:24 +08:00
|
|
|
} PATHWIDGET, *PATHWIDGETP;
|
|
|
|
|
1999-04-14 05:50:28 +08:00
|
|
|
typedef struct {
|
|
|
|
Tattoo tattoo;
|
|
|
|
PATHP copy_path;
|
|
|
|
} PATHUNDO;
|
|
|
|
|
1999-05-14 06:53:40 +08:00
|
|
|
typedef struct {
|
|
|
|
CountCurves c_count; /* Must be the first element */
|
|
|
|
gint total_count; /* Total number of curves */
|
|
|
|
} PATHCOUNTS, *PATHCOUNTSP;
|
|
|
|
|
1999-04-14 05:50:28 +08:00
|
|
|
static gchar * unique_name(GimpImage *,gchar *);
|
1999-04-06 07:33:50 +08:00
|
|
|
|
1999-07-08 03:09:52 +08:00
|
|
|
/* static gint path_widget_preview_events (GtkWidget *, GdkEvent *); */
|
|
|
|
static void paths_dialog_realized (GtkWidget *widget);
|
|
|
|
static void paths_select_row (GtkWidget *widget, gint row, gint column,
|
|
|
|
GdkEventButton *event, gpointer data);
|
|
|
|
static void paths_unselect_row (GtkWidget *widget, gint row, gint column,
|
|
|
|
GdkEventButton *event, gpointer data);
|
|
|
|
static gint paths_list_events (GtkWidget *widget,GdkEvent *event);
|
|
|
|
static void paths_dialog_map_callback (GtkWidget *w,gpointer client_data);
|
|
|
|
static void paths_dialog_unmap_callback (GtkWidget *w,gpointer client_data);
|
|
|
|
static void paths_dialog_destroy_cb (GimpImage *image);
|
|
|
|
static void paths_update_paths (gpointer data,gint row);
|
|
|
|
static GSList * pathpoints_copy (GSList *list);
|
|
|
|
static void pathpoints_free (GSList *list);
|
|
|
|
static void paths_update_preview (BezierSelect *bezier_sel);
|
1999-03-06 07:50:24 +08:00
|
|
|
static void paths_dialog_preview_extents (void);
|
1999-07-08 03:09:52 +08:00
|
|
|
static void paths_dialog_new_point_callback (GtkWidget *, gpointer);
|
|
|
|
static void paths_dialog_add_point_callback (GtkWidget *, gpointer);
|
1999-03-06 07:50:24 +08:00
|
|
|
static void paths_dialog_delete_point_callback (GtkWidget *, gpointer);
|
1999-07-08 03:09:52 +08:00
|
|
|
static void paths_dialog_edit_point_callback (GtkWidget *, gpointer);
|
1999-07-10 05:52:00 +08:00
|
|
|
static void paths_dialog_sel_to_path_callback (GtkWidget *, gpointer);
|
|
|
|
static void paths_dialog_advanced_to_path_callback (GtkWidget *, gpointer);
|
|
|
|
static void paths_dialog_null_callback (GtkWidget *, gpointer);
|
|
|
|
|
1999-05-14 06:53:40 +08:00
|
|
|
static void path_close(PATHP);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
#define NEW_PATH_BUTTON 1
|
|
|
|
#define DUP_PATH_BUTTON 2
|
|
|
|
#define DEL_PATH_BUTTON 3
|
|
|
|
#define PATH_TO_SEL_BUTTON 4
|
|
|
|
#define STROKE_PATH_BUTTON 5
|
|
|
|
#define COPY_PATH_BUTTON 8
|
|
|
|
#define PASTE_PATH_BUTTON 9
|
1999-05-14 06:53:40 +08:00
|
|
|
|
1999-07-10 05:52:00 +08:00
|
|
|
/* the ops buttons */
|
|
|
|
static OpsButtonCallback to_path_ext_callbacks[] =
|
|
|
|
{
|
|
|
|
paths_dialog_advanced_to_path_callback, /* SHIFT */
|
|
|
|
paths_dialog_null_callback, /* CTRL */
|
|
|
|
paths_dialog_null_callback, /* MOD1 */
|
|
|
|
paths_dialog_null_callback, /* SHIFT + CTRL */
|
|
|
|
};
|
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
static OpsButton paths_ops_buttons[] =
|
|
|
|
{
|
1999-03-15 08:49:49 +08:00
|
|
|
{ new_xpm, paths_dialog_new_path_callback, NULL, N_("New Path"), NULL, 0 },
|
|
|
|
{ duplicate_xpm, paths_dialog_dup_path_callback, NULL, N_("Duplicate Path"), NULL, 0 },
|
|
|
|
{ toselection_xpm, paths_dialog_path_to_sel_callback, NULL, N_("Path to Selection"), NULL, 0 },
|
1999-07-10 05:52:00 +08:00
|
|
|
{ topath_xpm, paths_dialog_sel_to_path_callback, to_path_ext_callbacks, N_("Selection to Path"), NULL, 0 },
|
1999-03-15 08:49:49 +08:00
|
|
|
{ penstroke_xpm, paths_dialog_stroke_path_callback, NULL, N_("Stroke Path"), NULL, 0 },
|
1999-06-21 13:46:32 +08:00
|
|
|
{ delete_xpm, paths_dialog_delete_path_callback, NULL, N_("Delete Path"), NULL, 0 },
|
1999-03-15 08:49:49 +08:00
|
|
|
{ NULL, NULL, NULL, NULL, NULL, 0 }
|
1999-03-06 07:50:24 +08:00
|
|
|
};
|
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
#define POINT_NEW_BUTTON 1
|
|
|
|
#define POINT_ADD_BUTTON 2
|
|
|
|
#define POINT_DEL_BUTTON 3
|
1999-03-06 07:50:24 +08:00
|
|
|
#define POINT_EDIT_BUTTON 4
|
|
|
|
|
|
|
|
static OpsButton point_ops_buttons[] =
|
|
|
|
{
|
1999-03-15 08:49:49 +08:00
|
|
|
{ pennorm_xpm, paths_dialog_new_point_callback, NULL, N_("New Point"), NULL, 0 },
|
|
|
|
{ penadd_xpm, paths_dialog_add_point_callback, NULL, N_("Add Point"), NULL, 0 },
|
|
|
|
{ pendel_xpm, paths_dialog_delete_point_callback, NULL, N_("Delete Point"), NULL, 0 },
|
|
|
|
{ penedit_xpm, paths_dialog_edit_point_callback, NULL, N_("Edit Point"), NULL, 0 },
|
|
|
|
{ NULL, NULL, NULL, NULL, NULL, 0 }
|
1999-03-06 07:50:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
1999-06-07 01:26:51 +08:00
|
|
|
paths_ops_button_set_sensitive (gint but,
|
|
|
|
gboolean sensitive)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
|
|
|
switch(but)
|
|
|
|
{
|
|
|
|
case NEW_PATH_BUTTON:
|
1999-09-23 19:49:16 +08:00
|
|
|
menus_set_sensitive_glue ("<Paths>", N_("/New Path"), sensitive);
|
1999-03-06 07:50:24 +08:00
|
|
|
gtk_widget_set_sensitive(paths_ops_buttons[0].widget,sensitive);
|
|
|
|
break;
|
|
|
|
case DUP_PATH_BUTTON:
|
1999-09-23 19:49:16 +08:00
|
|
|
menus_set_sensitive_glue ("<Paths>", N_("/Duplicate Path"), sensitive);
|
1999-03-06 07:50:24 +08:00
|
|
|
gtk_widget_set_sensitive(paths_ops_buttons[1].widget,sensitive);
|
|
|
|
break;
|
1999-06-07 01:26:51 +08:00
|
|
|
case PATH_TO_SEL_BUTTON:
|
1999-09-23 19:49:16 +08:00
|
|
|
menus_set_sensitive_glue ("<Paths>", N_("/Path to Selection"), sensitive);
|
1999-06-21 13:46:32 +08:00
|
|
|
gtk_widget_set_sensitive(paths_ops_buttons[2].widget,sensitive);
|
1999-03-06 07:50:24 +08:00
|
|
|
break;
|
1999-06-07 01:26:51 +08:00
|
|
|
case STROKE_PATH_BUTTON:
|
1999-09-23 19:49:16 +08:00
|
|
|
menus_set_sensitive_glue ("<Paths>", N_("/Stroke Path"), sensitive);
|
1999-07-10 05:52:00 +08:00
|
|
|
gtk_widget_set_sensitive(paths_ops_buttons[4].widget,sensitive);
|
1999-06-21 13:46:32 +08:00
|
|
|
break;
|
|
|
|
case DEL_PATH_BUTTON:
|
1999-09-23 19:49:16 +08:00
|
|
|
menus_set_sensitive_glue ("<Paths>", N_("/Delete Path"), sensitive);
|
1999-07-10 05:52:00 +08:00
|
|
|
gtk_widget_set_sensitive(paths_ops_buttons[5].widget,sensitive);
|
1999-03-06 07:50:24 +08:00
|
|
|
break;
|
1999-05-14 06:53:40 +08:00
|
|
|
case COPY_PATH_BUTTON:
|
1999-09-23 19:49:16 +08:00
|
|
|
menus_set_sensitive_glue ("<Paths>", N_("/Copy Path"), sensitive);
|
1999-05-14 06:53:40 +08:00
|
|
|
break;
|
|
|
|
case PASTE_PATH_BUTTON:
|
1999-09-23 19:49:16 +08:00
|
|
|
menus_set_sensitive_glue ("<Paths>", N_("/Paste Path"), sensitive);
|
1999-05-14 06:53:40 +08:00
|
|
|
break;
|
1999-03-06 07:50:24 +08:00
|
|
|
default:
|
1999-09-23 19:49:16 +08:00
|
|
|
g_warning("paths_ops_button_set_sensitive:: invalid button specified");
|
1999-03-06 07:50:24 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
point_ops_button_set_sensitive(gint but,gboolean sensitive)
|
|
|
|
{
|
|
|
|
switch(but)
|
|
|
|
{
|
|
|
|
case POINT_NEW_BUTTON:
|
|
|
|
gtk_widget_set_sensitive(point_ops_buttons[0].widget,sensitive);
|
|
|
|
break;
|
|
|
|
case POINT_ADD_BUTTON:
|
|
|
|
gtk_widget_set_sensitive(point_ops_buttons[1].widget,sensitive);
|
|
|
|
break;
|
|
|
|
case POINT_DEL_BUTTON:
|
|
|
|
gtk_widget_set_sensitive(point_ops_buttons[2].widget,sensitive);
|
|
|
|
break;
|
|
|
|
case POINT_EDIT_BUTTON:
|
|
|
|
gtk_widget_set_sensitive(point_ops_buttons[3].widget,sensitive);
|
|
|
|
break;
|
|
|
|
default:
|
1999-09-23 19:49:16 +08:00
|
|
|
g_warning("point_ops_button_set_sensitive:: invalid button specified");
|
1999-03-06 07:50:24 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
paths_list_destroy (GtkWidget *w)
|
|
|
|
{
|
|
|
|
paths_dialog = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget * paths_dialog_create()
|
|
|
|
{
|
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *paths_list;
|
|
|
|
GtkWidget *scrolled_win;
|
|
|
|
GtkWidget *button_box;
|
|
|
|
|
|
|
|
if(!paths_dialog)
|
|
|
|
{
|
|
|
|
paths_dialog = g_new0(PATHSLIST,1);
|
|
|
|
|
|
|
|
/* The paths box */
|
|
|
|
paths_dialog->vbox = vbox = gtk_vbox_new (FALSE, 1);
|
|
|
|
|
|
|
|
/* The point operations */
|
1999-06-07 01:26:51 +08:00
|
|
|
button_box = ops_button_box_new (lc_dialog->shell, tool_tips,
|
|
|
|
point_ops_buttons, OPS_BUTTON_RADIO);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
gtk_container_set_border_width(GTK_CONTAINER(button_box),7);
|
|
|
|
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), button_box, FALSE, TRUE, 2);
|
|
|
|
gtk_widget_show (button_box);
|
|
|
|
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (vbox), 2);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
scrolled_win = gtk_scrolled_window_new (NULL, NULL);
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox), scrolled_win, TRUE, TRUE, 0);
|
|
|
|
|
|
|
|
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_win),
|
|
|
|
GTK_POLICY_AUTOMATIC,
|
|
|
|
GTK_POLICY_ALWAYS);
|
|
|
|
|
1999-04-14 05:50:28 +08:00
|
|
|
paths_dialog->paths_list = paths_list = gtk_clist_new (2);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
gtk_signal_connect (GTK_OBJECT (vbox), "destroy",
|
|
|
|
(GtkSignalFunc) paths_list_destroy, NULL);
|
|
|
|
|
1999-04-14 05:50:28 +08:00
|
|
|
/* gtk_clist_set_column_title(GTK_CLIST(paths_list), 0, _("Locked")); */
|
|
|
|
/* gtk_clist_set_column_title(GTK_CLIST(paths_list), 1, _("Path")); */
|
|
|
|
/* gtk_clist_column_titles_show(GTK_CLIST(paths_list)); */
|
|
|
|
/* gtk_clist_columns_autosize(GTK_CLIST(paths_list)); */
|
1999-07-08 03:09:52 +08:00
|
|
|
gtk_clist_set_column_width (GTK_CLIST(paths_list),0,locked_width);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
gtk_container_add (GTK_CONTAINER (scrolled_win), paths_list);
|
|
|
|
gtk_clist_set_selection_mode (GTK_CLIST (paths_list), GTK_SELECTION_BROWSE);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (paths_list), "event",
|
|
|
|
(GtkSignalFunc) paths_list_events,
|
|
|
|
paths_dialog);
|
|
|
|
gtk_container_set_focus_vadjustment (GTK_CONTAINER (paths_list),
|
|
|
|
gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (scrolled_win)));
|
|
|
|
GTK_WIDGET_UNSET_FLAGS (GTK_SCROLLED_WINDOW (scrolled_win)->vscrollbar, GTK_CAN_FOCUS);
|
|
|
|
|
|
|
|
paths_dialog->selsigid = gtk_signal_connect(GTK_OBJECT(paths_list), "select_row",
|
|
|
|
GTK_SIGNAL_FUNC(paths_select_row),
|
|
|
|
(gpointer) NULL);
|
|
|
|
|
|
|
|
gtk_signal_connect(GTK_OBJECT(paths_list), "unselect_row",
|
|
|
|
GTK_SIGNAL_FUNC(paths_unselect_row),
|
|
|
|
(gpointer) NULL);
|
|
|
|
|
|
|
|
gtk_widget_show(scrolled_win);
|
|
|
|
gtk_widget_show(paths_list);
|
|
|
|
|
|
|
|
gtk_signal_connect(GTK_OBJECT(vbox),"realize",
|
|
|
|
(GtkSignalFunc)paths_dialog_realized,
|
|
|
|
(gpointer)NULL);
|
|
|
|
|
|
|
|
gtk_widget_show (vbox);
|
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
/* The ops buttons */
|
|
|
|
button_box = ops_button_box_new (lc_dialog->shell, tool_tips,
|
|
|
|
paths_ops_buttons, OPS_BUTTON_NORMAL);
|
1999-03-06 07:50:24 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), button_box, FALSE, FALSE, 2);
|
|
|
|
gtk_widget_show (button_box);
|
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
menus_get_paths_menu (&paths_dialog->ops_menu,
|
|
|
|
&paths_dialog->accel_group);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
/* Set up signals for map/unmap for the accelerators */
|
1999-03-06 07:50:24 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (vbox), "map",
|
|
|
|
(GtkSignalFunc) paths_dialog_map_callback,
|
|
|
|
NULL);
|
|
|
|
gtk_signal_connect (GTK_OBJECT (vbox), "unmap",
|
|
|
|
(GtkSignalFunc) paths_dialog_unmap_callback,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
paths_ops_button_set_sensitive(DUP_PATH_BUTTON,FALSE);
|
|
|
|
paths_ops_button_set_sensitive(DEL_PATH_BUTTON,FALSE);
|
|
|
|
paths_ops_button_set_sensitive(STROKE_PATH_BUTTON,FALSE);
|
1999-03-13 06:04:30 +08:00
|
|
|
paths_ops_button_set_sensitive(PATH_TO_SEL_BUTTON,FALSE);
|
1999-05-14 06:53:40 +08:00
|
|
|
paths_ops_button_set_sensitive(COPY_PATH_BUTTON,FALSE);
|
|
|
|
paths_ops_button_set_sensitive(PASTE_PATH_BUTTON,FALSE);
|
1999-03-06 07:50:24 +08:00
|
|
|
point_ops_button_set_sensitive(POINT_ADD_BUTTON,FALSE);
|
|
|
|
point_ops_button_set_sensitive(POINT_DEL_BUTTON,FALSE);
|
|
|
|
point_ops_button_set_sensitive(POINT_NEW_BUTTON,FALSE);
|
|
|
|
point_ops_button_set_sensitive(POINT_EDIT_BUTTON,FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return paths_dialog->vbox;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void paths_dialog_realized(GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GdkColormap *colormap;
|
|
|
|
gchar dash_list[2]= {3,3};
|
|
|
|
|
1999-03-13 06:04:30 +08:00
|
|
|
/* Help out small displays */
|
|
|
|
if(preview_size < 64)
|
|
|
|
dash_list[1] = 1;
|
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
paths_dialog->gc = gdk_gc_new(widget->window);
|
|
|
|
gdk_gc_set_dashes(paths_dialog->gc,2,dash_list,2);
|
|
|
|
colormap = gtk_widget_get_colormap(paths_dialog->paths_list);
|
|
|
|
gdk_color_parse("black", &paths_dialog->black);
|
|
|
|
gdk_color_alloc(colormap, &paths_dialog->black);
|
|
|
|
gdk_color_parse("white", &paths_dialog->white);
|
|
|
|
gdk_color_alloc(colormap, &paths_dialog->white);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clears out row when list element is deleted/destroyed */
|
|
|
|
static void
|
|
|
|
clear_pathwidget(gpointer data)
|
|
|
|
{
|
|
|
|
PATHWIDGETP pwidget = data;
|
|
|
|
|
|
|
|
if(pwidget)
|
|
|
|
{
|
|
|
|
g_free(pwidget);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1999-03-22 08:51:30 +08:00
|
|
|
pathpoint_free(gpointer data,gpointer user_data)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHPOINTP pathpoint = data;
|
|
|
|
g_free(pathpoint);
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1999-03-22 08:51:30 +08:00
|
|
|
path_free(gpointer data,gpointer user_data)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP bzp = data;
|
1999-03-06 07:50:24 +08:00
|
|
|
g_return_if_fail(bzp != NULL);
|
|
|
|
g_string_free(bzp->name,TRUE);
|
1999-03-22 08:51:30 +08:00
|
|
|
pathpoints_free(bzp->path_details);
|
1999-03-06 07:50:24 +08:00
|
|
|
g_free(bzp);
|
|
|
|
}
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
static PATHP
|
1999-04-06 07:33:50 +08:00
|
|
|
path_dialog_new(GimpImage *gimage,gint name_seed, gpointer udata)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
1999-04-06 07:33:50 +08:00
|
|
|
PATHP bzp;
|
1999-03-06 07:50:24 +08:00
|
|
|
GString *s = g_string_new (NULL);
|
1999-04-06 07:33:50 +08:00
|
|
|
gchar *suniq;
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-08-27 07:16:24 +08:00
|
|
|
g_string_sprintf (s, _("Path %d"), name_seed);
|
1999-04-14 05:50:28 +08:00
|
|
|
suniq = unique_name(gimage,s->str);
|
1999-04-06 07:33:50 +08:00
|
|
|
if(suniq)
|
|
|
|
{
|
|
|
|
g_string_free(s,TRUE);
|
|
|
|
s = g_string_new(suniq);
|
|
|
|
g_free(suniq);
|
|
|
|
}
|
|
|
|
bzp = path_new(gimage,BEZIER,(GSList *)udata,0,0,0,0,s->str);
|
|
|
|
g_string_free(s,TRUE);
|
1999-03-06 07:50:24 +08:00
|
|
|
return bzp;
|
|
|
|
}
|
|
|
|
|
1999-03-13 06:04:30 +08:00
|
|
|
/* Always return a copy that must be freed later */
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
strip_off_cnumber(gchar *str)
|
|
|
|
{
|
|
|
|
gchar * hashptr;
|
|
|
|
gint num;
|
|
|
|
gchar * copy;
|
|
|
|
|
|
|
|
if(!str)
|
|
|
|
return str;
|
|
|
|
|
|
|
|
copy = g_strdup(str);
|
|
|
|
|
|
|
|
if((hashptr = strrchr(copy,'#')) && /* have a hash */
|
|
|
|
strlen(hashptr) > 0 && /* followed by something */
|
|
|
|
(num = atoi(hashptr+1)) > 0 && /* which is a number */
|
|
|
|
((int)log10(num) + 1) == strlen(hashptr+1)) /* which is at the end */
|
|
|
|
{
|
|
|
|
gchar * tstr;
|
|
|
|
/* Has a #<number> */
|
|
|
|
*hashptr = '\0';
|
|
|
|
tstr = g_strdup(copy);
|
|
|
|
g_free(copy);
|
|
|
|
copy = tstr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return copy;
|
|
|
|
}
|
|
|
|
|
1999-07-07 05:19:34 +08:00
|
|
|
/* Return NULL if already unique else a unique string */
|
1999-03-13 06:04:30 +08:00
|
|
|
|
|
|
|
static gchar *
|
1999-04-14 05:50:28 +08:00
|
|
|
unique_name(GimpImage *gimage,gchar *cstr)
|
1999-03-13 06:04:30 +08:00
|
|
|
{
|
|
|
|
GSList *tlist;
|
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
gboolean unique = TRUE;
|
|
|
|
gchar *copy_cstr;
|
|
|
|
gchar *copy_test;
|
|
|
|
gchar *stripped_copy;
|
|
|
|
gint counter = 1;
|
|
|
|
|
|
|
|
/* Get bzpath structure */
|
1999-04-14 05:50:28 +08:00
|
|
|
if(!gimage || !(plp = (PATHIMAGELISTP)gimp_image_get_paths(gimage)))
|
1999-03-13 06:04:30 +08:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
tlist = plp->bz_paths;
|
|
|
|
|
|
|
|
while(tlist)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
gchar *test_str = ((PATHP)(tlist->data))->name->str;
|
1999-03-13 06:04:30 +08:00
|
|
|
if(strcmp(cstr,test_str) == 0)
|
|
|
|
{
|
|
|
|
unique = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
tlist = g_slist_next(tlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(unique)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* OK Clashes with something */
|
|
|
|
/* restart scan to find unique name */
|
|
|
|
|
|
|
|
stripped_copy = strip_off_cnumber(cstr);
|
|
|
|
copy_cstr = g_strdup_printf("%s#%d",stripped_copy,counter++);
|
|
|
|
|
|
|
|
tlist = plp->bz_paths;
|
|
|
|
|
|
|
|
while(tlist)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
copy_test = ((PATHP)(tlist->data))->name->str;
|
1999-03-13 06:04:30 +08:00
|
|
|
if(strcmp(copy_cstr,copy_test) == 0)
|
|
|
|
{
|
|
|
|
g_free(copy_cstr);
|
|
|
|
copy_cstr = g_strdup_printf("%s#%d",stripped_copy,counter++);
|
|
|
|
tlist = plp->bz_paths;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
tlist = g_slist_next(tlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free(stripped_copy);
|
|
|
|
return copy_cstr;
|
|
|
|
}
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
static PATHP
|
1999-04-06 07:33:50 +08:00
|
|
|
path_copy(GimpImage *gimage,PATHP p)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP p_copy = g_new0(PATH,1);
|
1999-03-13 06:04:30 +08:00
|
|
|
gchar *ext;
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-04-14 05:50:28 +08:00
|
|
|
ext = unique_name(gimage,p->name->str);
|
1999-03-22 08:51:30 +08:00
|
|
|
p_copy->name = g_string_new(ext);
|
1999-03-13 06:04:30 +08:00
|
|
|
g_free(ext);
|
1999-03-22 08:51:30 +08:00
|
|
|
p_copy->closed = p->closed;
|
|
|
|
p_copy->state = p->state;
|
|
|
|
p_copy->pathtype = p->pathtype;
|
|
|
|
p_copy->path_details = pathpoints_copy(p->path_details);
|
1999-04-14 05:50:28 +08:00
|
|
|
if(gimage)
|
|
|
|
p_copy->tattoo = gimp_image_get_new_tattoo(gimage);
|
|
|
|
else
|
|
|
|
p_copy->tattoo = p->tattoo;
|
1999-03-22 08:51:30 +08:00
|
|
|
return p_copy;
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
1999-05-14 06:53:40 +08:00
|
|
|
static PATHPOINTP
|
|
|
|
path_start_last_seg(GSList *plist)
|
|
|
|
{
|
|
|
|
PATHPOINTP retp = plist->data;
|
|
|
|
while(plist)
|
|
|
|
{
|
|
|
|
if(((PATHPOINTP)(plist->data))->type == BEZIER_MOVE &&
|
|
|
|
g_slist_next(plist))
|
|
|
|
{
|
|
|
|
plist = g_slist_next(plist);
|
|
|
|
retp = plist->data;
|
|
|
|
}
|
|
|
|
plist = g_slist_next(plist);
|
|
|
|
}
|
|
|
|
return retp;
|
|
|
|
}
|
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
static void
|
1999-03-22 08:51:30 +08:00
|
|
|
path_close(PATHP bzp)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHPOINTP pdata;
|
|
|
|
PATHPOINTP pathpoint;
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
/* bzpaths are only really closed when converted to the BezierSelect ones */
|
|
|
|
bzp->closed = 1;
|
|
|
|
/* first point */
|
1999-03-22 08:51:30 +08:00
|
|
|
pdata = (PATHPOINTP)bzp->path_details->data;
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
if(g_slist_length(bzp->path_details) < 5)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0 ; i < 2 ; i++)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
pathpoint = g_new0(PATHPOINT,1);
|
|
|
|
pathpoint->type = (i & 1)?BEZIER_ANCHOR:BEZIER_CONTROL;
|
|
|
|
pathpoint->x = pdata->x+i;
|
|
|
|
pathpoint->y = pdata->y+i;
|
|
|
|
bzp->path_details = g_slist_append(bzp->path_details,pathpoint);
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
}
|
1999-03-22 08:51:30 +08:00
|
|
|
pathpoint = g_new0(PATHPOINT,1);
|
1999-05-14 06:53:40 +08:00
|
|
|
pdata = path_start_last_seg(bzp->path_details);
|
1999-03-22 08:51:30 +08:00
|
|
|
pathpoint->type = BEZIER_CONTROL;
|
|
|
|
pathpoint->x = pdata->x;
|
|
|
|
pathpoint->y = pdata->y;
|
1999-05-14 06:53:40 +08:00
|
|
|
/* printf("Closing to x,y %d,%d\n",(gint)pdata->x,(gint)pdata->y); */
|
1999-03-22 08:51:30 +08:00
|
|
|
bzp->path_details = g_slist_append(bzp->path_details,pathpoint);
|
1999-05-14 06:53:40 +08:00
|
|
|
bzp->state = BEZIER_EDIT;
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
beziersel_free(BezierSelect *bezier_sel)
|
|
|
|
{
|
|
|
|
bezier_select_reset (bezier_sel);
|
|
|
|
g_free(bezier_sel);
|
|
|
|
}
|
|
|
|
|
|
|
|
static BezierSelect *
|
1999-03-22 08:51:30 +08:00
|
|
|
path_to_beziersel(PATHP bzp)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
|
|
|
BezierSelect *bezier_sel;
|
1999-05-14 06:53:40 +08:00
|
|
|
BezierPoint *bpnt = NULL;
|
|
|
|
GSList *list;
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
if(!bzp)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
g_warning("path_to_beziersel:: NULL bzp");
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
list = bzp->path_details;
|
1999-03-06 07:50:24 +08:00
|
|
|
bezier_sel = g_new0 (BezierSelect,1);
|
|
|
|
|
|
|
|
bezier_sel->num_points = 0;
|
|
|
|
bezier_sel->mask = NULL;
|
|
|
|
bezier_sel->core = NULL; /* not required will be reset in bezier code */
|
|
|
|
bezier_select_reset (bezier_sel);
|
|
|
|
bezier_sel->closed = bzp->closed;
|
|
|
|
/* bezier_sel->state = BEZIER_ADD; */
|
|
|
|
bezier_sel->state = bzp->state;
|
|
|
|
|
|
|
|
while(list)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHPOINTP pdata;
|
|
|
|
pdata = (PATHPOINTP)list->data;
|
1999-05-14 06:53:40 +08:00
|
|
|
if(pdata->type == BEZIER_MOVE)
|
|
|
|
{
|
|
|
|
/* printf("Close last curve off\n"); */
|
|
|
|
bezier_sel->last_point->next = bpnt;
|
|
|
|
bpnt->prev = bezier_sel->last_point;
|
|
|
|
bezier_sel->cur_anchor = NULL;
|
|
|
|
bezier_sel->cur_control = NULL;
|
|
|
|
bpnt = NULL;
|
|
|
|
}
|
|
|
|
bezier_add_point(bezier_sel,
|
|
|
|
(gint)pdata->type,
|
1999-08-05 07:22:29 +08:00
|
|
|
RINT(pdata->x), /* ALT add rint() */
|
|
|
|
RINT(pdata->y));
|
1999-05-14 06:53:40 +08:00
|
|
|
if(bpnt == NULL)
|
|
|
|
bpnt = bezier_sel->last_point;
|
1999-03-06 07:50:24 +08:00
|
|
|
list = g_slist_next(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( bezier_sel->closed )
|
|
|
|
{
|
1999-05-14 06:53:40 +08:00
|
|
|
bezier_sel->last_point->next = bpnt;
|
|
|
|
bpnt->prev = bezier_sel->last_point;
|
1999-03-06 07:50:24 +08:00
|
|
|
bezier_sel->cur_anchor = bezier_sel->points;
|
|
|
|
bezier_sel->cur_control = bezier_sel-> points->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bezier_sel;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pathimagelist_free(PATHIMAGELISTP iml)
|
|
|
|
{
|
|
|
|
g_return_if_fail(iml != NULL);
|
|
|
|
if(iml->bz_paths)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
g_slist_foreach(iml->bz_paths,path_free,NULL);
|
1999-03-06 07:50:24 +08:00
|
|
|
g_slist_free(iml->bz_paths);
|
|
|
|
}
|
|
|
|
g_free(iml);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bz_change_name_row_to(gint row,gchar *text)
|
|
|
|
{
|
|
|
|
PATHWIDGETP pwidget;
|
|
|
|
|
|
|
|
pwidget = (PATHWIDGETP)gtk_clist_get_row_data(GTK_CLIST(paths_dialog->paths_list),row);
|
|
|
|
|
|
|
|
if(!pwidget)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_string_free(pwidget->bzp->name,TRUE);
|
|
|
|
|
|
|
|
pwidget->bzp->name = g_string_new(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
paths_set_dash_line(GdkGC *gc,gboolean state)
|
|
|
|
{
|
1999-03-13 06:04:30 +08:00
|
|
|
gdk_gc_set_foreground(paths_dialog->gc, &paths_dialog->black);
|
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
if(state)
|
|
|
|
{
|
|
|
|
gdk_gc_set_line_attributes(gc,0,GDK_LINE_ON_OFF_DASH,GDK_CAP_BUTT,GDK_JOIN_ROUND);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gdk_gc_set_line_attributes(gc,0,GDK_LINE_SOLID,GDK_CAP_BUTT,GDK_JOIN_ROUND);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clear_pixmap_preview(PATHWIDGETP pwidget)
|
|
|
|
{
|
|
|
|
gchar *rgb_buf;
|
|
|
|
|
|
|
|
rgb_buf = g_new0(gchar,
|
|
|
|
(paths_dialog->image_width + 4)
|
|
|
|
*(paths_dialog->image_height + 4)*3);
|
|
|
|
|
|
|
|
memset(rgb_buf,0xFF,(paths_dialog->image_width + 4)
|
|
|
|
*(paths_dialog->image_height + 4)*3);
|
|
|
|
|
|
|
|
gdk_draw_rgb_image (pwidget->paths_pixmap,
|
|
|
|
paths_dialog->gc,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
paths_dialog->image_width + 4,
|
|
|
|
paths_dialog->image_height + 4,
|
|
|
|
GDK_RGB_DITHER_NORMAL,
|
|
|
|
rgb_buf,
|
|
|
|
(paths_dialog->image_width + 4)*3);
|
|
|
|
|
|
|
|
paths_set_dash_line(paths_dialog->gc,FALSE);
|
|
|
|
|
|
|
|
gdk_draw_rectangle(pwidget->paths_pixmap,
|
|
|
|
paths_dialog->gc, FALSE, 0, 0,
|
|
|
|
paths_dialog->image_width+3,
|
|
|
|
paths_dialog->image_height+3);
|
|
|
|
|
|
|
|
gdk_draw_rectangle(pwidget->paths_pixmap,
|
|
|
|
paths_dialog->gc, FALSE, 1, 1,
|
|
|
|
paths_dialog->image_width+1,
|
|
|
|
paths_dialog->image_height+1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* insrow == -1 -> append else insert at insrow */
|
1999-03-22 08:51:30 +08:00
|
|
|
void paths_add_path(PATHP bzp,gint insrow)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
|
|
|
/* Create a new entry in the list */
|
|
|
|
PATHWIDGETP pwidget;
|
|
|
|
gint row;
|
1999-04-14 05:50:28 +08:00
|
|
|
gchar *row_data[2];
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
pwidget = g_new0(PATHWIDGET,1);
|
|
|
|
|
|
|
|
if(!GTK_WIDGET_REALIZED(paths_dialog->vbox))
|
|
|
|
gtk_widget_realize(paths_dialog->vbox);
|
|
|
|
|
|
|
|
paths_dialog_preview_extents();
|
|
|
|
|
|
|
|
if(preview_size)
|
|
|
|
{
|
|
|
|
/* Need to add this to the list */
|
|
|
|
pwidget->paths_pixmap = gdk_pixmap_new(paths_dialog->vbox->window,
|
|
|
|
paths_dialog->image_width + 4,
|
|
|
|
paths_dialog->image_height + 4,
|
|
|
|
-1);
|
|
|
|
clear_pixmap_preview(pwidget);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1999-03-13 06:04:30 +08:00
|
|
|
if(!paths_dialog->pixmap_normal)
|
|
|
|
{
|
|
|
|
paths_dialog->pixmap_normal =
|
|
|
|
gdk_pixmap_create_from_data (paths_dialog->vbox->window,
|
|
|
|
path_bits,
|
|
|
|
paths_dialog->image_width,
|
|
|
|
paths_dialog->image_height,
|
|
|
|
-1,
|
|
|
|
&paths_dialog->vbox->style->fg[GTK_STATE_SELECTED],
|
|
|
|
&paths_dialog->vbox->style->bg[GTK_STATE_SELECTED]);
|
|
|
|
paths_dialog->pixmap_selected =
|
|
|
|
gdk_pixmap_create_from_data (paths_dialog->vbox->window,
|
|
|
|
path_bits,
|
|
|
|
paths_dialog->image_width,
|
|
|
|
paths_dialog->image_height,
|
|
|
|
-1,
|
|
|
|
&paths_dialog->vbox->style->fg[GTK_STATE_NORMAL],
|
|
|
|
&paths_dialog->vbox->style->bg[GTK_STATE_SELECTED]);
|
|
|
|
}
|
|
|
|
pwidget->paths_pixmap = paths_dialog->pixmap_normal;
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
1999-07-08 03:09:52 +08:00
|
|
|
if(!paths_dialog->pixmap_locked_normal)
|
1999-04-14 05:50:28 +08:00
|
|
|
{
|
1999-07-08 03:09:52 +08:00
|
|
|
paths_dialog->pixmap_locked_normal =
|
|
|
|
gdk_pixmap_create_from_data (paths_dialog->vbox->window,
|
|
|
|
locked_bits, locked_width, locked_height, -1,
|
|
|
|
&paths_dialog->vbox->style->fg[GTK_STATE_NORMAL],
|
|
|
|
&paths_dialog->vbox->style->white);
|
|
|
|
paths_dialog->pixmap_locked_selected =
|
|
|
|
gdk_pixmap_create_from_data (paths_dialog->vbox->window,
|
|
|
|
locked_bits, locked_width, locked_height, -1,
|
|
|
|
&paths_dialog->vbox->style->fg[GTK_STATE_SELECTED],
|
|
|
|
&paths_dialog->vbox->style->bg[GTK_STATE_SELECTED]);
|
1999-04-14 05:50:28 +08:00
|
|
|
}
|
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
gtk_clist_set_row_height(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
paths_dialog->image_height + 6);
|
|
|
|
|
|
|
|
row_data[0] = "";
|
1999-04-14 05:50:28 +08:00
|
|
|
row_data[1] = "";
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
if(insrow == -1)
|
|
|
|
row = gtk_clist_append(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
row_data);
|
|
|
|
else
|
|
|
|
row = gtk_clist_insert(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
insrow,
|
|
|
|
row_data);
|
|
|
|
|
|
|
|
gtk_clist_set_pixtext(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
row,
|
1999-04-14 05:50:28 +08:00
|
|
|
1,
|
1999-03-06 07:50:24 +08:00
|
|
|
bzp->name->str,
|
|
|
|
2,
|
|
|
|
pwidget->paths_pixmap,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
gtk_clist_set_row_data_full(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
row,
|
|
|
|
(gpointer)pwidget,
|
|
|
|
clear_pathwidget);
|
|
|
|
|
|
|
|
gtk_signal_handler_block(GTK_OBJECT(paths_dialog->paths_list),paths_dialog->selsigid);
|
|
|
|
gtk_clist_select_row(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
paths_dialog->current_path_list->last_selected_row,
|
1999-04-14 05:50:28 +08:00
|
|
|
1);
|
1999-03-06 07:50:24 +08:00
|
|
|
gtk_signal_handler_unblock(GTK_OBJECT(paths_dialog->paths_list),paths_dialog->selsigid);
|
|
|
|
|
|
|
|
pwidget->bzp = bzp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
paths_dialog_preview_extents ()
|
|
|
|
{
|
|
|
|
GImage *gimage;
|
|
|
|
|
|
|
|
if (!paths_dialog)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!(gimage = paths_dialog->gimage))
|
|
|
|
return;
|
|
|
|
|
|
|
|
gimage = paths_dialog->gimage;
|
|
|
|
|
|
|
|
paths_dialog->gimage_width = gimage->width;
|
|
|
|
paths_dialog->gimage_height = gimage->height;
|
|
|
|
|
|
|
|
/* Get the image width and height variables, based on the gimage */
|
|
|
|
if (gimage->width > gimage->height)
|
|
|
|
paths_dialog->ratio = (double) preview_size / (double) gimage->width;
|
|
|
|
else
|
|
|
|
paths_dialog->ratio = (double) preview_size / (double) gimage->height;
|
|
|
|
|
|
|
|
if (preview_size)
|
|
|
|
{
|
|
|
|
paths_dialog->image_width = (int) (paths_dialog->ratio * gimage->width);
|
|
|
|
paths_dialog->image_height = (int) (paths_dialog->ratio * gimage->height);
|
|
|
|
if (paths_dialog->image_width < 1) paths_dialog->image_width = 1;
|
|
|
|
if (paths_dialog->image_height < 1) paths_dialog->image_height = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
paths_dialog->image_width = path_width;
|
|
|
|
paths_dialog->image_height = path_height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-07-08 03:09:52 +08:00
|
|
|
/*
|
1999-03-06 07:50:24 +08:00
|
|
|
static gint
|
|
|
|
path_widget_preview_events (GtkWidget *widget,
|
|
|
|
GdkEvent *event)
|
|
|
|
{
|
|
|
|
GdkEventButton *bevent;
|
|
|
|
|
|
|
|
switch (event->type)
|
|
|
|
{
|
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
bevent = (GdkEventButton *) event;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_EXPOSE:
|
|
|
|
if (preview_size)
|
|
|
|
{
|
|
|
|
|
1999-07-08 03:09:52 +08:00
|
|
|
layer_widget_preview_redraw (layer_widget, preview_type);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-07-08 03:09:52 +08:00
|
|
|
gdk_draw_pixmap (widget->window,
|
|
|
|
widget->style->black_gc,
|
|
|
|
*pixmap,
|
|
|
|
0, 0, 2, 2,
|
|
|
|
layersD->image_width,
|
|
|
|
layersD->image_height);
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
1999-07-08 03:09:52 +08:00
|
|
|
*/
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
paths_select_row(GtkWidget *widget,
|
|
|
|
gint row,
|
|
|
|
gint column,
|
|
|
|
GdkEventButton *event,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
PATHWIDGETP pwidget;
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP bzp;
|
1999-03-06 07:50:24 +08:00
|
|
|
BezierSelect * bsel;
|
|
|
|
GDisplay *gdisp;
|
1999-04-14 05:50:28 +08:00
|
|
|
gint last_row;
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
pwidget = (PATHWIDGETP)gtk_clist_get_row_data(GTK_CLIST(widget),row);
|
|
|
|
|
|
|
|
if(!pwidget ||
|
|
|
|
(paths_dialog->current_path_list->last_selected_row == row &&
|
1999-04-14 05:50:28 +08:00
|
|
|
paths_dialog->been_selected == TRUE))
|
|
|
|
{
|
|
|
|
if(column)
|
|
|
|
return;
|
|
|
|
}
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-04-14 05:50:28 +08:00
|
|
|
last_row = paths_dialog->current_path_list->last_selected_row;
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
bzp = (PATHP)g_slist_nth_data(paths_dialog->current_path_list->bz_paths,row);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
g_return_if_fail(bzp != NULL);
|
|
|
|
|
1999-04-14 05:50:28 +08:00
|
|
|
if(column == 0)
|
|
|
|
{
|
|
|
|
if(bzp->locked == 0)
|
|
|
|
{
|
|
|
|
bzp->locked = 1;
|
1999-07-08 03:09:52 +08:00
|
|
|
if (paths_dialog->selected_row_num == row)
|
|
|
|
gtk_clist_set_pixmap(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
row,
|
|
|
|
0,
|
|
|
|
paths_dialog->pixmap_locked_selected,
|
|
|
|
NULL);
|
|
|
|
else
|
|
|
|
gtk_clist_set_pixmap(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
row,
|
|
|
|
0,
|
|
|
|
paths_dialog->pixmap_locked_normal,
|
|
|
|
NULL);
|
1999-04-14 05:50:28 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gint tmprow;
|
|
|
|
|
|
|
|
bzp->locked = 0;
|
|
|
|
gtk_clist_set_text(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
row,
|
|
|
|
0,
|
|
|
|
"");
|
|
|
|
/* There should be an easier way of updating the preview! */
|
|
|
|
bsel = path_to_beziersel(bzp);
|
|
|
|
tmprow = paths_dialog->current_path_list->last_selected_row;
|
|
|
|
paths_dialog->current_path_list->last_selected_row = row;
|
|
|
|
paths_update_preview(bsel);
|
|
|
|
beziersel_free(bsel);
|
|
|
|
paths_dialog->current_path_list->last_selected_row = tmprow;
|
|
|
|
paths_dialog->selected_row_num = tmprow;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Put hightlight back on the old original selection */
|
|
|
|
gtk_signal_handler_block(GTK_OBJECT(paths_dialog->paths_list),paths_dialog->selsigid);
|
|
|
|
|
|
|
|
gtk_clist_select_row(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
last_row,
|
|
|
|
1);
|
|
|
|
|
|
|
|
gtk_signal_handler_unblock(GTK_OBJECT(paths_dialog->paths_list),paths_dialog->selsigid);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
paths_dialog->selected_row_num = row;
|
|
|
|
paths_dialog->current_path_list->last_selected_row = row;
|
|
|
|
paths_dialog->been_selected = TRUE;
|
|
|
|
|
1999-07-08 03:09:52 +08:00
|
|
|
if(bzp->locked)
|
|
|
|
gtk_clist_set_pixmap(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
row,
|
|
|
|
0,
|
|
|
|
paths_dialog->pixmap_locked_selected,
|
|
|
|
NULL);
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
bsel = path_to_beziersel(bzp);
|
1999-03-06 07:50:24 +08:00
|
|
|
gdisp = gdisplays_check_valid(paths_dialog->current_path_list->gdisp,
|
|
|
|
paths_dialog->gimage);
|
|
|
|
if(!gdisp)
|
|
|
|
{
|
|
|
|
g_warning("Lost image which bezier curve belonged to");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bezier_paste_bezierselect_to_current(gdisp,bsel);
|
|
|
|
paths_update_preview(bsel);
|
|
|
|
beziersel_free(bsel);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1999-07-08 03:09:52 +08:00
|
|
|
paths_unselect_row (GtkWidget *widget,
|
|
|
|
gint row,
|
|
|
|
gint column,
|
|
|
|
GdkEventButton *event,
|
|
|
|
gpointer data)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
|
|
|
PATHWIDGETP pwidget;
|
1999-07-08 03:09:52 +08:00
|
|
|
PATHP bzp;
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
pwidget = (PATHWIDGETP)gtk_clist_get_row_data(GTK_CLIST(widget),row);
|
|
|
|
|
|
|
|
if(!pwidget)
|
|
|
|
return;
|
1999-07-08 03:09:52 +08:00
|
|
|
|
1999-07-11 20:08:01 +08:00
|
|
|
bzp = pwidget->bzp;
|
1999-07-08 03:09:52 +08:00
|
|
|
|
1999-07-11 20:08:01 +08:00
|
|
|
g_return_if_fail (bzp != NULL);
|
1999-07-08 03:09:52 +08:00
|
|
|
|
|
|
|
if (column && bzp->locked)
|
|
|
|
{
|
|
|
|
gtk_clist_set_pixmap (GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
row,
|
|
|
|
0,
|
|
|
|
paths_dialog->pixmap_locked_normal,
|
|
|
|
NULL);
|
|
|
|
}
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
paths_dialog_update (GimpImage* gimage)
|
|
|
|
{
|
|
|
|
PATHIMAGELISTP new_path_list;
|
|
|
|
GSList *plist;
|
|
|
|
gint loop;
|
|
|
|
gint tmprow;
|
|
|
|
|
|
|
|
if (!paths_dialog || !gimage)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* The last pointer comparison forces update if something has changed
|
|
|
|
* under our feet.
|
|
|
|
*/
|
|
|
|
|
1999-03-13 06:04:30 +08:00
|
|
|
if(!gimp_image_get_paths(gimage))
|
|
|
|
{
|
|
|
|
/* No paths is this layer */
|
|
|
|
paths_ops_button_set_sensitive(DUP_PATH_BUTTON,FALSE);
|
|
|
|
paths_ops_button_set_sensitive(DEL_PATH_BUTTON,FALSE);
|
|
|
|
paths_ops_button_set_sensitive(STROKE_PATH_BUTTON,FALSE);
|
|
|
|
paths_ops_button_set_sensitive(PATH_TO_SEL_BUTTON,FALSE);
|
1999-05-14 06:53:40 +08:00
|
|
|
paths_ops_button_set_sensitive(COPY_PATH_BUTTON,FALSE);
|
|
|
|
paths_ops_button_set_sensitive(PASTE_PATH_BUTTON,FALSE);
|
1999-03-13 06:04:30 +08:00
|
|
|
point_ops_button_set_sensitive(POINT_ADD_BUTTON,FALSE);
|
|
|
|
point_ops_button_set_sensitive(POINT_DEL_BUTTON,FALSE);
|
|
|
|
point_ops_button_set_sensitive(POINT_NEW_BUTTON,FALSE);
|
|
|
|
point_ops_button_set_sensitive(POINT_EDIT_BUTTON,FALSE);
|
|
|
|
}
|
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
if (paths_dialog->gimage == gimage &&
|
|
|
|
paths_dialog->current_path_list == (PATHIMAGELISTP)gimp_image_get_paths(gimage))
|
|
|
|
return;
|
|
|
|
|
|
|
|
paths_dialog->gimage=gimage;
|
|
|
|
|
|
|
|
paths_dialog_preview_extents ();
|
|
|
|
|
|
|
|
if(!GTK_WIDGET_REALIZED(paths_dialog->vbox))
|
|
|
|
gtk_widget_realize(paths_dialog->vbox);
|
|
|
|
/* ALT removed & replaced return;*/
|
|
|
|
|
|
|
|
/* clear clist out */
|
|
|
|
|
|
|
|
gtk_clist_freeze(GTK_CLIST(paths_dialog->paths_list));
|
|
|
|
gtk_clist_clear(GTK_CLIST(paths_dialog->paths_list));
|
|
|
|
gtk_clist_thaw(GTK_CLIST(paths_dialog->paths_list));
|
|
|
|
|
|
|
|
/* Find bz list */
|
|
|
|
|
|
|
|
new_path_list = (PATHIMAGELISTP)gimp_image_get_paths(gimage);
|
|
|
|
|
|
|
|
paths_dialog->current_path_list = new_path_list;
|
|
|
|
paths_dialog->been_selected = FALSE;
|
|
|
|
|
|
|
|
if(!new_path_list)
|
|
|
|
{
|
|
|
|
/* No list assoc with this image */
|
|
|
|
paths_ops_button_set_sensitive(DUP_PATH_BUTTON,FALSE);
|
|
|
|
paths_ops_button_set_sensitive(DEL_PATH_BUTTON,FALSE);
|
|
|
|
paths_ops_button_set_sensitive(STROKE_PATH_BUTTON,FALSE);
|
1999-03-13 06:04:30 +08:00
|
|
|
paths_ops_button_set_sensitive(PATH_TO_SEL_BUTTON,FALSE);
|
1999-05-14 06:53:40 +08:00
|
|
|
paths_ops_button_set_sensitive(COPY_PATH_BUTTON,FALSE);
|
|
|
|
paths_ops_button_set_sensitive(PASTE_PATH_BUTTON,FALSE);
|
1999-03-06 07:50:24 +08:00
|
|
|
point_ops_button_set_sensitive(POINT_ADD_BUTTON,FALSE);
|
|
|
|
point_ops_button_set_sensitive(POINT_DEL_BUTTON,FALSE);
|
|
|
|
point_ops_button_set_sensitive(POINT_NEW_BUTTON,FALSE);
|
|
|
|
point_ops_button_set_sensitive(POINT_EDIT_BUTTON,FALSE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
paths_ops_button_set_sensitive(DUP_PATH_BUTTON,TRUE);
|
|
|
|
paths_ops_button_set_sensitive(DEL_PATH_BUTTON,TRUE);
|
|
|
|
paths_ops_button_set_sensitive(STROKE_PATH_BUTTON,TRUE);
|
1999-03-13 06:04:30 +08:00
|
|
|
paths_ops_button_set_sensitive(PATH_TO_SEL_BUTTON,TRUE);
|
1999-05-14 06:53:40 +08:00
|
|
|
paths_ops_button_set_sensitive(COPY_PATH_BUTTON,TRUE);
|
|
|
|
paths_ops_button_set_sensitive(PASTE_PATH_BUTTON,(copy_pp)?TRUE:FALSE);
|
1999-03-06 07:50:24 +08:00
|
|
|
point_ops_button_set_sensitive(POINT_ADD_BUTTON,TRUE);
|
|
|
|
point_ops_button_set_sensitive(POINT_DEL_BUTTON,TRUE);
|
|
|
|
point_ops_button_set_sensitive(POINT_NEW_BUTTON,TRUE);
|
|
|
|
point_ops_button_set_sensitive(POINT_EDIT_BUTTON,TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* update the clist to reflect this images bz list */
|
|
|
|
/* go around the image list populating the clist */
|
|
|
|
|
|
|
|
if(gimage != new_path_list->gimage)
|
|
|
|
{
|
1999-09-23 19:49:16 +08:00
|
|
|
g_warning("paths list: internal list error");
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
plist = new_path_list->bz_paths;
|
|
|
|
loop = 0;
|
|
|
|
|
|
|
|
tmprow = paths_dialog->current_path_list->last_selected_row;
|
|
|
|
while(plist)
|
|
|
|
{
|
|
|
|
paths_update_paths(plist->data,loop);
|
|
|
|
loop++;
|
|
|
|
plist = g_slist_next(plist);
|
|
|
|
}
|
|
|
|
paths_dialog->current_path_list->last_selected_row = tmprow;
|
|
|
|
paths_dialog->selected_row_num = tmprow;
|
|
|
|
|
|
|
|
/* select last one */
|
1999-03-13 06:04:30 +08:00
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
gtk_signal_handler_block(GTK_OBJECT(paths_dialog->paths_list),paths_dialog->selsigid);
|
|
|
|
gtk_clist_select_row(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
paths_dialog->current_path_list->last_selected_row,
|
1999-04-14 05:50:28 +08:00
|
|
|
1);
|
1999-03-06 07:50:24 +08:00
|
|
|
gtk_signal_handler_unblock(GTK_OBJECT(paths_dialog->paths_list),paths_dialog->selsigid);
|
|
|
|
|
|
|
|
gtk_clist_moveto(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
paths_dialog->current_path_list->last_selected_row,
|
|
|
|
0,
|
|
|
|
0.5,
|
|
|
|
0.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
paths_update_paths(gpointer data,gint row)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP bzp;
|
1999-03-06 07:50:24 +08:00
|
|
|
BezierSelect * bezier_sel;
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
paths_add_path((bzp = (PATHP)data),-1);
|
1999-03-06 07:50:24 +08:00
|
|
|
/* Now fudge the drawing....*/
|
1999-03-22 08:51:30 +08:00
|
|
|
bezier_sel = path_to_beziersel(bzp);
|
1999-03-06 07:50:24 +08:00
|
|
|
paths_dialog->current_path_list->last_selected_row = row;
|
|
|
|
paths_update_preview(bezier_sel);
|
|
|
|
beziersel_free(bezier_sel);
|
1999-04-14 05:50:28 +08:00
|
|
|
|
1999-07-08 03:09:52 +08:00
|
|
|
if (bzp->locked)
|
|
|
|
{
|
|
|
|
if (paths_dialog->selected_row_num == row)
|
|
|
|
gtk_clist_set_pixmap(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
row,
|
|
|
|
0,
|
|
|
|
paths_dialog->pixmap_locked_selected,
|
|
|
|
NULL);
|
|
|
|
else
|
|
|
|
gtk_clist_set_pixmap(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
row,
|
|
|
|
0,
|
|
|
|
paths_dialog->pixmap_locked_normal,
|
|
|
|
NULL);
|
|
|
|
}
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_rename_paths_callback(GtkWidget *widget, gpointer call_data, gpointer client_data)
|
|
|
|
{
|
|
|
|
gchar *text;
|
|
|
|
GdkBitmap *mask;
|
|
|
|
guint8 spacing;
|
|
|
|
GdkPixmap *pixmap;
|
|
|
|
|
|
|
|
if(!(GTK_CLIST(call_data)->selection))
|
|
|
|
return;
|
|
|
|
|
|
|
|
text = g_strdup(client_data);
|
|
|
|
|
|
|
|
gtk_clist_get_pixtext(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
paths_dialog->selected_row_num,
|
1999-04-14 05:50:28 +08:00
|
|
|
1,
|
1999-03-06 07:50:24 +08:00
|
|
|
NULL,
|
|
|
|
&spacing,
|
|
|
|
&pixmap,
|
|
|
|
&mask);
|
|
|
|
|
|
|
|
|
|
|
|
gtk_clist_set_pixtext(GTK_CLIST(call_data),
|
|
|
|
paths_dialog->selected_row_num,
|
1999-04-14 05:50:28 +08:00
|
|
|
1,
|
1999-03-06 07:50:24 +08:00
|
|
|
text,
|
|
|
|
spacing,
|
|
|
|
pixmap,
|
|
|
|
mask);
|
|
|
|
|
|
|
|
bz_change_name_row_to(paths_dialog->selected_row_num,text);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
paths_dialog_edit_path_query (GtkWidget *widget)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
GdkBitmap *mask;
|
1999-03-06 07:50:24 +08:00
|
|
|
gchar *text;
|
|
|
|
gint ret;
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
/* Get the current name */
|
new ui for the "Layer Offset" dialog.
1999-07-22 Michael Natterer <mitschel@cs.tu-berlin.de>
* app/channel_ops.[ch]: new ui for the "Layer Offset" dialog.
* app/channels_dialog.c
* app/layers_dialog.c: major code cleanup: Folded some callbacks
into common ones, "widget" instead of "w", indentation, ...
* app/commands.c
* app/interface.[ch]
* app/global_edit.c: the query boxes must be shown by the caller
now. There's no need to split up the string for the message box
manually as the Gtk 1.2 label widget handles newlines corectly.
Added the "edge_lock" toggle to the "Shrink Selection" dialog.
Nicer spacings for the query and message boxes.
* app/ink.c: tried to grab the pointer in the blob preview but
failed. Left the code there as a reminder (commented out).
* app/menus.c: reordered <Image>/Select.
I was bored and grep-ed the sources for ancient or deprecated stuff:
* app/about_dialog.[ch]
* app/actionarea.[ch]
* app/app_procs.c
* app/brush_edit.c
* app/brush_select.c
* app/color_select.c
* app/convert.c
* app/devices.c
* app/gdisplay.c
* app/gdisplay_ops.c
* app/histogram_tool.[ch]
* app/info_window.c
* app/install.c
* app/ops_buttons.c
* app/palette.c
* app/palette_select.c
* app/paths_dialog.c
* app/pattern_select.c
* app/resize.c
* app/scale_toolc.c
* app/text_tool.c:
s/container_border_width/container_set_border_width/g,
s/sprintf/g_snprintf/g, replaced some constant string lengths with
strlen(x).
* app/bezier_select.c
* app/blend.c
* app/boundary.c
* app/errors.[ch]
* app/free_select.c
* app/gimpbrushlist.c
* app/gimprc.c
* app/iscissors.c
* app/main.c
* app/patterns.[ch]
* app/text_tool.c: namespace fanaticism: prefixed all gimp error
functions with "gimp_" and formated the messages more uniformly.
* app/gradient.c
* app/gradient_select.c: same stuff as above for the ui
code. There are still some sub-dialogs which need cleanup.
Did some cleanup in most of these files: prototypes, removed tons
of #include's, i18n fixes, s/w/widget/ as above, indentation, ...
1999-07-23 00:21:10 +08:00
|
|
|
ret = gtk_clist_get_pixtext (GTK_CLIST (paths_dialog->paths_list),
|
|
|
|
paths_dialog->selected_row_num,
|
|
|
|
1,
|
|
|
|
&text,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
&mask);
|
|
|
|
|
|
|
|
gtk_widget_show (query_string_box (_("Rename path"),
|
|
|
|
_("Enter a new name for the path"),
|
|
|
|
text,
|
|
|
|
NULL, NULL,
|
|
|
|
do_rename_paths_callback, widget));
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
|
|
|
paths_list_events (GtkWidget *widget,
|
|
|
|
GdkEvent *event)
|
|
|
|
{
|
1999-04-14 05:50:28 +08:00
|
|
|
GdkEventKey *kevent;
|
1999-03-06 07:50:24 +08:00
|
|
|
GdkEventButton *bevent;
|
1999-04-14 05:50:28 +08:00
|
|
|
static gint last_row = -1;
|
|
|
|
gint this_colunm;
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
switch (event->type)
|
|
|
|
{
|
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
bevent = (GdkEventButton *) event;
|
|
|
|
if(!gtk_clist_get_selection_info (GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
bevent->x,
|
|
|
|
bevent->y,
|
1999-04-14 05:50:28 +08:00
|
|
|
&last_row,&this_colunm))
|
1999-03-06 07:50:24 +08:00
|
|
|
last_row = -1;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(paths_dialog->selected_row_num != last_row)
|
|
|
|
last_row = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bevent->button == 3 || bevent->button == 2)
|
|
|
|
gtk_menu_popup (GTK_MENU (paths_dialog->ops_menu), NULL, NULL, NULL, NULL, bevent->button, bevent->time);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_2BUTTON_PRESS:
|
|
|
|
bevent = (GdkEventButton *) event;
|
|
|
|
|
|
|
|
if(last_row != -1 &&
|
|
|
|
gtk_clist_get_selection_info (GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
bevent->x,
|
|
|
|
bevent->y,
|
1999-04-14 05:50:28 +08:00
|
|
|
NULL,&this_colunm))
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
1999-04-14 05:50:28 +08:00
|
|
|
if(this_colunm == 1)
|
|
|
|
{
|
|
|
|
paths_dialog_edit_path_query(widget);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return FALSE;
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
case GDK_KEY_PRESS:
|
|
|
|
kevent = (GdkEventKey *) event;
|
|
|
|
switch (kevent->keyval)
|
|
|
|
{
|
|
|
|
case GDK_Up:
|
|
|
|
printf ("up arrow\n");
|
|
|
|
break;
|
|
|
|
case GDK_Down:
|
|
|
|
printf ("down arrow\n");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PATHIMAGELISTP
|
1999-03-22 08:51:30 +08:00
|
|
|
path_add_to_current(PATHIMAGELISTP pip,PATHP bzp,GimpImage *gimage,gint pos)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
|
|
|
/* add bzp to current list */
|
|
|
|
if(!pip)
|
|
|
|
{
|
|
|
|
/* This image does not have a list */
|
|
|
|
pip = pathsList_new(gimage,0,NULL);
|
|
|
|
|
|
|
|
/* add to gimage */
|
|
|
|
gimp_image_set_paths(gimage,pip);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(pos < 0)
|
|
|
|
pip->bz_paths = g_slist_append(pip->bz_paths,bzp);
|
|
|
|
else
|
|
|
|
pip->bz_paths = g_slist_insert(pip->bz_paths,bzp,pos);
|
|
|
|
|
|
|
|
return pip;
|
|
|
|
}
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
static PATHP
|
1999-03-06 07:50:24 +08:00
|
|
|
paths_dialog_new_path(PATHIMAGELISTP *plp,gpointer points,GimpImage *gimage,gint pos)
|
|
|
|
{
|
|
|
|
static gint nseed = 0;
|
1999-04-06 07:33:50 +08:00
|
|
|
PATHP bzp = path_dialog_new(gimage,nseed++,points);
|
1999-03-22 08:51:30 +08:00
|
|
|
*plp = path_add_to_current(*plp,bzp,gimage,pos);
|
1999-03-06 07:50:24 +08:00
|
|
|
return(bzp);
|
|
|
|
}
|
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
void
|
1999-03-06 07:50:24 +08:00
|
|
|
paths_dialog_new_path_callback (GtkWidget * widget, gpointer udata)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP bzp = paths_dialog_new_path(&paths_dialog->current_path_list,
|
1999-03-06 07:50:24 +08:00
|
|
|
NULL,
|
|
|
|
paths_dialog->gimage,
|
|
|
|
paths_dialog->selected_row_num);
|
|
|
|
paths_add_path(bzp,paths_dialog->selected_row_num);
|
1999-03-22 08:51:30 +08:00
|
|
|
/* Enable the buttons!*/
|
|
|
|
paths_ops_button_set_sensitive(DUP_PATH_BUTTON,TRUE);
|
|
|
|
paths_ops_button_set_sensitive(DEL_PATH_BUTTON,TRUE);
|
|
|
|
paths_ops_button_set_sensitive(STROKE_PATH_BUTTON,TRUE);
|
|
|
|
paths_ops_button_set_sensitive(PATH_TO_SEL_BUTTON,TRUE);
|
1999-05-14 06:53:40 +08:00
|
|
|
paths_ops_button_set_sensitive(COPY_PATH_BUTTON,TRUE);
|
|
|
|
paths_ops_button_set_sensitive(PASTE_PATH_BUTTON,(copy_pp)?TRUE:FALSE);
|
1999-03-22 08:51:30 +08:00
|
|
|
point_ops_button_set_sensitive(POINT_NEW_BUTTON,TRUE);
|
|
|
|
point_ops_button_set_sensitive(POINT_DEL_BUTTON,TRUE);
|
|
|
|
point_ops_button_set_sensitive(POINT_ADD_BUTTON,TRUE);
|
|
|
|
point_ops_button_set_sensitive(POINT_EDIT_BUTTON,TRUE);
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
void
|
1999-03-06 07:50:24 +08:00
|
|
|
paths_dialog_delete_path_callback (GtkWidget * widget, gpointer udata)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP bzp;
|
1999-03-06 07:50:24 +08:00
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
gboolean new_sz;
|
|
|
|
gint row = paths_dialog->selected_row_num;
|
1999-09-25 07:01:10 +08:00
|
|
|
BezierSelect *bsel = NULL;
|
|
|
|
GDisplay *gdisp = NULL;
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
g_return_if_fail(paths_dialog->current_path_list != NULL);
|
|
|
|
|
|
|
|
/* Get current selection... ignore if none */
|
|
|
|
if(paths_dialog->selected_row_num < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Get bzpath structure & delete its content */
|
|
|
|
plp = paths_dialog->current_path_list;
|
1999-03-22 08:51:30 +08:00
|
|
|
bzp = (PATHP)g_slist_nth_data(plp->bz_paths,row);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
/* Remove from list */
|
|
|
|
plp->bz_paths = g_slist_remove(plp->bz_paths,bzp);
|
|
|
|
new_sz = (g_slist_length(plp->bz_paths) > 0);
|
1999-03-22 08:51:30 +08:00
|
|
|
path_free(bzp,NULL);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-07-11 20:08:01 +08:00
|
|
|
/* Remove from the clist ... */
|
|
|
|
gtk_signal_handler_block_by_data (GTK_OBJECT (paths_dialog->paths_list),
|
|
|
|
paths_dialog);
|
|
|
|
gtk_clist_remove (GTK_CLIST (paths_dialog->paths_list), row);
|
|
|
|
gtk_signal_handler_unblock_by_data (GTK_OBJECT (paths_dialog->paths_list),
|
|
|
|
paths_dialog);
|
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
/* If now empty free everything up */
|
|
|
|
if(!plp->bz_paths || g_slist_length(plp->bz_paths) == 0)
|
|
|
|
{
|
|
|
|
gtk_signal_disconnect(GTK_OBJECT (plp->gimage),
|
|
|
|
plp->sig_id);
|
1999-09-25 07:01:10 +08:00
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
gimp_image_set_paths(plp->gimage,NULL);
|
|
|
|
pathimagelist_free(plp);
|
1999-09-25 07:01:10 +08:00
|
|
|
|
|
|
|
/* Paste an empty BezierSelect to the current display to emulate an empty path list */
|
|
|
|
|
|
|
|
bsel = (g_new0 (BezierSelect,1));
|
|
|
|
bezier_select_reset(bsel);
|
|
|
|
gdisp = gdisplays_check_valid(paths_dialog->current_path_list->gdisp,
|
|
|
|
paths_dialog->gimage);
|
|
|
|
|
|
|
|
bezier_paste_bezierselect_to_current(gdisp,bsel);
|
|
|
|
beziersel_free(bsel);
|
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
paths_dialog->current_path_list = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
paths_ops_button_set_sensitive(DUP_PATH_BUTTON,new_sz);
|
|
|
|
paths_ops_button_set_sensitive(DEL_PATH_BUTTON,new_sz);
|
|
|
|
paths_ops_button_set_sensitive(STROKE_PATH_BUTTON,new_sz);
|
1999-03-13 06:04:30 +08:00
|
|
|
paths_ops_button_set_sensitive(PATH_TO_SEL_BUTTON,new_sz);
|
1999-05-14 06:53:40 +08:00
|
|
|
paths_ops_button_set_sensitive(COPY_PATH_BUTTON,new_sz);
|
|
|
|
paths_ops_button_set_sensitive(PASTE_PATH_BUTTON,new_sz);
|
1999-03-06 07:50:24 +08:00
|
|
|
point_ops_button_set_sensitive(POINT_ADD_BUTTON,new_sz);
|
|
|
|
point_ops_button_set_sensitive(POINT_DEL_BUTTON,new_sz);
|
|
|
|
point_ops_button_set_sensitive(POINT_NEW_BUTTON,new_sz);
|
|
|
|
point_ops_button_set_sensitive(POINT_EDIT_BUTTON,new_sz);
|
|
|
|
}
|
|
|
|
|
1999-05-14 06:53:40 +08:00
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
void
|
1999-05-14 06:53:40 +08:00
|
|
|
paths_dialog_paste_path_callback (GtkWidget * widget, gpointer udata)
|
|
|
|
{
|
|
|
|
PATHP bzp;
|
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
PATHPOINTP pp;
|
|
|
|
BezierSelect * bezier_sel;
|
|
|
|
gint tmprow;
|
|
|
|
GDisplay *gdisp;
|
|
|
|
|
|
|
|
gint row = paths_dialog->selected_row_num;
|
|
|
|
|
|
|
|
g_return_if_fail(paths_dialog->current_path_list != NULL);
|
|
|
|
|
|
|
|
if(!copy_pp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Get current selection... ignore if none */
|
|
|
|
if(paths_dialog->selected_row_num < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Get bzpath structure */
|
|
|
|
plp = paths_dialog->current_path_list;
|
|
|
|
if(!plp)
|
|
|
|
return;
|
|
|
|
bzp = (PATHP)g_slist_nth_data(plp->bz_paths,row);
|
|
|
|
|
|
|
|
if(bzp->path_details)
|
|
|
|
{
|
|
|
|
pp = bzp->path_details->data;
|
|
|
|
pp->type = BEZIER_MOVE;
|
|
|
|
bzp->path_details = g_slist_concat(copy_pp->path_details,bzp->path_details);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bzp->closed = TRUE;
|
|
|
|
bzp->path_details = copy_pp->path_details;
|
|
|
|
bzp->state = copy_pp->state;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* First point on new curve is a moveto */
|
|
|
|
copy_pp->path_details = NULL;
|
|
|
|
path_free(copy_pp,NULL);
|
|
|
|
copy_pp = NULL;
|
|
|
|
|
|
|
|
paths_ops_button_set_sensitive(PASTE_PATH_BUTTON,FALSE);
|
|
|
|
|
|
|
|
/* Now fudge the drawing....*/
|
|
|
|
bezier_sel = path_to_beziersel(bzp);
|
|
|
|
tmprow = paths_dialog->current_path_list->last_selected_row;
|
|
|
|
paths_dialog->current_path_list->last_selected_row = row;
|
|
|
|
gdisp = gdisplays_check_valid(paths_dialog->current_path_list->gdisp,
|
|
|
|
paths_dialog->gimage);
|
|
|
|
bezier_paste_bezierselect_to_current(gdisp,bezier_sel);
|
|
|
|
paths_update_preview(bezier_sel);
|
|
|
|
beziersel_free(bezier_sel);
|
|
|
|
paths_dialog->current_path_list->last_selected_row = tmprow;
|
|
|
|
}
|
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
void
|
1999-05-14 06:53:40 +08:00
|
|
|
paths_dialog_copy_path_callback (GtkWidget * widget, gpointer udata)
|
|
|
|
{
|
|
|
|
PATHP bzp;
|
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
gint row = paths_dialog->selected_row_num;
|
|
|
|
|
|
|
|
g_return_if_fail(paths_dialog->current_path_list != NULL);
|
|
|
|
|
|
|
|
/* Get current selection... ignore if none */
|
|
|
|
if(paths_dialog->selected_row_num < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Get bzpath structure */
|
|
|
|
plp = paths_dialog->current_path_list;
|
|
|
|
bzp = (PATHP)g_slist_nth_data(plp->bz_paths,row);
|
|
|
|
|
|
|
|
if(!bzp->path_details || g_slist_length(bzp->path_details) <= 5)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* And store in static array */
|
|
|
|
copy_pp = path_copy(paths_dialog->gimage,bzp);
|
|
|
|
|
|
|
|
/* All paths that are in the cut buffer must be closed */
|
|
|
|
if(!copy_pp->closed)
|
|
|
|
path_close(copy_pp);
|
|
|
|
|
|
|
|
paths_ops_button_set_sensitive(PASTE_PATH_BUTTON,TRUE);
|
|
|
|
}
|
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
void
|
1999-03-06 07:50:24 +08:00
|
|
|
paths_dialog_dup_path_callback (GtkWidget * widget, gpointer udata)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP bzp;
|
1999-03-06 07:50:24 +08:00
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
BezierSelect * bezier_sel;
|
|
|
|
gint row = paths_dialog->selected_row_num;
|
|
|
|
gint tmprow;
|
|
|
|
|
|
|
|
g_return_if_fail(paths_dialog->current_path_list != NULL);
|
|
|
|
|
|
|
|
/* Get current selection... ignore if none */
|
|
|
|
if(paths_dialog->selected_row_num < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Get bzpath structure */
|
|
|
|
plp = paths_dialog->current_path_list;
|
1999-03-22 08:51:30 +08:00
|
|
|
bzp = (PATHP)g_slist_nth_data(plp->bz_paths,row);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
/* Insert at the current position */
|
1999-04-06 07:33:50 +08:00
|
|
|
bzp = path_copy(paths_dialog->gimage,bzp);
|
1999-03-06 07:50:24 +08:00
|
|
|
plp->bz_paths = g_slist_insert(plp->bz_paths,bzp,row);
|
|
|
|
paths_add_path(bzp,row);
|
|
|
|
|
|
|
|
/* Now fudge the drawing....*/
|
1999-03-22 08:51:30 +08:00
|
|
|
bezier_sel = path_to_beziersel(bzp);
|
1999-03-06 07:50:24 +08:00
|
|
|
tmprow = paths_dialog->current_path_list->last_selected_row;
|
|
|
|
paths_dialog->current_path_list->last_selected_row = row;
|
|
|
|
paths_update_preview(bezier_sel);
|
|
|
|
beziersel_free(bezier_sel);
|
|
|
|
paths_dialog->current_path_list->last_selected_row = tmprow;
|
|
|
|
}
|
|
|
|
|
1999-07-10 05:52:00 +08:00
|
|
|
static void paths_dialog_advanced_to_path_callback (GtkWidget *widget,
|
|
|
|
gpointer udata)
|
|
|
|
{
|
|
|
|
ProcRecord *proc_rec;
|
|
|
|
Argument *args;
|
|
|
|
GimpImage *gimage;
|
|
|
|
|
|
|
|
/* find the sel2path PDB record */
|
|
|
|
if ((proc_rec = procedural_db_lookup ("plug_in_sel2path_advanced")) == NULL)
|
|
|
|
{
|
1999-09-23 19:49:16 +08:00
|
|
|
g_message ("paths_dialog_adavanced_to_path_callback(): selection to path (advanced) procedure lookup failed");
|
1999-07-10 05:52:00 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gimage = paths_dialog->gimage;
|
|
|
|
|
|
|
|
/* plug-in arguments as if called by <Image>/Filters/... */
|
|
|
|
args = g_new (Argument, 3);
|
|
|
|
args[0].arg_type = PDB_INT32;
|
|
|
|
args[0].value.pdb_int = RUN_INTERACTIVE;
|
|
|
|
args[1].arg_type = PDB_IMAGE;
|
|
|
|
args[1].value.pdb_int = (gint32) pdb_image_to_id (gimage);
|
|
|
|
args[2].arg_type = PDB_DRAWABLE;
|
|
|
|
args[2].value.pdb_int = (gint32) (gimage_active_drawable (gimage))->ID;
|
|
|
|
|
|
|
|
plug_in_run (proc_rec, args, 3, FALSE, TRUE, (gimage_active_drawable (gimage))->ID);
|
|
|
|
|
|
|
|
g_free (args);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void paths_dialog_null_callback (GtkWidget *widget,
|
|
|
|
gpointer udata)
|
|
|
|
{
|
|
|
|
/* Maybe some more here later? */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
paths_dialog_sel_to_path_callback (GtkWidget * widget, gpointer udata)
|
|
|
|
{
|
|
|
|
ProcRecord *proc_rec;
|
|
|
|
Argument *args;
|
|
|
|
GimpImage *gimage;
|
|
|
|
|
|
|
|
/* find the sel2path PDB record */
|
|
|
|
if ((proc_rec = procedural_db_lookup ("plug_in_sel2path")) == NULL)
|
|
|
|
{
|
1999-09-23 19:49:16 +08:00
|
|
|
g_message ("paths_dialog_sel_to_path_callback(): selection to path procedure lookup failed");
|
1999-07-10 05:52:00 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gimage = paths_dialog->gimage;
|
|
|
|
|
|
|
|
/* plug-in arguments as if called by <Image>/Filters/... */
|
|
|
|
args = g_new (Argument, 3);
|
|
|
|
args[0].arg_type = PDB_INT32;
|
|
|
|
args[0].value.pdb_int = RUN_INTERACTIVE;
|
|
|
|
args[1].arg_type = PDB_IMAGE;
|
|
|
|
args[1].value.pdb_int = (gint32) pdb_image_to_id (gimage);
|
|
|
|
args[2].arg_type = PDB_DRAWABLE;
|
|
|
|
args[2].value.pdb_int = (gint32) (gimage_active_drawable (gimage))->ID;
|
|
|
|
|
|
|
|
plug_in_run (proc_rec, args, 3, FALSE, TRUE, (gimage_active_drawable (gimage))->ID);
|
|
|
|
|
|
|
|
g_free (args);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
void
|
1999-03-06 07:50:24 +08:00
|
|
|
paths_dialog_path_to_sel_callback (GtkWidget * widget, gpointer udata)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP bzp;
|
1999-03-06 07:50:24 +08:00
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
BezierSelect * bezier_sel;
|
|
|
|
GDisplay * gdisp;
|
|
|
|
gint row = paths_dialog->selected_row_num;
|
|
|
|
|
|
|
|
g_return_if_fail(paths_dialog->current_path_list != NULL);
|
|
|
|
|
|
|
|
/* Get current selection... ignore if none */
|
|
|
|
if(paths_dialog->selected_row_num < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Get bzpath structure */
|
|
|
|
plp = paths_dialog->current_path_list;
|
1999-03-22 08:51:30 +08:00
|
|
|
bzp = (PATHP)g_slist_nth_data(plp->bz_paths,row);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-06-06 21:24:26 +08:00
|
|
|
/* Return if no point list */
|
|
|
|
if (!bzp->path_details)
|
|
|
|
return;
|
|
|
|
|
1999-04-14 05:50:28 +08:00
|
|
|
/* Now do the selection....*/
|
1999-03-06 07:50:24 +08:00
|
|
|
gdisp = gdisplays_check_valid(paths_dialog->current_path_list->gdisp,
|
|
|
|
paths_dialog->gimage);
|
|
|
|
|
|
|
|
if(!bzp->closed)
|
|
|
|
{
|
1999-04-06 07:33:50 +08:00
|
|
|
PATHP bzpcopy = path_copy(paths_dialog->gimage,bzp);
|
1999-03-06 07:50:24 +08:00
|
|
|
/* Close it */
|
1999-03-22 08:51:30 +08:00
|
|
|
path_close(bzpcopy);
|
|
|
|
bezier_sel = path_to_beziersel(bzpcopy);
|
|
|
|
path_free(bzpcopy,NULL);
|
1999-03-06 07:50:24 +08:00
|
|
|
bezier_to_selection (bezier_sel, gdisp);
|
|
|
|
beziersel_free(bezier_sel);
|
1999-04-14 05:50:28 +08:00
|
|
|
|
|
|
|
/* Force display to show no closed curve */
|
|
|
|
bezier_sel = path_to_beziersel(bzp);
|
|
|
|
bezier_paste_bezierselect_to_current(gdisp,bezier_sel);
|
|
|
|
beziersel_free(bezier_sel);
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
bezier_sel = path_to_beziersel(bzp);
|
1999-03-06 07:50:24 +08:00
|
|
|
bezier_to_selection (bezier_sel, gdisp);
|
|
|
|
beziersel_free(bezier_sel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
void
|
1999-03-06 07:50:24 +08:00
|
|
|
paths_dialog_stroke_path_callback (GtkWidget * widget, gpointer udata)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP bzp;
|
1999-03-06 07:50:24 +08:00
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
gint row = paths_dialog->selected_row_num;
|
|
|
|
|
|
|
|
g_return_if_fail(paths_dialog->current_path_list != NULL);
|
|
|
|
|
|
|
|
/* Get current selection... ignore if none */
|
|
|
|
if(paths_dialog->selected_row_num < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Get bzpath structure */
|
|
|
|
plp = paths_dialog->current_path_list;
|
1999-03-22 08:51:30 +08:00
|
|
|
bzp = (PATHP)g_slist_nth_data(plp->bz_paths,row);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
/* Now do the stroke....*/
|
1999-03-22 08:51:30 +08:00
|
|
|
paths_stroke(paths_dialog->gimage,paths_dialog->current_path_list,bzp);
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
paths_dialog_map_callback (GtkWidget *w,
|
|
|
|
gpointer client_data)
|
|
|
|
{
|
|
|
|
if (!paths_dialog)
|
|
|
|
return;
|
1999-03-13 06:04:30 +08:00
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
gtk_window_add_accel_group (GTK_WINDOW (lc_dialog->shell),
|
1999-03-06 07:50:24 +08:00
|
|
|
paths_dialog->accel_group);
|
|
|
|
|
|
|
|
paths_dialog_preview_extents ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
paths_dialog_unmap_callback (GtkWidget *w,
|
|
|
|
gpointer client_data)
|
|
|
|
{
|
|
|
|
if (!paths_dialog)
|
|
|
|
return;
|
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
gtk_window_remove_accel_group (GTK_WINDOW (lc_dialog->shell),
|
1999-03-06 07:50:24 +08:00
|
|
|
paths_dialog->accel_group);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
paths_dialog_destroy_cb (GimpImage *gimage)
|
|
|
|
{
|
|
|
|
PATHIMAGELISTP new_path_list;
|
|
|
|
|
|
|
|
if(!paths_dialog)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(paths_dialog->current_path_list &&
|
|
|
|
gimage == paths_dialog->current_path_list->gimage)
|
|
|
|
{
|
|
|
|
/* showing could be last so remove here.. might get
|
|
|
|
done again if not the last one
|
|
|
|
*/
|
|
|
|
paths_dialog->current_path_list = NULL;
|
|
|
|
paths_dialog->been_selected = FALSE;
|
|
|
|
gtk_clist_freeze(GTK_CLIST(paths_dialog->paths_list));
|
|
|
|
gtk_clist_clear(GTK_CLIST(paths_dialog->paths_list));
|
|
|
|
gtk_clist_thaw(GTK_CLIST(paths_dialog->paths_list));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find bz list */
|
|
|
|
new_path_list = (PATHIMAGELISTP)gimp_image_get_paths(gimage);
|
|
|
|
|
|
|
|
if(!new_path_list)
|
|
|
|
return; /* Already removed - signal handler jsut left in the air */
|
|
|
|
|
|
|
|
pathimagelist_free(new_path_list);
|
|
|
|
|
|
|
|
gimp_image_set_paths(gimage,NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Functions used from the bezier code .. tie in with this code */
|
|
|
|
|
|
|
|
static void
|
1999-03-22 08:51:30 +08:00
|
|
|
pathpoints_free(GSList *list)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
|
|
|
if(!list)
|
|
|
|
return;
|
1999-03-22 08:51:30 +08:00
|
|
|
g_slist_foreach(list,pathpoint_free,NULL);
|
1999-03-06 07:50:24 +08:00
|
|
|
g_slist_free(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GSList *
|
1999-03-22 08:51:30 +08:00
|
|
|
pathpoints_create(BezierSelect *sel)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
GSList *list = NULL;
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHPOINTP pathpoint;
|
1999-03-06 07:50:24 +08:00
|
|
|
BezierPoint *pts = (BezierPoint *) sel->points;
|
1999-05-14 06:53:40 +08:00
|
|
|
BezierPoint *start_pnt = pts;
|
|
|
|
gint need_move = 0;
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
for (i=0; i< sel->num_points; i++)
|
|
|
|
{
|
1999-05-14 06:53:40 +08:00
|
|
|
pathpoint = pathpoint_new((need_move)?BEZIER_MOVE:pts->type,
|
|
|
|
(gdouble)pts->x,(gdouble)pts->y);
|
|
|
|
need_move = 0;
|
1999-03-22 08:51:30 +08:00
|
|
|
list = g_slist_append(list,pathpoint);
|
1999-05-14 06:53:40 +08:00
|
|
|
if(pts->next_curve)
|
|
|
|
{
|
|
|
|
/* The curve must loop back on itself */
|
|
|
|
if(start_pnt != pts->next)
|
|
|
|
g_warning("Curve of of sync");
|
|
|
|
|
|
|
|
need_move = 1;
|
|
|
|
pts = pts->next_curve;
|
|
|
|
start_pnt = pts;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pts = pts->next;
|
|
|
|
}
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
return(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GSList *
|
1999-03-22 08:51:30 +08:00
|
|
|
pathpoints_copy(GSList *list)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
|
|
|
GSList *slcopy = NULL;
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHPOINTP pdata;
|
|
|
|
PATHPOINTP pathpoint;
|
1999-03-06 07:50:24 +08:00
|
|
|
while(list)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
pathpoint = g_new0(PATHPOINT,1);
|
|
|
|
pdata = (PATHPOINTP)list->data;
|
|
|
|
pathpoint->type = pdata->type;
|
|
|
|
pathpoint->x = pdata->x;
|
|
|
|
pathpoint->y = pdata->y;
|
|
|
|
slcopy = g_slist_append(slcopy,pathpoint);
|
1999-03-06 07:50:24 +08:00
|
|
|
list = g_slist_next(list);
|
|
|
|
}
|
|
|
|
return slcopy;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
paths_update_bzpath(PATHIMAGELISTP plp,BezierSelect *bezier_sel)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP p;
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
p = (PATHP)g_slist_nth_data(plp->bz_paths,plp->last_selected_row);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
if(p->path_details)
|
|
|
|
pathpoints_free(p->path_details);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
p->path_details = pathpoints_create(bezier_sel);
|
|
|
|
p->closed = bezier_sel->closed;
|
|
|
|
p->state = bezier_sel->state;
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
paths_replaced_current(PATHIMAGELISTP plp,BezierSelect *bezier_sel)
|
|
|
|
{
|
|
|
|
/* Is there a currently selected path in this image? */
|
1999-03-13 06:04:30 +08:00
|
|
|
/* ALT if(paths_dialog && plp && */
|
|
|
|
if(plp &&
|
1999-03-06 07:50:24 +08:00
|
|
|
plp->last_selected_row >= 0)
|
|
|
|
{
|
|
|
|
paths_update_bzpath(plp,bezier_sel);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
1999-05-14 06:53:40 +08:00
|
|
|
static gint
|
|
|
|
number_curves_in_path(GSList *plist)
|
|
|
|
{
|
|
|
|
gint count = 0;
|
|
|
|
while(plist)
|
|
|
|
{
|
|
|
|
if(((PATHPOINTP)(plist->data))->type == BEZIER_MOVE &&
|
|
|
|
g_slist_next(plist))
|
|
|
|
{
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
plist = g_slist_next(plist);
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
static void
|
|
|
|
paths_draw_segment_points(BezierSelect *bezier_sel,
|
1999-04-06 07:33:50 +08:00
|
|
|
GdkPoint *pnt,
|
|
|
|
int npoints,
|
|
|
|
gpointer udata)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* hopefully the image points are already in image space co-ords.
|
|
|
|
* so just scale by ratio factor and draw 'em
|
|
|
|
*/
|
|
|
|
gint loop;
|
|
|
|
gint pcount = 0;
|
|
|
|
GdkPoint * copy_pnt = g_new(GdkPoint,npoints);
|
|
|
|
GdkPoint * cur_pnt = copy_pnt;
|
|
|
|
GdkPoint * last_pnt = NULL;
|
|
|
|
PATHWIDGETP pwidget;
|
|
|
|
gint row;
|
1999-05-14 06:53:40 +08:00
|
|
|
PATHCOUNTSP curve_count = (PATHCOUNTSP)udata;
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
/* we could remove duplicate points here */
|
|
|
|
|
|
|
|
for(loop = 0; loop < npoints; loop++)
|
|
|
|
{
|
|
|
|
/* The "2" is because we have a boarder */
|
|
|
|
cur_pnt->x = 2+(int) (paths_dialog->ratio * pnt->x);
|
|
|
|
cur_pnt->y = 2+(int) (paths_dialog->ratio * pnt->y);
|
|
|
|
pnt++;
|
|
|
|
if(last_pnt &&
|
|
|
|
last_pnt->x == cur_pnt->x &&
|
|
|
|
last_pnt->y == cur_pnt->y)
|
|
|
|
{
|
|
|
|
/* same as last ... don't need this one */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* printf("converting %d [%d,%d] => [%d,%d]\n", */
|
|
|
|
/* pcount,(int)pnt->x,(int)pnt->y,(int)cur_pnt->x,(int)cur_pnt->y); */
|
|
|
|
last_pnt = cur_pnt;
|
|
|
|
pcount++;
|
|
|
|
cur_pnt++;
|
|
|
|
}
|
|
|
|
|
|
|
|
row = paths_dialog->current_path_list->last_selected_row;
|
|
|
|
|
|
|
|
pwidget = (PATHWIDGETP)gtk_clist_get_row_data(GTK_CLIST(paths_dialog->paths_list),row);
|
|
|
|
|
1999-07-15 00:02:32 +08:00
|
|
|
if(pcount < 2)
|
1999-03-06 07:50:24 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
g_return_if_fail(pwidget != NULL);
|
|
|
|
|
1999-05-14 06:53:40 +08:00
|
|
|
if(curve_count->c_count.count < curve_count->total_count ||
|
|
|
|
bezier_sel->closed)
|
|
|
|
paths_set_dash_line(paths_dialog->gc,FALSE);
|
|
|
|
else
|
|
|
|
paths_set_dash_line(paths_dialog->gc,TRUE);
|
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
gdk_draw_lines (pwidget->paths_pixmap,
|
|
|
|
paths_dialog->gc, copy_pnt, pcount);
|
|
|
|
|
|
|
|
g_free(copy_pnt);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
paths_update_preview(BezierSelect *bezier_sel)
|
|
|
|
{
|
|
|
|
gint row;
|
1999-05-14 06:53:40 +08:00
|
|
|
PATHCOUNTS curve_count;
|
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
if(paths_dialog &&
|
|
|
|
paths_dialog->current_path_list &&
|
|
|
|
(row = paths_dialog->current_path_list->last_selected_row) >= 0 &&
|
|
|
|
preview_size)
|
|
|
|
{
|
|
|
|
PATHWIDGETP pwidget;
|
|
|
|
pwidget = (PATHWIDGETP)gtk_clist_get_row_data(GTK_CLIST(paths_dialog->paths_list),row);
|
|
|
|
|
|
|
|
/* Clear pixmap */
|
|
|
|
clear_pixmap_preview(pwidget);
|
|
|
|
|
1999-05-14 06:53:40 +08:00
|
|
|
curve_count.total_count = number_curves_in_path(pwidget->bzp->path_details);
|
1999-03-06 07:50:24 +08:00
|
|
|
/* update .. */
|
1999-05-14 06:53:40 +08:00
|
|
|
bezier_draw_curve (bezier_sel,paths_draw_segment_points,IMAGE_COORDS,&curve_count);
|
1999-03-13 06:04:30 +08:00
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
/* update the pixmap */
|
1999-03-13 06:04:30 +08:00
|
|
|
|
1999-03-06 07:50:24 +08:00
|
|
|
gtk_clist_set_pixtext(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
row,
|
1999-04-14 05:50:28 +08:00
|
|
|
1,
|
1999-03-06 07:50:24 +08:00
|
|
|
pwidget->bzp->name->str,
|
|
|
|
2,
|
|
|
|
pwidget->paths_pixmap,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
paths_dialog_new_point_callback (GtkWidget * widget, gpointer udata)
|
|
|
|
{
|
|
|
|
bezier_select_mode(EXTEND_NEW);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
paths_dialog_add_point_callback (GtkWidget * widget, gpointer udata)
|
|
|
|
{
|
|
|
|
bezier_select_mode(EXTEND_ADD);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
paths_dialog_delete_point_callback (GtkWidget * widget, gpointer udata)
|
|
|
|
{
|
|
|
|
bezier_select_mode(EXTEND_REMOVE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
paths_dialog_edit_point_callback (GtkWidget * widget, gpointer udata)
|
|
|
|
{
|
|
|
|
bezier_select_mode(EXTEND_EDIT);
|
|
|
|
}
|
|
|
|
|
1999-05-15 07:16:58 +08:00
|
|
|
void
|
|
|
|
paths_dialog_flush()
|
|
|
|
{
|
|
|
|
GImage *gimage;
|
|
|
|
|
|
|
|
if (!paths_dialog)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!(gimage = paths_dialog->gimage))
|
|
|
|
return;
|
|
|
|
|
|
|
|
gimage = paths_dialog->gimage;
|
|
|
|
|
1999-07-07 05:19:34 +08:00
|
|
|
/* Check current_path_list since we might not have a valid preview.
|
|
|
|
* which means it should be removed.. Or if we have one
|
|
|
|
* created it!
|
|
|
|
*/
|
|
|
|
if ((paths_dialog->current_path_list == NULL) ||
|
|
|
|
(gimage->width != paths_dialog->gimage_width) ||
|
1999-05-15 07:16:58 +08:00
|
|
|
(gimage->height != paths_dialog->gimage_height))
|
|
|
|
{
|
|
|
|
paths_dialog->gimage = NULL;
|
|
|
|
paths_dialog_update(gimage);
|
|
|
|
}
|
|
|
|
}
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
paths_first_button_press(BezierSelect *bezier_sel,GDisplay * gdisp)
|
|
|
|
{
|
|
|
|
/* First time a button is pressed in this display */
|
|
|
|
/* We have two choices here
|
|
|
|
Either:-
|
|
|
|
1) We already have a paths item in the list.
|
|
|
|
=> In this case the new one replaces the current entry. We
|
|
|
|
need a callback into the bezier code to free things up.
|
|
|
|
2) We don't have an entry.
|
|
|
|
=> Create a new one and add this curve.
|
|
|
|
|
|
|
|
In either case we need to update the preview widget..
|
|
|
|
|
|
|
|
All this of course depends on the fact that gdisp is the same
|
|
|
|
as before.
|
|
|
|
*/
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP bzp;
|
1999-03-06 07:50:24 +08:00
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
|
1999-03-13 06:04:30 +08:00
|
|
|
if(paths_dialog)
|
|
|
|
{
|
|
|
|
paths_dialog->been_selected = FALSE;
|
|
|
|
/*ALT return;*/
|
|
|
|
}
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
/* Button not pressed in this image...
|
|
|
|
* find which one it was pressed in if any.
|
|
|
|
*/
|
|
|
|
plp = (PATHIMAGELISTP)gimp_image_get_paths(gdisp->gimage);
|
|
|
|
|
|
|
|
/* Since beziers are part of the save format.. make the image dirty */
|
Honest, guv, it's not a feature - it's a tightly integrated package of
Mon Sep 20 12:51:30 EDT 1999 Austin Donnelly <austin@gimp.org>
Honest, guv, it's not a feature - it's a tightly integrated
package of undo system cleanups and fixes.
NEW FILES:
* app/undo_history.c: window showing recent undo (and redo) steps
available.
* app/undo_types.h: broken out of undo.h to fix circular includes.
MODIFIED FILES:
* app/Makefile.am: compile undo_history.c
* app/channel.h: use enum for channel undo type, not just magic
numbers.
* app/layer.h: same for layer undos.
* app/commands.c: edit_show_undo_history_cmd_callback() function to
pull up undo history window.
* app/commands.h: prototype for above.
* app/gdisplay.c: make undo / redo menu items sensitive according
to whether they would do anything. Would be easy to change
the text to say what would be undone/redone, but I don't know
the GTK.
* app/gimpimage.c: new signal emitted by gimage:
UNDO_EVENT. gimp_image_undo_event() function to emit it.
* app/gimpimage.h: prototype for above.
* app/gimpimageP.h: pushing_undo_group member is now an undo_type,
not an int. Keep undo history widget here too (if created).
* app/menus.c: add "Edit/Undo history..." to image menu.
* app/undo.c: new types: enums undo_type and undo_state rather than
ints and magic numbers. All undo_pop_* and undo_free_*
functions made static. New static function
undo_type_to_name(). Issue undo event signals on various
important events (eg undo pushed, undo popped etc).
undo_push() now takes a "dirties_image" arg to say whether
image should be dirtied. Layer moves now dirty the image. A
couple of g_return_if_fails () on undo_pop and undo_redo to
assert we're not in the middle of an undo group.
undo_get_{undo,redo}_name() to peek at names of top items on
undo and redo stacks resp. undo_map_over_{undo,redo}_stack()
to run a function for each item or group on stack. Layer and
channel undos use symbolic names rather than 0 or 1. Array
mapping undo types to names.
* app/undo.h: split out undo types to undo_types.h. Prototypes
for functions described above. undo_event_t enum.
undo_history_new() prototype lives here too.
Random other fixes:
* app/gimpdrawable.c
* app/image_render.c: default labels in switches to keep egcs happy.
* app/nav_window.c: some fixes to (sort of) cope with image res !=
screen res. Still needs work to handle non-square pixels
properly.
* app/paths_dialog.c: bad idea to call gimp_image_dirty()
directly. Even though it's currently commented out.
1999-09-21 01:15:20 +08:00
|
|
|
/* undo_push_cantundo(gdisp->gimage, _("path modification")); */
|
1999-03-06 07:50:24 +08:00
|
|
|
|
|
|
|
if(!paths_replaced_current(plp,bezier_sel))
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
bzp = paths_dialog_new_path(&plp,pathpoints_create(bezier_sel),gdisp->gimage,-1);
|
1999-03-06 07:50:24 +08:00
|
|
|
bzp->closed = bezier_sel->closed;
|
|
|
|
bzp->state = bezier_sel->state;
|
1999-03-13 06:04:30 +08:00
|
|
|
if(paths_dialog && paths_dialog->gimage == gdisp->gimage)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
|
|
|
paths_dialog->current_path_list = plp;
|
|
|
|
paths_add_path(bzp,-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
paths_newpoint_current(BezierSelect *bezier_sel,GDisplay * gdisp)
|
|
|
|
{
|
|
|
|
/* Check if currently showing the paths we are updating */
|
|
|
|
if(paths_dialog &&
|
|
|
|
gdisp->gimage == paths_dialog->gimage)
|
|
|
|
{
|
|
|
|
/* Enable the buttons!*/
|
|
|
|
paths_ops_button_set_sensitive(DUP_PATH_BUTTON,TRUE);
|
|
|
|
paths_ops_button_set_sensitive(DEL_PATH_BUTTON,TRUE);
|
|
|
|
paths_ops_button_set_sensitive(STROKE_PATH_BUTTON,TRUE);
|
1999-03-13 06:04:30 +08:00
|
|
|
paths_ops_button_set_sensitive(PATH_TO_SEL_BUTTON,TRUE);
|
1999-05-14 06:53:40 +08:00
|
|
|
paths_ops_button_set_sensitive(COPY_PATH_BUTTON,TRUE);
|
|
|
|
paths_ops_button_set_sensitive(PASTE_PATH_BUTTON,(copy_pp)?TRUE:FALSE);
|
1999-03-06 07:50:24 +08:00
|
|
|
point_ops_button_set_sensitive(POINT_NEW_BUTTON,TRUE);
|
|
|
|
point_ops_button_set_sensitive(POINT_DEL_BUTTON,TRUE);
|
|
|
|
point_ops_button_set_sensitive(POINT_ADD_BUTTON,TRUE);
|
|
|
|
point_ops_button_set_sensitive(POINT_EDIT_BUTTON,TRUE);
|
|
|
|
paths_update_preview(bezier_sel);
|
|
|
|
}
|
|
|
|
|
|
|
|
paths_first_button_press(bezier_sel,gdisp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
paths_new_bezier_select_tool()
|
|
|
|
{
|
|
|
|
if(paths_dialog)
|
|
|
|
paths_dialog->been_selected = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************/
|
|
|
|
/* Code to serialise the bezier curves.
|
|
|
|
* The curves will be saved out in XCF property format.
|
|
|
|
* The "save as XCF format" will prompt to save the curves away.
|
|
|
|
*
|
|
|
|
* Note the save should really used PDB function to get the
|
|
|
|
* curves etc. But I have yet to do those 8-)
|
|
|
|
*/
|
|
|
|
/**************************************************************/
|
|
|
|
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHPOINTP
|
|
|
|
pathpoint_new(gint type,
|
|
|
|
gdouble x,
|
|
|
|
gdouble y)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHPOINTP pathpoint = g_new0(PATHPOINT,1);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
pathpoint->type = type;
|
|
|
|
pathpoint->x = x;
|
|
|
|
pathpoint->y = y;
|
|
|
|
return(pathpoint);
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP
|
1999-04-06 07:33:50 +08:00
|
|
|
path_new(GimpImage *gimage,
|
|
|
|
PathType ptype,
|
|
|
|
GSList *path_details,
|
|
|
|
gint closed,
|
|
|
|
gint state,
|
|
|
|
gint locked,
|
|
|
|
gint tattoo,
|
|
|
|
gchar *name)
|
1999-03-06 07:50:24 +08:00
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP path = g_new0(PATH,1);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
path->path_details = path_details;
|
|
|
|
path->closed = closed;
|
|
|
|
path->state = state;
|
|
|
|
path->locked = locked;
|
|
|
|
path->name = g_string_new(name);
|
|
|
|
path->pathtype = ptype;
|
1999-04-06 07:33:50 +08:00
|
|
|
if(tattoo)
|
|
|
|
path->tattoo = tattoo;
|
|
|
|
else
|
|
|
|
path->tattoo = gimp_image_get_new_tattoo(gimage);
|
1999-03-06 07:50:24 +08:00
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
return path;
|
1999-03-06 07:50:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
PathsList *
|
|
|
|
pathsList_new(GimpImage * gimage,
|
|
|
|
gint last_selected_row,
|
|
|
|
GSList * bz_paths)
|
|
|
|
{
|
|
|
|
PATHIMAGELISTP pip = g_new0(PATHIMAGELIST,1);
|
|
|
|
pip->gimage = gimage;
|
|
|
|
pip->last_selected_row = last_selected_row;
|
|
|
|
|
|
|
|
/* add connector to image delete/destroy */
|
|
|
|
pip->sig_id = gtk_signal_connect(GTK_OBJECT (gimage),
|
|
|
|
"destroy",
|
|
|
|
GTK_SIGNAL_FUNC (paths_dialog_destroy_cb),
|
|
|
|
pip);
|
|
|
|
|
|
|
|
pip->bz_paths = bz_paths;
|
|
|
|
|
|
|
|
return (PathsList *)pip;
|
|
|
|
}
|
1999-03-13 06:04:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************/
|
|
|
|
/* Code to save/load from filesystem */
|
|
|
|
/**************************************************************/
|
|
|
|
|
|
|
|
static GtkWidget *file_dlg = 0;
|
|
|
|
static int load_store;
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
static void path_write_current_to_file(FILE *f,PATHP bzp)
|
1999-03-13 06:04:30 +08:00
|
|
|
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
GSList *list = bzp->path_details;
|
|
|
|
PATHPOINTP pdata;
|
1999-03-13 06:04:30 +08:00
|
|
|
|
|
|
|
fprintf(f, "Name: %s\n", bzp->name->str);
|
1999-03-22 08:51:30 +08:00
|
|
|
fprintf(f, "#POINTS: %d\n", g_slist_length(bzp->path_details));
|
1999-03-13 06:04:30 +08:00
|
|
|
fprintf(f, "CLOSED: %d\n", bzp->closed==1?1:0);
|
|
|
|
fprintf(f, "DRAW: %d\n", 0);
|
|
|
|
fprintf(f, "STATE: %d\n", bzp->state);
|
|
|
|
|
|
|
|
while(list)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
pdata = (PATHPOINTP)list->data;
|
|
|
|
fprintf(f,"TYPE: %d X: %d Y: %d\n", pdata->type, (gint)pdata->x, (gint)pdata->y);
|
1999-03-13 06:04:30 +08:00
|
|
|
list = g_slist_next(list);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void file_ok_callback(GtkWidget * widget, gpointer client_data)
|
|
|
|
{
|
|
|
|
GtkFileSelection *fs;
|
|
|
|
FILE *f;
|
|
|
|
char* filename;
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP bzpath;
|
1999-03-13 06:04:30 +08:00
|
|
|
GSList * pts_list = NULL;
|
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
gint row = paths_dialog->selected_row_num;
|
1999-07-07 05:19:34 +08:00
|
|
|
gint this_path_count = 0;
|
1999-03-13 06:04:30 +08:00
|
|
|
|
|
|
|
fs = GTK_FILE_SELECTION (file_dlg);
|
|
|
|
filename = gtk_file_selection_get_filename (fs);
|
|
|
|
|
|
|
|
if (load_store)
|
|
|
|
{
|
|
|
|
f = fopen(filename, "rb");
|
1999-05-14 06:53:40 +08:00
|
|
|
|
|
|
|
if(!f)
|
|
|
|
{
|
|
|
|
g_message(_("Unable to open file %s"),filename);
|
|
|
|
return;
|
|
|
|
}
|
1999-03-13 06:04:30 +08:00
|
|
|
|
|
|
|
while(!feof(f))
|
|
|
|
{
|
|
|
|
gchar *txt = g_new(gchar,512);
|
|
|
|
gchar *txtstart = txt;
|
|
|
|
gint readfields = 0;
|
1999-05-14 06:53:40 +08:00
|
|
|
int val, type, closed, i, draw, state;
|
|
|
|
double x,y;
|
1999-03-13 06:04:30 +08:00
|
|
|
|
|
|
|
if(!fgets(txt,512,f) || strlen(txt) < 7)
|
|
|
|
{
|
1999-05-14 06:53:40 +08:00
|
|
|
g_message(_("Failed to read from %s"),filename);
|
1999-03-13 06:04:30 +08:00
|
|
|
gtk_widget_hide (file_dlg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
txt += 6; /* Miss out 'Name: ' bit */
|
|
|
|
txt[strlen(txt)-1] = '\0';
|
|
|
|
|
|
|
|
readfields += fscanf(f, "#POINTS: %d\n", &val);
|
|
|
|
readfields += fscanf(f, "CLOSED: %d\n", &closed);
|
|
|
|
readfields += fscanf(f, "DRAW: %d\n", &draw);
|
|
|
|
readfields += fscanf(f, "STATE: %d\n", &state);
|
|
|
|
|
|
|
|
if(readfields != 4)
|
|
|
|
{
|
1999-05-14 06:53:40 +08:00
|
|
|
g_message(_("Failed to read path from %s"),filename);
|
|
|
|
gtk_widget_hide (file_dlg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(val <= 0)
|
|
|
|
{
|
|
|
|
g_message(_("No points specified in path file %s"),filename);
|
1999-03-13 06:04:30 +08:00
|
|
|
gtk_widget_hide (file_dlg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i=0; i< val; i++)
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHPOINTP bpt;
|
1999-05-14 06:53:40 +08:00
|
|
|
readfields = fscanf(f,"TYPE: %d X: %lg Y: %lg\n", &type, &x, &y);
|
1999-03-13 06:04:30 +08:00
|
|
|
if(readfields != 3)
|
|
|
|
{
|
1999-05-14 06:53:40 +08:00
|
|
|
g_message(_("Failed to read path points from %s"),filename);
|
1999-03-13 06:04:30 +08:00
|
|
|
gtk_widget_hide (file_dlg);
|
|
|
|
return;
|
|
|
|
}
|
1999-07-07 05:19:34 +08:00
|
|
|
this_path_count++;
|
|
|
|
switch(type)
|
|
|
|
{
|
|
|
|
case BEZIER_ANCHOR:
|
|
|
|
case BEZIER_CONTROL:
|
|
|
|
break;
|
|
|
|
case BEZIER_MOVE:
|
|
|
|
if(this_path_count < 6)
|
|
|
|
{
|
1999-09-23 19:49:16 +08:00
|
|
|
g_warning("Invalid single point in path\n");
|
1999-07-07 05:19:34 +08:00
|
|
|
gtk_widget_hide (file_dlg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this_path_count = 0;
|
|
|
|
break;
|
|
|
|
default:
|
1999-09-23 19:49:16 +08:00
|
|
|
g_warning("Invalid point type passed\n");
|
1999-07-07 05:19:34 +08:00
|
|
|
gtk_widget_hide (file_dlg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
bpt = pathpoint_new(type, (gdouble)x, (gdouble)y);
|
1999-03-13 06:04:30 +08:00
|
|
|
pts_list = g_slist_append(pts_list,bpt);
|
|
|
|
}
|
|
|
|
|
1999-04-06 07:33:50 +08:00
|
|
|
bzpath = path_new(paths_dialog->gimage,
|
|
|
|
BEZIER,
|
1999-03-22 08:51:30 +08:00
|
|
|
pts_list,
|
|
|
|
closed,
|
|
|
|
state,
|
|
|
|
0, /* Can't be locked */
|
1999-04-06 07:33:50 +08:00
|
|
|
0, /* No tattoo assigned */
|
1999-03-22 08:51:30 +08:00
|
|
|
txt);
|
1999-03-13 06:04:30 +08:00
|
|
|
|
|
|
|
g_free(txtstart);
|
|
|
|
|
|
|
|
paths_dialog->current_path_list =
|
1999-03-22 08:51:30 +08:00
|
|
|
path_add_to_current(paths_dialog->current_path_list,
|
1999-03-13 06:04:30 +08:00
|
|
|
bzpath,
|
|
|
|
paths_dialog->gimage,
|
|
|
|
row);
|
|
|
|
paths_add_path(bzpath,row);
|
|
|
|
|
|
|
|
gtk_clist_select_row(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
paths_dialog->current_path_list->last_selected_row,
|
1999-04-14 05:50:28 +08:00
|
|
|
1);
|
1999-03-13 06:04:30 +08:00
|
|
|
|
|
|
|
paths_ops_button_set_sensitive(DUP_PATH_BUTTON,val);
|
|
|
|
paths_ops_button_set_sensitive(DEL_PATH_BUTTON,val);
|
|
|
|
paths_ops_button_set_sensitive(STROKE_PATH_BUTTON,val);
|
|
|
|
paths_ops_button_set_sensitive(PATH_TO_SEL_BUTTON,val);
|
1999-05-14 06:53:40 +08:00
|
|
|
paths_ops_button_set_sensitive(COPY_PATH_BUTTON,val);
|
|
|
|
paths_ops_button_set_sensitive(PASTE_PATH_BUTTON,(copy_pp)?TRUE:FALSE);
|
1999-03-13 06:04:30 +08:00
|
|
|
point_ops_button_set_sensitive(POINT_ADD_BUTTON,val);
|
|
|
|
point_ops_button_set_sensitive(POINT_DEL_BUTTON,val);
|
|
|
|
point_ops_button_set_sensitive(POINT_NEW_BUTTON,val);
|
|
|
|
point_ops_button_set_sensitive(POINT_EDIT_BUTTON,val);
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1999-03-22 08:51:30 +08:00
|
|
|
PATHP bzp;
|
1999-03-13 06:04:30 +08:00
|
|
|
|
|
|
|
/* Get current selection... ignore if none */
|
|
|
|
if(paths_dialog->selected_row_num < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Get bzpath structure */
|
|
|
|
plp = paths_dialog->current_path_list;
|
1999-03-22 08:51:30 +08:00
|
|
|
bzp = (PATHP)g_slist_nth_data(plp->bz_paths,row);
|
1999-03-13 06:04:30 +08:00
|
|
|
|
|
|
|
f = fopen(filename, "wb");
|
|
|
|
if (NULL == f)
|
|
|
|
{
|
|
|
|
g_message (_("open failed on %s: %s\n"), filename, g_strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write the current selection out. */
|
|
|
|
|
|
|
|
path_write_current_to_file(f,bzp);
|
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
gtk_widget_hide (file_dlg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void file_cancel_callback(GtkWidget * widget, gpointer data)
|
|
|
|
{
|
|
|
|
gtk_widget_hide (file_dlg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void make_file_dlg(gpointer data)
|
|
|
|
{
|
|
|
|
file_dlg = gtk_file_selection_new (_("Load/Store Bezier Curves"));
|
|
|
|
gtk_window_position (GTK_WINDOW (file_dlg), GTK_WIN_POS_MOUSE);
|
|
|
|
gtk_signal_connect(GTK_OBJECT (GTK_FILE_SELECTION (file_dlg)->cancel_button),
|
|
|
|
"clicked", (GtkSignalFunc) file_cancel_callback, data);
|
|
|
|
gtk_signal_connect(GTK_OBJECT (GTK_FILE_SELECTION (file_dlg)->ok_button),
|
|
|
|
"clicked", (GtkSignalFunc) file_ok_callback, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
path_load_callback()
|
|
|
|
{
|
|
|
|
if (!file_dlg)
|
|
|
|
{
|
|
|
|
make_file_dlg(NULL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (GTK_WIDGET_VISIBLE(file_dlg))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
gtk_window_set_title(GTK_WINDOW (file_dlg), _("Load Path"));
|
|
|
|
load_store = 1;
|
|
|
|
gtk_widget_show (file_dlg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
path_store_callback()
|
|
|
|
{
|
|
|
|
if (!file_dlg)
|
|
|
|
{
|
|
|
|
make_file_dlg(NULL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (GTK_WIDGET_VISIBLE(file_dlg))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_window_set_title(GTK_WINDOW (file_dlg), _("Store Path"));
|
|
|
|
load_store = 0;
|
|
|
|
gtk_widget_show (file_dlg);
|
|
|
|
}
|
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
void
|
1999-03-13 06:04:30 +08:00
|
|
|
paths_dialog_import_path_callback (GtkWidget * widget, gpointer udata)
|
|
|
|
{
|
|
|
|
/* Read and add at current position */
|
|
|
|
path_load_callback();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
1999-06-07 01:26:51 +08:00
|
|
|
void
|
1999-03-13 06:04:30 +08:00
|
|
|
paths_dialog_export_path_callback (GtkWidget * widget, gpointer udata)
|
|
|
|
{
|
|
|
|
/* Export the path to a file */
|
|
|
|
path_store_callback();
|
|
|
|
}
|
1999-03-22 08:51:30 +08:00
|
|
|
|
1999-04-14 05:50:28 +08:00
|
|
|
/*************************************/
|
|
|
|
/* Function for transforming paths */
|
|
|
|
/*************************************/
|
|
|
|
|
|
|
|
/* These functions are the undo functions for the paths
|
|
|
|
* that have undergone transformations.
|
|
|
|
*
|
|
|
|
* Generally speaking paths do not belong with the undo
|
|
|
|
* structures. However when a path undergoes a transformation
|
|
|
|
* then THIS path transformation should be part of the undo.
|
|
|
|
* We do have a problem here since a point could have been
|
|
|
|
* added to the path after the transformation. This
|
|
|
|
* point will be lost if the undo stuff is performed. It would
|
|
|
|
* then appear that this point is part of the undo structure.
|
|
|
|
* I think it is fair that this happens since the user is telling
|
|
|
|
* us to restore the state before the transformation took place.
|
|
|
|
* Note tattoos are used to find which paths have been stored in the
|
|
|
|
* undo buffer. So deleted paths will not suddenly reappear. (I did say
|
|
|
|
* generally paths are not part of the undo structures).
|
|
|
|
*/
|
|
|
|
|
|
|
|
void *
|
|
|
|
paths_transform_start_undo(GimpImage *gimage)
|
|
|
|
{
|
|
|
|
/* Save only the locked paths away */
|
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
GSList *plist;
|
|
|
|
PATHP p;
|
|
|
|
PATHP p_copy;
|
|
|
|
GSList *undo_list = NULL;
|
|
|
|
|
|
|
|
/* Get bzpath structure */
|
|
|
|
plp = (PATHIMAGELISTP)gimp_image_get_paths(gimage);
|
|
|
|
|
|
|
|
if(!plp)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
plist = plp->bz_paths;
|
|
|
|
|
|
|
|
while(plist)
|
|
|
|
{
|
|
|
|
p = (PATHP)plist->data;
|
|
|
|
if(p->locked)
|
|
|
|
{
|
|
|
|
/* save away for a rainly day */
|
|
|
|
p_copy = path_copy(NULL,p); /* NULL means dont want new tattoo */
|
|
|
|
undo_list = g_slist_append(undo_list,p_copy);
|
|
|
|
}
|
|
|
|
plist = g_slist_next(plist);
|
|
|
|
}
|
|
|
|
return undo_list;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
paths_transform_free_undo(void *data)
|
|
|
|
{
|
|
|
|
GSList *pundolist = data;
|
|
|
|
PATHP p;
|
|
|
|
/* free data associated with the transform path undo */
|
|
|
|
|
|
|
|
while(pundolist)
|
|
|
|
{
|
|
|
|
p = (PATHP)pundolist->data;
|
|
|
|
path_free(p,NULL);
|
|
|
|
pundolist = g_slist_next(pundolist);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slist_free((GSList *)data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
paths_transform_do_undo(GimpImage *gimage,void *data)
|
|
|
|
{
|
|
|
|
GSList *pundolist = data;
|
|
|
|
/* Restore the paths as they were before this transform took place. */
|
|
|
|
PATHP p_undo;
|
|
|
|
PATHP p;
|
|
|
|
BezierSelect *bezier_sel;
|
|
|
|
gint tmprow;
|
|
|
|
gint loop;
|
|
|
|
gboolean preview_update = FALSE;
|
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
GSList *plist;
|
|
|
|
|
|
|
|
/* free data associated with the transform path undo */
|
|
|
|
|
|
|
|
while(pundolist)
|
|
|
|
{
|
|
|
|
p_undo = (PATHP)pundolist->data;
|
|
|
|
/* Find the old path and replace it */
|
|
|
|
p = paths_get_path_by_tattoo(gimage,p_undo->tattoo);
|
|
|
|
if(p)
|
|
|
|
{
|
|
|
|
/* Path is still around... undo the transform stuff */
|
|
|
|
pathpoints_free(p->path_details);
|
|
|
|
p->closed = p_undo->closed;
|
|
|
|
p->state = p_undo->state;
|
|
|
|
p->pathtype = p_undo->pathtype;
|
|
|
|
p->path_details = pathpoints_copy(p_undo->path_details);
|
|
|
|
preview_update = TRUE;
|
|
|
|
}
|
|
|
|
pundolist = g_slist_next(pundolist);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(preview_update && paths_dialog)
|
|
|
|
{
|
|
|
|
/* Heck the previews need updating...*/
|
|
|
|
plp = (PATHIMAGELISTP)gimp_image_get_paths(gimage);
|
|
|
|
plist = plp->bz_paths;
|
|
|
|
loop = 0;
|
|
|
|
|
1999-05-14 06:53:40 +08:00
|
|
|
while(plist &&
|
|
|
|
g_slist_length(plist) &&
|
|
|
|
paths_dialog->current_path_list)
|
1999-04-14 05:50:28 +08:00
|
|
|
{
|
|
|
|
bezier_sel = path_to_beziersel(plist->data);
|
|
|
|
tmprow = paths_dialog->current_path_list->last_selected_row;
|
|
|
|
paths_dialog->current_path_list->last_selected_row = loop;
|
|
|
|
paths_update_preview(bezier_sel);
|
|
|
|
beziersel_free(bezier_sel);
|
|
|
|
paths_dialog->current_path_list->last_selected_row = tmprow;
|
|
|
|
paths_dialog->selected_row_num = tmprow;
|
|
|
|
loop++;
|
|
|
|
plist = g_slist_next(plist);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Force selection .. it may have changed */
|
1999-05-14 06:53:40 +08:00
|
|
|
if(bezier_tool_selected() && paths_dialog->current_path_list)
|
1999-04-14 05:50:28 +08:00
|
|
|
{
|
|
|
|
gtk_clist_select_row(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
paths_dialog->current_path_list->last_selected_row,
|
|
|
|
1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
paths_transform_current_path(GimpImage *gimage,
|
|
|
|
GimpMatrix transform,
|
|
|
|
gboolean forpreview)
|
|
|
|
{
|
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
PATHP p;
|
|
|
|
PATHP p_copy;
|
|
|
|
GSList *points_list;
|
|
|
|
BezierSelect *bezier_sel;
|
|
|
|
GSList *plist;
|
|
|
|
gint loop;
|
|
|
|
gint tmprow;
|
|
|
|
|
|
|
|
/* As a first off lets just translate the current path */
|
|
|
|
|
|
|
|
/* Get bzpath structure */
|
|
|
|
plp = (PATHIMAGELISTP)gimp_image_get_paths(gimage);
|
|
|
|
|
|
|
|
if(!plp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
plist = plp->bz_paths;
|
|
|
|
loop = 0;
|
|
|
|
|
|
|
|
while(plist)
|
|
|
|
{
|
|
|
|
p = (PATHP)plist->data;
|
|
|
|
if(p->locked)
|
|
|
|
{
|
|
|
|
if(forpreview)
|
|
|
|
p_copy = path_copy(NULL,p); /* NULL means dont want new tattoo */
|
|
|
|
else
|
|
|
|
p_copy = p;
|
|
|
|
|
|
|
|
points_list = p_copy->path_details;
|
|
|
|
|
|
|
|
while (points_list)
|
|
|
|
{
|
|
|
|
gdouble newx,newy;
|
|
|
|
PATHPOINTP ppoint = points_list->data;
|
|
|
|
|
|
|
|
/* printf("[x,y] = [%g,%g]\n",ppoint->x, ppoint->y); */
|
|
|
|
|
|
|
|
gimp_matrix_transform_point (transform,
|
|
|
|
ppoint->x,
|
|
|
|
ppoint->y,
|
|
|
|
&newx,&newy);
|
|
|
|
|
|
|
|
/* printf("->[x,y] = [%g,%g]\n", newx, newy); */
|
|
|
|
|
|
|
|
ppoint->x = newx;
|
|
|
|
ppoint->y = newy;
|
|
|
|
points_list = points_list->next;
|
|
|
|
}
|
|
|
|
|
1999-05-14 06:53:40 +08:00
|
|
|
/* Only update if we have a dialog, we have a currently
|
|
|
|
* selected path and its the showing the same image.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if(paths_dialog &&
|
|
|
|
paths_dialog->current_path_list &&
|
|
|
|
paths_dialog->gimage == gimage)
|
1999-04-14 05:50:28 +08:00
|
|
|
{
|
|
|
|
/* Now fudge the drawing....*/
|
|
|
|
bezier_sel = path_to_beziersel(p_copy);
|
|
|
|
tmprow = paths_dialog->current_path_list->last_selected_row;
|
|
|
|
paths_dialog->current_path_list->last_selected_row = loop;
|
|
|
|
paths_update_preview(bezier_sel);
|
|
|
|
beziersel_free(bezier_sel);
|
|
|
|
paths_dialog->current_path_list->last_selected_row = tmprow;
|
|
|
|
paths_dialog->selected_row_num = tmprow;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(forpreview)
|
|
|
|
path_free(p_copy,NULL);
|
|
|
|
}
|
|
|
|
plist = g_slist_next(plist);
|
|
|
|
loop++;
|
|
|
|
}
|
|
|
|
}
|
1999-03-22 08:51:30 +08:00
|
|
|
|
1999-05-27 04:36:33 +08:00
|
|
|
void
|
|
|
|
paths_draw_current(GDisplay * gdisp,
|
|
|
|
DrawCore *core,
|
|
|
|
GimpMatrix transform)
|
|
|
|
{
|
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
PATHP bzp;
|
|
|
|
BezierSelect * bezier_sel;
|
|
|
|
PATHP p_copy;
|
|
|
|
GSList * points_list;
|
|
|
|
|
|
|
|
/* Get bzpath structure */
|
|
|
|
plp = (PATHIMAGELISTP)gimp_image_get_paths(gdisp->gimage);
|
|
|
|
|
|
|
|
if(!plp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
bzp = (PATHP)g_slist_nth_data(plp->bz_paths,plp->last_selected_row);
|
|
|
|
|
|
|
|
/* This image path is locked */
|
|
|
|
if(bzp->locked)
|
|
|
|
{
|
|
|
|
p_copy = path_copy(NULL,bzp); /* NULL means dont want new tattoo */
|
|
|
|
|
|
|
|
points_list = p_copy->path_details;
|
|
|
|
|
|
|
|
while (points_list)
|
|
|
|
{
|
|
|
|
gdouble newx,newy;
|
|
|
|
PATHPOINTP ppoint = points_list->data;
|
|
|
|
|
|
|
|
/* printf("[x,y] = [%g,%g]\n",ppoint->x, ppoint->y); */
|
|
|
|
|
|
|
|
gimp_matrix_transform_point (transform,
|
|
|
|
ppoint->x,
|
|
|
|
ppoint->y,
|
|
|
|
&newx,&newy);
|
|
|
|
|
|
|
|
/* printf("->[x,y] = [%g,%g]\n", newx, newy); */
|
|
|
|
|
|
|
|
ppoint->x = newx;
|
|
|
|
ppoint->y = newy;
|
|
|
|
points_list = points_list->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
bezier_sel = path_to_beziersel(p_copy);
|
|
|
|
bezier_sel->core = core; /* A bit hacky */
|
|
|
|
bezier_draw(gdisp,bezier_sel);
|
|
|
|
beziersel_free(bezier_sel);
|
|
|
|
path_free(p_copy,NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
/*************************************/
|
|
|
|
/* PDB function aids */
|
|
|
|
/*************************************/
|
|
|
|
|
|
|
|
/* Return TRUE if setting the path worked, else false */
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
paths_set_path(GimpImage * gimage,
|
|
|
|
gchar * pname)
|
|
|
|
{
|
|
|
|
gint row = 0;
|
|
|
|
gboolean found = FALSE;
|
|
|
|
GSList *tlist;
|
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
|
|
|
|
/* Get bzpath structure */
|
|
|
|
plp = (PATHIMAGELISTP)gimp_image_get_paths(gimage);
|
|
|
|
|
|
|
|
if(!plp)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
tlist = plp->bz_paths;
|
|
|
|
|
|
|
|
while(tlist)
|
|
|
|
{
|
|
|
|
gchar *test_str = ((PATHP)(tlist->data))->name->str;
|
|
|
|
if(strcmp(pname,test_str) == 0)
|
|
|
|
{
|
|
|
|
found = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
row++;
|
|
|
|
tlist = g_slist_next(tlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!found)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if(paths_dialog)
|
|
|
|
{
|
|
|
|
gtk_clist_select_row(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
row,
|
1999-04-14 05:50:28 +08:00
|
|
|
1);
|
1999-03-22 08:51:30 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
plp->last_selected_row = row;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set a path with the given set of points. */
|
|
|
|
/* We assume that there are enough points */
|
|
|
|
/* Return TRUE if path created OK. */
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
paths_set_path_points(GimpImage * gimage,
|
|
|
|
gchar * pname,
|
|
|
|
gint ptype,
|
|
|
|
gint pclosed,
|
|
|
|
gint num_pnts,
|
|
|
|
gdouble * pnts)
|
|
|
|
{
|
|
|
|
PathsList *plist = gimp_image_get_paths(gimage);
|
|
|
|
GSList *pts_list = NULL;
|
|
|
|
PATHP bzpath;
|
1999-07-14 05:55:39 +08:00
|
|
|
BezierSelect *bezier_sel;
|
1999-03-22 08:51:30 +08:00
|
|
|
gint pcount = 0;
|
1999-07-07 05:19:34 +08:00
|
|
|
gint this_path_count = 0;
|
|
|
|
gchar *suniq;
|
1999-03-22 08:51:30 +08:00
|
|
|
|
|
|
|
if(num_pnts < 6 ||
|
1999-07-07 05:19:34 +08:00
|
|
|
(pclosed && ((num_pnts/3) % 3)) ||
|
|
|
|
(!pclosed && ((num_pnts/3) % 3) != 2))
|
1999-03-22 08:51:30 +08:00
|
|
|
{
|
1999-09-23 19:49:16 +08:00
|
|
|
g_warning("wrong number of points\n");
|
1999-03-22 08:51:30 +08:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ptype != BEZIER)
|
|
|
|
ptype = BEZIER;
|
|
|
|
|
1999-07-07 05:19:34 +08:00
|
|
|
suniq = unique_name(gimage,pname);
|
|
|
|
|
|
|
|
if(suniq)
|
|
|
|
pname = suniq;
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
while(num_pnts)
|
|
|
|
{
|
|
|
|
PATHPOINTP bpt;
|
|
|
|
gint type;
|
|
|
|
gdouble x;
|
|
|
|
gdouble y;
|
|
|
|
|
1999-07-07 05:19:34 +08:00
|
|
|
/* if((pcount/2)%3) */
|
|
|
|
/* type = BEZIER_CONTROL; */
|
|
|
|
/* else */
|
|
|
|
/* type = BEZIER_ANCHOR; */
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
x = pnts[pcount++];
|
|
|
|
y = pnts[pcount++];
|
1999-07-07 05:19:34 +08:00
|
|
|
type = (gint)pnts[pcount++];
|
|
|
|
this_path_count++;
|
|
|
|
|
|
|
|
switch(type)
|
|
|
|
{
|
|
|
|
case BEZIER_ANCHOR:
|
|
|
|
case BEZIER_CONTROL:
|
|
|
|
break;
|
|
|
|
case BEZIER_MOVE:
|
|
|
|
if(this_path_count < 6)
|
|
|
|
{
|
1999-09-23 19:49:16 +08:00
|
|
|
g_warning("Invalid single point in path\n");
|
1999-07-07 05:19:34 +08:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
this_path_count = 0;
|
|
|
|
break;
|
|
|
|
default:
|
1999-09-23 19:49:16 +08:00
|
|
|
g_warning("Invalid point type passed\n");
|
1999-07-07 05:19:34 +08:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
|
|
|
|
/* printf("New point type = %s, x = %d y= %d\n", */
|
|
|
|
/* (type==BEZIER_CONTROL)?"CNTL":"ANCH", */
|
|
|
|
/* (int)x, */
|
|
|
|
/* (int)y); */
|
|
|
|
|
|
|
|
bpt = pathpoint_new(type, (gdouble)x, (gdouble)y);
|
|
|
|
pts_list = g_slist_append(pts_list,bpt);
|
|
|
|
|
1999-07-07 05:19:34 +08:00
|
|
|
num_pnts -= 3;
|
1999-03-22 08:51:30 +08:00
|
|
|
}
|
|
|
|
|
1999-07-20 06:42:49 +08:00
|
|
|
bzpath = path_new(gimage,
|
|
|
|
ptype,
|
|
|
|
pts_list,
|
|
|
|
pclosed,
|
|
|
|
(pclosed)?BEZIER_EDIT:BEZIER_ADD,/*state,*/
|
|
|
|
0, /* Can't be locked */
|
|
|
|
0, /* No tattoo assigned */
|
|
|
|
pname);
|
1999-03-22 08:51:30 +08:00
|
|
|
|
1999-07-14 05:55:39 +08:00
|
|
|
bezier_sel = path_to_beziersel(bzpath);
|
|
|
|
|
1999-07-20 06:42:49 +08:00
|
|
|
/* Only add if paths dialog showing this window */
|
|
|
|
if(paths_dialog && paths_dialog->gimage == gimage)
|
1999-03-22 08:51:30 +08:00
|
|
|
{
|
1999-07-07 05:19:34 +08:00
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
paths_dialog->current_path_list =
|
|
|
|
path_add_to_current(paths_dialog->current_path_list,
|
|
|
|
bzpath,
|
|
|
|
paths_dialog->gimage,
|
|
|
|
0);
|
|
|
|
|
|
|
|
paths_add_path(bzpath,0);
|
|
|
|
|
1999-07-07 05:19:34 +08:00
|
|
|
/* Update the preview */
|
|
|
|
paths_dialog->current_path_list->last_selected_row = 0;
|
|
|
|
paths_update_preview(bezier_sel);
|
|
|
|
|
1999-03-22 08:51:30 +08:00
|
|
|
gtk_clist_select_row(GTK_CLIST(paths_dialog->paths_list),
|
|
|
|
paths_dialog->current_path_list->last_selected_row,
|
1999-04-14 05:50:28 +08:00
|
|
|
1);
|
1999-03-22 08:51:30 +08:00
|
|
|
|
|
|
|
paths_ops_button_set_sensitive(DUP_PATH_BUTTON,TRUE);
|
|
|
|
paths_ops_button_set_sensitive(DEL_PATH_BUTTON,TRUE);
|
|
|
|
paths_ops_button_set_sensitive(STROKE_PATH_BUTTON,TRUE);
|
|
|
|
paths_ops_button_set_sensitive(PATH_TO_SEL_BUTTON,TRUE);
|
1999-05-14 06:53:40 +08:00
|
|
|
paths_ops_button_set_sensitive(COPY_PATH_BUTTON,TRUE);
|
|
|
|
paths_ops_button_set_sensitive(PASTE_PATH_BUTTON,(copy_pp)?TRUE:FALSE);
|
1999-03-22 08:51:30 +08:00
|
|
|
point_ops_button_set_sensitive(POINT_ADD_BUTTON,TRUE);
|
|
|
|
point_ops_button_set_sensitive(POINT_DEL_BUTTON,TRUE);
|
|
|
|
point_ops_button_set_sensitive(POINT_NEW_BUTTON,TRUE);
|
|
|
|
point_ops_button_set_sensitive(POINT_EDIT_BUTTON,TRUE);
|
|
|
|
}
|
1999-07-07 05:19:34 +08:00
|
|
|
else
|
|
|
|
{
|
1999-07-14 05:55:39 +08:00
|
|
|
GDisplay *gdisp;
|
|
|
|
|
1999-07-20 06:42:49 +08:00
|
|
|
if(!plist)
|
|
|
|
{
|
|
|
|
/* If we haven't got a paths dialog */
|
|
|
|
GSList *bzp_list = NULL;
|
|
|
|
|
|
|
|
bzp_list = g_slist_append(bzp_list,bzpath);
|
|
|
|
plist = pathsList_new(gimage,0,bzp_list);
|
|
|
|
gimp_image_set_paths(gimage,plist);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
path_add_to_current(plist,bzpath,gimage,0);
|
|
|
|
}
|
|
|
|
|
1999-07-14 05:55:39 +08:00
|
|
|
/* This is a little HACK.. we need to find a display
|
|
|
|
* to put the path image on.
|
|
|
|
*/
|
|
|
|
|
|
|
|
gdisp = gdisplays_check_valid(NULL,gimage);
|
|
|
|
|
1999-07-07 05:19:34 +08:00
|
|
|
/* Mark this path as selected */
|
|
|
|
plist->last_selected_row = 0;
|
1999-07-14 05:55:39 +08:00
|
|
|
bezier_paste_bezierselect_to_current(gdisp,bezier_sel);
|
1999-07-07 05:19:34 +08:00
|
|
|
}
|
|
|
|
|
1999-07-14 05:55:39 +08:00
|
|
|
beziersel_free(bezier_sel);
|
1999-03-22 08:51:30 +08:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
paths_stroke(GimpImage *gimage,PathsList *pl,PATHP bzp)
|
|
|
|
{
|
|
|
|
BezierSelect * bezier_sel;
|
|
|
|
GDisplay * gdisp;
|
|
|
|
|
|
|
|
gdisp = gdisplays_check_valid(pl->gdisp,gimage);
|
|
|
|
bezier_sel = path_to_beziersel(bzp);
|
|
|
|
bezier_stroke (bezier_sel, gdisp, SUBDIVIDE, !bzp->closed);
|
|
|
|
beziersel_free(bezier_sel);
|
|
|
|
}
|
1999-04-06 07:33:50 +08:00
|
|
|
|
|
|
|
gint
|
|
|
|
paths_distance(PATHP bzp,gdouble dist,gint *x,gint *y, gdouble *grad)
|
|
|
|
{
|
|
|
|
gint ret;
|
|
|
|
BezierSelect * bezier_sel;
|
|
|
|
bezier_sel = path_to_beziersel(bzp);
|
|
|
|
ret = bezier_distance_along(bezier_sel,!bzp->closed,dist,x,y,grad);
|
|
|
|
beziersel_free(bezier_sel);
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
Tattoo
|
|
|
|
paths_get_tattoo(PATHP p)
|
|
|
|
{
|
|
|
|
if(!p)
|
|
|
|
{
|
1999-09-23 19:49:16 +08:00
|
|
|
g_warning("paths_get_tattoo: invalid path");
|
1999-04-06 07:33:50 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (p->tattoo);
|
|
|
|
}
|
|
|
|
|
|
|
|
PATHP
|
|
|
|
paths_get_path_by_tattoo(GimpImage *gimage,Tattoo tattoo)
|
|
|
|
{
|
|
|
|
GSList *tlist;
|
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
|
|
|
|
if(!gimage || !tattoo)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Go around the list and check all tattoos. */
|
|
|
|
|
|
|
|
/* Get path structure */
|
|
|
|
plp = (PATHIMAGELISTP)gimp_image_get_paths(gimage);
|
|
|
|
|
|
|
|
if(!plp)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
tlist = plp->bz_paths;
|
|
|
|
|
|
|
|
while(tlist)
|
|
|
|
{
|
|
|
|
PATHP p = (PATHP)(tlist->data);
|
|
|
|
if(p->tattoo == tattoo)
|
|
|
|
return (p);
|
|
|
|
tlist = g_slist_next(tlist);
|
|
|
|
}
|
|
|
|
return (NULL);
|
|
|
|
}
|
1999-07-07 05:19:34 +08:00
|
|
|
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
paths_delete_path(GimpImage *gimage,
|
|
|
|
gchar *pname)
|
|
|
|
{
|
|
|
|
gint row = 0;
|
|
|
|
gboolean found = FALSE;
|
|
|
|
GSList *tlist;
|
|
|
|
PATHIMAGELISTP plp;
|
|
|
|
|
|
|
|
if(!pname || !gimage)
|
|
|
|
{
|
1999-09-23 19:49:16 +08:00
|
|
|
g_warning("paths_delete_path: invalid path");
|
1999-07-07 05:19:34 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Removed the named path ... */
|
|
|
|
/* Get bzpath structure */
|
|
|
|
plp = (PATHIMAGELISTP)gimp_image_get_paths(gimage);
|
|
|
|
|
|
|
|
if(!plp)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
tlist = plp->bz_paths;
|
|
|
|
|
|
|
|
while(tlist)
|
|
|
|
{
|
|
|
|
gchar *test_str = ((PATHP)(tlist->data))->name->str;
|
|
|
|
if(strcmp(pname,test_str) == 0)
|
|
|
|
{
|
|
|
|
found = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
row++;
|
|
|
|
tlist = g_slist_next(tlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!found)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
plp->bz_paths = g_slist_remove(plp->bz_paths,tlist->data);
|
|
|
|
/* If now empty free everything up */
|
|
|
|
if(!plp->bz_paths || g_slist_length(plp->bz_paths) == 0)
|
|
|
|
{
|
|
|
|
gtk_signal_disconnect(GTK_OBJECT (plp->gimage),
|
|
|
|
plp->sig_id);
|
|
|
|
gimp_image_set_paths(plp->gimage,NULL);
|
|
|
|
pathimagelist_free(plp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Redisplay if required */
|
|
|
|
if(paths_dialog && paths_dialog->gimage == gimage)
|
|
|
|
{
|
|
|
|
paths_dialog->current_path_list = NULL;
|
|
|
|
paths_dialog_flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|