namespaceified and cleaned up a lot. Removed the menu code.

2002-03-17  Michael Natterer  <mitch@gimp.org>

	* app/widgets/gimpcolormapeditor.[ch]: namespaceified and cleaned
	up a lot. Removed the menu code.

	* app/gui/menus.c: added a "<ColormapEditor>" item factory...

	* app/gui/Makefile.am
	* app/gui/colormap-editor-commands.[ch]: ...and callbacks for the
	new factory.

	* app/gui/menus.c: Cleaned up a lot. Removed most static variables.
	Enabled the menu debugging code again. Moved all debug and test
	entries to <Toolbox>/File/Debug. Added an "Open Recent" submenu
	to <Image>/File because it was a one-liner after the cleanup...

	* app/widgets/gimpeditor.c: create the icons in GTK_ICON_SIZE_MENU.
	Need to make this configurable using a style property...
This commit is contained in:
Michael Natterer 2002-03-17 13:52:25 +00:00 committed by Michael Natterer
parent ef6c0e6b67
commit f8b4fbd477
13 changed files with 1791 additions and 1441 deletions

View File

@ -1,3 +1,22 @@
2002-03-17 Michael Natterer <mitch@gimp.org>
* app/widgets/gimpcolormapeditor.[ch]: namespaceified and cleaned
up a lot. Removed the menu code.
* app/gui/menus.c: added a "<ColormapEditor>" item factory...
* app/gui/Makefile.am
* app/gui/colormap-editor-commands.[ch]: ...and callbacks for the
new factory.
* app/gui/menus.c: Cleaned up a lot. Removed most static variables.
Enabled the menu debugging code again. Moved all debug and test
entries to <Toolbox>/File/Debug. Added an "Open Recent" submenu
to <Image>/File because it was a one-liner after the cleanup...
* app/widgets/gimpeditor.c: create the icons in GTK_ICON_SIZE_MENU.
Need to make this configurable using a style property...
2002-03-16 Michael Natterer <mitch@gimp.org> 2002-03-16 Michael Natterer <mitch@gimp.org>
* app/gui/Makefile.am * app/gui/Makefile.am

View File

@ -0,0 +1,177 @@
/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "config.h"
#include <gtk/gtk.h>
#include "libgimpcolor/gimpcolor.h"
#include "libgimpwidgets/gimpwidgets.h"
#include "gui-types.h"
#include "core/gimp.h"
#include "core/gimpimage.h"
#include "display/gimpdisplay-foreach.h"
#include "widgets/gimpcolormapeditor.h"
#include "widgets/gimpitemfactory.h"
#include "widgets/gimpwidgets-utils.h"
#include "color-notebook.h"
#include "colormap-editor-commands.h"
#include "libgimp/gimpintl.h"
/* local function prototypes */
static void colormap_editor_color_notebook_callback (ColorNotebook *color_notebook,
const GimpRGB *color,
ColorNotebookState state,
gpointer data);
/* public functions */
void
colormap_editor_add_color_cmd_callback (GtkWidget *widget,
gpointer data,
guint action)
{
GimpColormapEditor *editor;
GimpImage *gimage;
editor = (GimpColormapEditor *) gimp_widget_get_callback_context (widget);
if (! editor)
return;
gimage = editor->gimage;
if (! gimage)
return;
memcpy (&gimage->cmap[gimage->num_cols * 3],
&gimage->cmap[editor->col_index * 3],
3);
gimage->num_cols++;
gimp_image_colormap_changed (gimage, -1);
}
void
colormap_editor_edit_color_cmd_callback (GtkWidget *widget,
gpointer data,
guint action)
{
GimpColormapEditor *editor;
GimpImage *gimage;
GimpRGB color;
editor = (GimpColormapEditor *) gimp_widget_get_callback_context (widget);
if (! editor)
return;
gimage = editor->gimage;
if (! gimage)
return;
gimp_rgba_set_uchar (&color,
gimage->cmap[editor->col_index * 3],
gimage->cmap[editor->col_index * 3 + 1],
gimage->cmap[editor->col_index * 3 + 2],
OPAQUE_OPACITY);
if (! editor->color_notebook)
{
editor->color_notebook =
color_notebook_new (_("Edit Indexed Color"),
(const GimpRGB *) &color,
colormap_editor_color_notebook_callback, editor,
FALSE, FALSE);
}
else
{
color_notebook_show (editor->color_notebook);
color_notebook_set_color (editor->color_notebook, &color);
}
}
void
colormap_editor_menu_update (GtkItemFactory *factory,
gpointer data)
{
GimpColormapEditor *editor;
GimpImage *gimage;
gint num_colors = 0;
editor = GIMP_COLORMAP_EDITOR (data);
gimage = editor->gimage;
if (gimage)
{
num_colors = gimage->num_cols;
}
#define SET_SENSITIVE(menu,condition) \
gimp_item_factory_set_sensitive (factory, menu, (condition) != 0)
SET_SENSITIVE ("/Add Color", gimage && num_colors < 256);
SET_SENSITIVE ("/Edit Color...", gimage);
#undef SET_SENSITIVE
}
/* private functions */
static void
colormap_editor_color_notebook_callback (ColorNotebook *color_notebook,
const GimpRGB *color,
ColorNotebookState state,
gpointer data)
{
GimpColormapEditor *editor;
GimpImage *gimage;
editor = GIMP_COLORMAP_EDITOR (data);
gimage = editor->gimage;
switch (state)
{
case COLOR_NOTEBOOK_UPDATE:
break;
case COLOR_NOTEBOOK_OK:
gimp_rgb_get_uchar (color,
&gimage->cmap[editor->col_index * 3 + 0],
&gimage->cmap[editor->col_index * 3 + 1],
&gimage->cmap[editor->col_index * 3 + 2]);
gimp_image_colormap_changed (gimage, editor->col_index);
gdisplays_flush ();
/* Fall through */
case COLOR_NOTEBOOK_CANCEL:
color_notebook_hide (editor->color_notebook);
}
}

View File

@ -0,0 +1,34 @@
/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* 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.
*/
#ifndef __COLORMAP_EDITOR_COMMANDS_H__
#define __COLORMAP_EDITOR_COMMANDS_H__
void colormap_editor_add_color_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
void colormap_editor_edit_color_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
void colormap_editor_menu_update (GtkItemFactory *factory,
gpointer data);
#endif /* __COLORMAP_EDITOR_COMMANDS_H__ */

View File

@ -0,0 +1,177 @@
/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "config.h"
#include <gtk/gtk.h>
#include "libgimpcolor/gimpcolor.h"
#include "libgimpwidgets/gimpwidgets.h"
#include "gui-types.h"
#include "core/gimp.h"
#include "core/gimpimage.h"
#include "display/gimpdisplay-foreach.h"
#include "widgets/gimpcolormapeditor.h"
#include "widgets/gimpitemfactory.h"
#include "widgets/gimpwidgets-utils.h"
#include "color-notebook.h"
#include "colormap-editor-commands.h"
#include "libgimp/gimpintl.h"
/* local function prototypes */
static void colormap_editor_color_notebook_callback (ColorNotebook *color_notebook,
const GimpRGB *color,
ColorNotebookState state,
gpointer data);
/* public functions */
void
colormap_editor_add_color_cmd_callback (GtkWidget *widget,
gpointer data,
guint action)
{
GimpColormapEditor *editor;
GimpImage *gimage;
editor = (GimpColormapEditor *) gimp_widget_get_callback_context (widget);
if (! editor)
return;
gimage = editor->gimage;
if (! gimage)
return;
memcpy (&gimage->cmap[gimage->num_cols * 3],
&gimage->cmap[editor->col_index * 3],
3);
gimage->num_cols++;
gimp_image_colormap_changed (gimage, -1);
}
void
colormap_editor_edit_color_cmd_callback (GtkWidget *widget,
gpointer data,
guint action)
{
GimpColormapEditor *editor;
GimpImage *gimage;
GimpRGB color;
editor = (GimpColormapEditor *) gimp_widget_get_callback_context (widget);
if (! editor)
return;
gimage = editor->gimage;
if (! gimage)
return;
gimp_rgba_set_uchar (&color,
gimage->cmap[editor->col_index * 3],
gimage->cmap[editor->col_index * 3 + 1],
gimage->cmap[editor->col_index * 3 + 2],
OPAQUE_OPACITY);
if (! editor->color_notebook)
{
editor->color_notebook =
color_notebook_new (_("Edit Indexed Color"),
(const GimpRGB *) &color,
colormap_editor_color_notebook_callback, editor,
FALSE, FALSE);
}
else
{
color_notebook_show (editor->color_notebook);
color_notebook_set_color (editor->color_notebook, &color);
}
}
void
colormap_editor_menu_update (GtkItemFactory *factory,
gpointer data)
{
GimpColormapEditor *editor;
GimpImage *gimage;
gint num_colors = 0;
editor = GIMP_COLORMAP_EDITOR (data);
gimage = editor->gimage;
if (gimage)
{
num_colors = gimage->num_cols;
}
#define SET_SENSITIVE(menu,condition) \
gimp_item_factory_set_sensitive (factory, menu, (condition) != 0)
SET_SENSITIVE ("/Add Color", gimage && num_colors < 256);
SET_SENSITIVE ("/Edit Color...", gimage);
#undef SET_SENSITIVE
}
/* private functions */
static void
colormap_editor_color_notebook_callback (ColorNotebook *color_notebook,
const GimpRGB *color,
ColorNotebookState state,
gpointer data)
{
GimpColormapEditor *editor;
GimpImage *gimage;
editor = GIMP_COLORMAP_EDITOR (data);
gimage = editor->gimage;
switch (state)
{
case COLOR_NOTEBOOK_UPDATE:
break;
case COLOR_NOTEBOOK_OK:
gimp_rgb_get_uchar (color,
&gimage->cmap[editor->col_index * 3 + 0],
&gimage->cmap[editor->col_index * 3 + 1],
&gimage->cmap[editor->col_index * 3 + 2]);
gimp_image_colormap_changed (gimage, editor->col_index);
gdisplays_flush ();
/* Fall through */
case COLOR_NOTEBOOK_CANCEL:
color_notebook_hide (editor->color_notebook);
}
}

View File

@ -0,0 +1,34 @@
/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* 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.
*/
#ifndef __COLORMAP_EDITOR_COMMANDS_H__
#define __COLORMAP_EDITOR_COMMANDS_H__
void colormap_editor_add_color_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
void colormap_editor_edit_color_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
void colormap_editor_menu_update (GtkItemFactory *factory,
gpointer data);
#endif /* __COLORMAP_EDITOR_COMMANDS_H__ */

View File

@ -18,6 +18,8 @@ libappgui_a_SOURCES = @STRIP_BEGIN@ \
color-notebook.h \ color-notebook.h \
color-select.c \ color-select.c \
color-select.h \ color-select.h \
colormap-editor-commands.c \
colormap-editor-commands.h \
commands.c \ commands.c \
commands.h \ commands.h \
convert-dialog.c \ convert-dialog.c \

View File

@ -0,0 +1,177 @@
/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "config.h"
#include <gtk/gtk.h>
#include "libgimpcolor/gimpcolor.h"
#include "libgimpwidgets/gimpwidgets.h"
#include "gui-types.h"
#include "core/gimp.h"
#include "core/gimpimage.h"
#include "display/gimpdisplay-foreach.h"
#include "widgets/gimpcolormapeditor.h"
#include "widgets/gimpitemfactory.h"
#include "widgets/gimpwidgets-utils.h"
#include "color-notebook.h"
#include "colormap-editor-commands.h"
#include "libgimp/gimpintl.h"
/* local function prototypes */
static void colormap_editor_color_notebook_callback (ColorNotebook *color_notebook,
const GimpRGB *color,
ColorNotebookState state,
gpointer data);
/* public functions */
void
colormap_editor_add_color_cmd_callback (GtkWidget *widget,
gpointer data,
guint action)
{
GimpColormapEditor *editor;
GimpImage *gimage;
editor = (GimpColormapEditor *) gimp_widget_get_callback_context (widget);
if (! editor)
return;
gimage = editor->gimage;
if (! gimage)
return;
memcpy (&gimage->cmap[gimage->num_cols * 3],
&gimage->cmap[editor->col_index * 3],
3);
gimage->num_cols++;
gimp_image_colormap_changed (gimage, -1);
}
void
colormap_editor_edit_color_cmd_callback (GtkWidget *widget,
gpointer data,
guint action)
{
GimpColormapEditor *editor;
GimpImage *gimage;
GimpRGB color;
editor = (GimpColormapEditor *) gimp_widget_get_callback_context (widget);
if (! editor)
return;
gimage = editor->gimage;
if (! gimage)
return;
gimp_rgba_set_uchar (&color,
gimage->cmap[editor->col_index * 3],
gimage->cmap[editor->col_index * 3 + 1],
gimage->cmap[editor->col_index * 3 + 2],
OPAQUE_OPACITY);
if (! editor->color_notebook)
{
editor->color_notebook =
color_notebook_new (_("Edit Indexed Color"),
(const GimpRGB *) &color,
colormap_editor_color_notebook_callback, editor,
FALSE, FALSE);
}
else
{
color_notebook_show (editor->color_notebook);
color_notebook_set_color (editor->color_notebook, &color);
}
}
void
colormap_editor_menu_update (GtkItemFactory *factory,
gpointer data)
{
GimpColormapEditor *editor;
GimpImage *gimage;
gint num_colors = 0;
editor = GIMP_COLORMAP_EDITOR (data);
gimage = editor->gimage;
if (gimage)
{
num_colors = gimage->num_cols;
}
#define SET_SENSITIVE(menu,condition) \
gimp_item_factory_set_sensitive (factory, menu, (condition) != 0)
SET_SENSITIVE ("/Add Color", gimage && num_colors < 256);
SET_SENSITIVE ("/Edit Color...", gimage);
#undef SET_SENSITIVE
}
/* private functions */
static void
colormap_editor_color_notebook_callback (ColorNotebook *color_notebook,
const GimpRGB *color,
ColorNotebookState state,
gpointer data)
{
GimpColormapEditor *editor;
GimpImage *gimage;
editor = GIMP_COLORMAP_EDITOR (data);
gimage = editor->gimage;
switch (state)
{
case COLOR_NOTEBOOK_UPDATE:
break;
case COLOR_NOTEBOOK_OK:
gimp_rgb_get_uchar (color,
&gimage->cmap[editor->col_index * 3 + 0],
&gimage->cmap[editor->col_index * 3 + 1],
&gimage->cmap[editor->col_index * 3 + 2]);
gimp_image_colormap_changed (gimage, editor->col_index);
gdisplays_flush ();
/* Fall through */
case COLOR_NOTEBOOK_CANCEL:
color_notebook_hide (editor->color_notebook);
}
}

View File

@ -0,0 +1,34 @@
/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* 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.
*/
#ifndef __COLORMAP_EDITOR_COMMANDS_H__
#define __COLORMAP_EDITOR_COMMANDS_H__
void colormap_editor_add_color_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
void colormap_editor_edit_color_cmd_callback (GtkWidget *widget,
gpointer data,
guint action);
void colormap_editor_menu_update (GtkItemFactory *factory,
gpointer data);
#endif /* __COLORMAP_EDITOR_COMMANDS_H__ */

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -44,6 +44,7 @@
#include "gimpcolormapeditor.h" #include "gimpcolormapeditor.h"
#include "gimpdnd.h" #include "gimpdnd.h"
#include "gimpitemfactory.h"
#include "gui/color-notebook.h" #include "gui/color-notebook.h"
@ -69,58 +70,48 @@ enum
static void gimp_colormap_editor_class_init (GimpColormapEditorClass *klass); static void gimp_colormap_editor_class_init (GimpColormapEditorClass *klass);
static void gimp_colormap_editor_init (GimpColormapEditor *colormap_editor); static void gimp_colormap_editor_init (GimpColormapEditor *colormap_editor);
static void editor_create_popup_menu (GimpColormapEditor *editor); static void gimp_colormap_editor_destroy (GtkObject *object);
static void gimp_colormap_editor_unmap (GtkWidget *widget);
/* indexed palette routines */ static void gimp_colormap_editor_draw (GimpColormapEditor *editor);
static void editor_draw (GimpColormapEditor *editor); static void gimp_colormap_editor_draw_cell (GimpColormapEditor *editor,
static void editor_clear (GimpColormapEditor *editor, gint col);
gint start_row); static void gimp_colormap_editor_clear (GimpColormapEditor *editor,
static void editor_update_entries (GimpColormapEditor *editor); gint start_row);
static void editor_set_index (GimpColormapEditor *editor, static void gimp_colormap_editor_update_entries (GimpColormapEditor *editor);
gint i); static void gimp_colormap_editor_set_index (GimpColormapEditor *editor,
static void editor_draw_cell (GimpColormapEditor *editor, gint i);
gint col);
/* indexed palette menu callbacks */ static void gimp_colormap_preview_size_allocate (GtkWidget *widget,
static void editor_add_callback (GtkWidget *widget, GtkAllocation *allocation,
gpointer data); GimpColormapEditor *editor);
static void editor_edit_callback (GtkWidget *widget, static gboolean
gpointer data); gimp_colormap_preview_button_press (GtkWidget *widget,
static void editor_select_callback (ColorNotebook *color_notebook, GdkEventButton *bevent,
const GimpRGB *color, GimpColormapEditor *editor);
ColorNotebookState state, static void gimp_colormap_preview_drag_color (GtkWidget *widget,
gpointer data); GimpRGB *color,
gpointer data);
static void gimp_colormap_preview_drop_color (GtkWidget *widget,
const GimpRGB *color,
gpointer data);
/* event callback */ static void gimp_colormap_adjustment_changed (GtkAdjustment *adjustment,
static gint editor_area_button_press (GtkWidget *widget, GimpColormapEditor *editor);
GdkEventButton *bevent, static void gimp_colormap_hex_entry_activate (GtkEntry *entry,
GimpColormapEditor *editor); GimpColormapEditor *editor);
static void gimp_colormap_hex_entry_focus_out (GtkEntry *entry,
GdkEvent *event,
GimpColormapEditor *editor);
/* create image menu */ static void gimp_colormap_image_mode_changed (GimpImage *gimage,
static void editor_area_size_allocate (GtkWidget *widget, GimpColormapEditor *editor);
GtkAllocation *allocation, static void gimp_colormap_image_colormap_changed (GimpImage *gimage,
GimpColormapEditor *editor); gint ncol,
GimpColormapEditor *editor);
static void index_adjustment_change_cb (GtkAdjustment *adjustment,
GimpColormapEditor *editor);
static void hex_entry_change_cb (GtkEntry *entry,
GimpColormapEditor *editor);
static void image_mode_changed_cb (GimpImage *gimage,
GimpColormapEditor *editor);
static void image_colormap_changed_cb (GimpImage *gimage,
gint ncol,
GimpColormapEditor *editor);
static void editor_drag_color (GtkWidget *widget,
GimpRGB *color,
gpointer data);
static void editor_drop_color (GtkWidget *widget,
const GimpRGB *color,
gpointer data);
static guint gimp_colormap_editor_signals[LAST_SIGNAL] = { 0 }; static guint editor_signals[LAST_SIGNAL] = { 0 };
static GimpEditorClass *parent_class = NULL; static GimpEditorClass *parent_class = NULL;
@ -161,9 +152,15 @@ gimp_colormap_editor_get_type (void)
static void static void
gimp_colormap_editor_class_init (GimpColormapEditorClass* klass) gimp_colormap_editor_class_init (GimpColormapEditorClass* klass)
{ {
GtkObjectClass *object_class;
GtkWidgetClass *widget_class;
object_class = GTK_OBJECT_CLASS (klass);
widget_class = GTK_WIDGET_CLASS (klass);
parent_class = g_type_class_peek_parent (klass); parent_class = g_type_class_peek_parent (klass);
gimp_colormap_editor_signals[SELECTED] = editor_signals[SELECTED] =
g_signal_new ("selected", g_signal_new ("selected",
G_TYPE_FROM_CLASS (klass), G_TYPE_FROM_CLASS (klass),
G_SIGNAL_RUN_FIRST, G_SIGNAL_RUN_FIRST,
@ -172,29 +169,63 @@ gimp_colormap_editor_class_init (GimpColormapEditorClass* klass)
gimp_marshal_VOID__VOID, gimp_marshal_VOID__VOID,
G_TYPE_NONE, 0); G_TYPE_NONE, 0);
klass->selected = NULL; object_class->destroy = gimp_colormap_editor_destroy;
widget_class->unmap = gimp_colormap_editor_unmap;
klass->selected = NULL;
} }
static void static void
gimp_colormap_editor_init (GimpColormapEditor *colormap_editor) gimp_colormap_editor_init (GimpColormapEditor *colormap_editor)
{ {
colormap_editor->image = NULL; colormap_editor->gimage = NULL;
colormap_editor->col_index = 0; colormap_editor->col_index = 0;
colormap_editor->dnd_col_index = 0; colormap_editor->dnd_col_index = 0;
colormap_editor->palette = NULL; colormap_editor->palette = NULL;
colormap_editor->image_menu = NULL;
colormap_editor->popup_menu = NULL;
colormap_editor->option_menu = NULL;
colormap_editor->xn = 0; colormap_editor->xn = 0;
colormap_editor->yn = 0; colormap_editor->yn = 0;
colormap_editor->cellsize = 0; colormap_editor->cellsize = 0;
colormap_editor->index_adjustment = NULL; colormap_editor->index_adjustment = NULL;
colormap_editor->index_spinbutton = NULL; colormap_editor->index_spinbutton = NULL;
colormap_editor->color_entry = NULL; colormap_editor->color_entry = NULL;
colormap_editor->add_item = NULL;
colormap_editor->color_notebook = NULL; colormap_editor->color_notebook = NULL;
} }
static void
gimp_colormap_editor_destroy (GtkObject *object)
{
GimpColormapEditor *editor;
editor = GIMP_COLORMAP_EDITOR (object);
if (editor->color_notebook)
{
color_notebook_free (editor->color_notebook);
editor->color_notebook = NULL;
}
GTK_OBJECT_CLASS (parent_class)->destroy (object);
}
static void
gimp_colormap_editor_unmap (GtkWidget *widget)
{
GimpColormapEditor *editor;
editor = GIMP_COLORMAP_EDITOR (widget);
if (editor->color_notebook)
{
color_notebook_hide (editor->color_notebook);
}
GTK_WIDGET_CLASS (parent_class)->unmap (widget);
}
/* public functions */
GtkWidget * GtkWidget *
gimp_colormap_editor_new (GimpImage *gimage) gimp_colormap_editor_new (GimpImage *gimage)
{ {
@ -206,8 +237,6 @@ gimp_colormap_editor_new (GimpImage *gimage)
editor = g_object_new (GIMP_TYPE_COLORMAP_EDITOR, NULL); editor = g_object_new (GIMP_TYPE_COLORMAP_EDITOR, NULL);
editor_create_popup_menu (editor);
/* The palette frame */ /* The palette frame */
frame = gtk_frame_new (NULL); frame = gtk_frame_new (NULL);
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN);
@ -222,11 +251,11 @@ gimp_colormap_editor_new (GimpImage *gimage)
gtk_widget_show (editor->palette); gtk_widget_show (editor->palette);
g_signal_connect_after (G_OBJECT (editor->palette), "size_allocate", g_signal_connect_after (G_OBJECT (editor->palette), "size_allocate",
G_CALLBACK (editor_area_size_allocate), G_CALLBACK (gimp_colormap_preview_size_allocate),
editor); editor);
g_signal_connect (G_OBJECT (editor->palette), "button_press_event", g_signal_connect (G_OBJECT (editor->palette), "button_press_event",
G_CALLBACK (editor_area_button_press), G_CALLBACK (gimp_colormap_preview_button_press),
editor); editor);
/* dnd stuff */ /* dnd stuff */
@ -235,7 +264,8 @@ gimp_colormap_editor_new (GimpImage *gimage)
color_palette_target_table, color_palette_target_table,
G_N_ELEMENTS (color_palette_target_table), G_N_ELEMENTS (color_palette_target_table),
GDK_ACTION_COPY | GDK_ACTION_MOVE); GDK_ACTION_COPY | GDK_ACTION_MOVE);
gimp_dnd_color_source_set (editor->palette, editor_drag_color, editor); gimp_dnd_color_source_set (editor->palette, gimp_colormap_preview_drag_color,
editor);
gtk_drag_dest_set (editor->palette, gtk_drag_dest_set (editor->palette,
GTK_DEST_DEFAULT_HIGHLIGHT | GTK_DEST_DEFAULT_HIGHLIGHT |
@ -244,7 +274,8 @@ gimp_colormap_editor_new (GimpImage *gimage)
color_palette_target_table, color_palette_target_table,
G_N_ELEMENTS (color_palette_target_table), G_N_ELEMENTS (color_palette_target_table),
GDK_ACTION_COPY); GDK_ACTION_COPY);
gimp_dnd_color_dest_set (editor->palette, editor_drop_color, editor); gimp_dnd_color_dest_set (editor->palette, gimp_colormap_preview_drop_color,
editor);
/* some helpful hints */ /* some helpful hints */
table = gtk_table_new (2, 2, FALSE); table = gtk_table_new (2, 2, FALSE);
@ -262,7 +293,7 @@ gimp_colormap_editor_new (GimpImage *gimage)
editor->index_spinbutton, 1, TRUE); editor->index_spinbutton, 1, TRUE);
g_signal_connect (G_OBJECT (editor->index_adjustment), "value_changed", g_signal_connect (G_OBJECT (editor->index_adjustment), "value_changed",
G_CALLBACK (index_adjustment_change_cb), G_CALLBACK (gimp_colormap_adjustment_changed),
editor); editor);
editor->color_entry = gtk_entry_new (); editor->color_entry = gtk_entry_new ();
@ -272,7 +303,10 @@ gimp_colormap_editor_new (GimpImage *gimage)
editor->color_entry, 1, TRUE); editor->color_entry, 1, TRUE);
g_signal_connect (G_OBJECT (editor->color_entry), "activate", g_signal_connect (G_OBJECT (editor->color_entry), "activate",
G_CALLBACK (hex_entry_change_cb), G_CALLBACK (gimp_colormap_hex_entry_activate),
editor);
g_signal_connect (G_OBJECT (editor->color_entry), "focus_out_event",
G_CALLBACK (gimp_colormap_hex_entry_focus_out),
editor); editor);
gimp_colormap_editor_set_image (editor, gimage); gimp_colormap_editor_set_image (editor, gimage);
@ -285,8 +319,7 @@ gimp_colormap_editor_selected (GimpColormapEditor *editor)
{ {
g_return_if_fail (GIMP_IS_COLORMAP_EDITOR (editor)); g_return_if_fail (GIMP_IS_COLORMAP_EDITOR (editor));
g_signal_emit (G_OBJECT (editor), g_signal_emit (G_OBJECT (editor), editor_signals[SELECTED], 0);
gimp_colormap_editor_signals[SELECTED], 0);
} }
void void
@ -296,54 +329,51 @@ gimp_colormap_editor_set_image (GimpColormapEditor *editor,
g_return_if_fail (GIMP_IS_COLORMAP_EDITOR (editor)); g_return_if_fail (GIMP_IS_COLORMAP_EDITOR (editor));
g_return_if_fail (! gimage || GIMP_IS_IMAGE (gimage)); g_return_if_fail (! gimage || GIMP_IS_IMAGE (gimage));
if (editor->image) if (editor->gimage)
{ {
g_signal_handlers_disconnect_by_func (G_OBJECT (editor->image), g_signal_handlers_disconnect_by_func (G_OBJECT (editor->gimage),
image_mode_changed_cb, gimp_colormap_image_mode_changed,
editor); editor);
g_signal_handlers_disconnect_by_func (G_OBJECT (editor->image), g_signal_handlers_disconnect_by_func (G_OBJECT (editor->gimage),
image_colormap_changed_cb, gimp_colormap_image_colormap_changed,
editor); editor);
if (editor->color_notebook)
color_notebook_hide (editor->color_notebook);
if (! gimage || (gimp_image_base_type (gimage) != GIMP_INDEXED)) if (! gimage || (gimp_image_base_type (gimage) != GIMP_INDEXED))
{ {
if (editor->color_notebook)
color_notebook_hide (editor->color_notebook);
editor->index_adjustment->upper = 0; editor->index_adjustment->upper = 0;
gtk_adjustment_changed (editor->index_adjustment); gtk_adjustment_changed (editor->index_adjustment);
if (GTK_WIDGET_MAPPED (GTK_WIDGET (editor))) if (GTK_WIDGET_MAPPED (GTK_WIDGET (editor)))
editor_clear (editor, -1); gimp_colormap_editor_clear (editor, -1);
} }
} }
editor->image = gimage; editor->gimage = gimage;
editor->col_index = 0; editor->col_index = 0;
editor->dnd_col_index = 0; editor->dnd_col_index = 0;
if (gimage) if (gimage)
{ {
g_signal_connect (G_OBJECT (gimage), "mode_changed", g_signal_connect (G_OBJECT (gimage), "mode_changed",
G_CALLBACK (image_mode_changed_cb), G_CALLBACK (gimp_colormap_image_mode_changed),
editor); editor);
g_signal_connect (G_OBJECT (gimage), "colormap_changed", g_signal_connect (G_OBJECT (gimage), "colormap_changed",
G_CALLBACK (image_colormap_changed_cb), G_CALLBACK (gimp_colormap_image_colormap_changed),
editor); editor);
if (gimp_image_base_type (gimage) == GIMP_INDEXED) if (gimp_image_base_type (gimage) == GIMP_INDEXED)
{ {
editor_draw (editor); gimp_colormap_editor_draw (editor);
editor->index_adjustment->upper = editor->image->num_cols - 1; editor->index_adjustment->upper = editor->gimage->num_cols - 1;
gtk_adjustment_changed (editor->index_adjustment); gtk_adjustment_changed (editor->index_adjustment);
gtk_widget_set_sensitive (editor->add_item,
gimage->num_cols < 256);
} }
} }
editor_update_entries (editor); gimp_colormap_editor_update_entries (editor);
} }
GimpImage * GimpImage *
@ -351,7 +381,7 @@ gimp_colormap_editor_get_image (GimpColormapEditor *editor)
{ {
g_return_val_if_fail (GIMP_IS_COLORMAP_EDITOR (editor), NULL); g_return_val_if_fail (GIMP_IS_COLORMAP_EDITOR (editor), NULL);
return editor->image; return editor->gimage;
} }
gint gint
@ -365,97 +395,10 @@ gimp_colormap_editor_col_index (GimpColormapEditor *editor)
/* private functions */ /* private functions */
static void
editor_create_popup_menu (GimpColormapEditor *editor)
{
GtkWidget *menu;
GtkWidget *menu_item;
editor->popup_menu = menu = gtk_menu_new ();
menu_item = gtk_menu_item_new_with_label (_("Add"));
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
gtk_widget_show (menu_item);
g_signal_connect (G_OBJECT (menu_item), "activate",
G_CALLBACK (editor_add_callback),
editor);
editor->add_item = menu_item;
menu_item = gtk_menu_item_new_with_label (_("Edit"));
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
gtk_widget_show (menu_item);
g_signal_connect (G_OBJECT (menu_item), "activate",
G_CALLBACK (editor_edit_callback),
editor);
}
static void
editor_drag_color (GtkWidget *widget,
GimpRGB *color,
gpointer data)
{
GimpColormapEditor *editor;
GimpImage *gimage;
editor = (GimpColormapEditor *) data;
gimage = editor->image;
if (gimage && (gimp_image_base_type (gimage) == GIMP_INDEXED))
{
guint col;
col = editor->dnd_col_index;
gimp_rgba_set_uchar (color,
gimage->cmap[col * 3 + 0],
gimage->cmap[col * 3 + 1],
gimage->cmap[col * 3 + 2],
255);
}
}
static void
editor_drop_color (GtkWidget *widget,
const GimpRGB *color,
gpointer data)
{
GimpColormapEditor *editor;
GimpImage *gimage;
editor = (GimpColormapEditor *) data;
gimage = editor->image;
if (gimage && (gimp_image_base_type (gimage) == GIMP_INDEXED) &&
gimage->num_cols < 256)
{
gimp_rgb_get_uchar (color,
&gimage->cmap[editor->image->num_cols * 3],
&gimage->cmap[editor->image->num_cols * 3 + 1],
&gimage->cmap[editor->image->num_cols * 3 + 2]);
gimage->num_cols++;
gimp_image_colormap_changed (gimage, -1);
}
}
static void
editor_area_size_allocate (GtkWidget *widget,
GtkAllocation *alloc,
GimpColormapEditor *editor)
{
if (editor->image && (gimp_image_base_type (editor->image) == GIMP_INDEXED))
editor_draw (editor);
else
editor_clear (editor, -1);
}
#define MIN_CELL_SIZE 4 #define MIN_CELL_SIZE 4
static void static void
editor_draw (GimpColormapEditor *editor) gimp_colormap_editor_draw (GimpColormapEditor *editor)
{ {
GimpImage *gimage; GimpImage *gimage;
gint i, j, k, l, b; gint i, j, k, l, b;
@ -464,10 +407,7 @@ editor_draw (GimpColormapEditor *editor)
gint cellsize, ncol, xn, yn, width, height; gint cellsize, ncol, xn, yn, width, height;
GtkWidget *palette; GtkWidget *palette;
g_return_if_fail (editor); gimage = editor->gimage;
g_return_if_fail (editor->image);
gimage = editor->image;
palette = editor->palette; palette = editor->palette;
width = palette->allocation.width; width = palette->allocation.width;
@ -476,7 +416,7 @@ editor_draw (GimpColormapEditor *editor)
if (! ncol) if (! ncol)
{ {
editor_clear (editor, -1); gimp_colormap_editor_clear (editor, -1);
return; return;
} }
@ -529,24 +469,24 @@ editor_draw (GimpColormapEditor *editor)
} }
} }
editor_clear (editor, yn * cellsize); gimp_colormap_editor_clear (editor, yn * cellsize);
editor_draw_cell (editor, editor->col_index); gimp_colormap_editor_draw_cell (editor, editor->col_index);
g_free (row); g_free (row);
gtk_widget_queue_draw (palette); gtk_widget_queue_draw (palette);
} }
static void static void
editor_draw_cell (GimpColormapEditor *editor, gimp_colormap_editor_draw_cell (GimpColormapEditor *editor,
gint col) gint col)
{ {
guchar *row; guchar *row;
gint cellsize, x, y, k; gint cellsize, x, y, k;
g_assert (editor); g_assert (editor);
g_assert (editor->image); g_assert (editor->gimage);
g_assert (col < editor->image->num_cols); g_assert (col < editor->gimage->num_cols);
cellsize = editor->cellsize; cellsize = editor->cellsize;
row = g_new (guchar, cellsize * 3); row = g_new (guchar, cellsize * 3);
@ -570,9 +510,9 @@ editor_draw_cell (GimpColormapEditor *editor,
= 255 * (cellsize & 1); = 255 * (cellsize & 1);
for (k = 1; k < cellsize - 1; k++) for (k = 1; k < cellsize - 1; k++)
{ {
row[k*3] = editor->image->cmap[col * 3]; row[k*3] = editor->gimage->cmap[col * 3];
row[k*3+1] = editor->image->cmap[col * 3 + 1]; row[k*3+1] = editor->gimage->cmap[col * 3 + 1];
row[k*3+2] = editor->image->cmap[col * 3 + 2]; row[k*3+2] = editor->gimage->cmap[col * 3 + 2];
} }
for (k = 1; k < cellsize - 1; k+=2) for (k = 1; k < cellsize - 1; k+=2)
gtk_preview_draw_row (GTK_PREVIEW (editor->palette), row, gtk_preview_draw_row (GTK_PREVIEW (editor->palette), row,
@ -589,9 +529,9 @@ editor_draw_cell (GimpColormapEditor *editor,
{ {
for (k = 0; k < cellsize; k++) for (k = 0; k < cellsize; k++)
{ {
row[k*3] = editor->image->cmap[col * 3]; row[k*3] = editor->gimage->cmap[col * 3];
row[k*3+1] = editor->image->cmap[col * 3 + 1]; row[k*3+1] = editor->gimage->cmap[col * 3 + 1];
row[k*3+2] = editor->image->cmap[col * 3 + 2]; row[k*3+2] = editor->gimage->cmap[col * 3 + 2];
} }
for (k = 0; k < cellsize; k++) for (k = 0; k < cellsize; k++)
gtk_preview_draw_row (GTK_PREVIEW (editor->palette), row, gtk_preview_draw_row (GTK_PREVIEW (editor->palette), row,
@ -602,10 +542,10 @@ editor_draw_cell (GimpColormapEditor *editor,
x, y, x, y,
cellsize, cellsize); cellsize, cellsize);
} }
static void static void
editor_clear (GimpColormapEditor *editor, gimp_colormap_editor_clear (GimpColormapEditor *editor,
gint start_row) gint start_row)
{ {
gint i, j; gint i, j;
gint offset; gint offset;
@ -613,8 +553,6 @@ editor_clear (GimpColormapEditor *editor,
guchar *row = NULL; guchar *row = NULL;
GtkWidget *palette; GtkWidget *palette;
g_return_if_fail (editor);
palette = editor->palette; palette = editor->palette;
/* Watch out for negative values (at least on Win32) */ /* Watch out for negative values (at least on Win32) */
@ -671,9 +609,10 @@ editor_clear (GimpColormapEditor *editor,
} }
static void static void
editor_update_entries (GimpColormapEditor *editor) gimp_colormap_editor_update_entries (GimpColormapEditor *editor)
{ {
if (! editor->image || (gimp_image_base_type (editor->image) != GIMP_INDEXED)) if (! editor->gimage ||
(gimp_image_base_type (editor->gimage) != GIMP_INDEXED))
{ {
gtk_widget_set_sensitive (editor->index_spinbutton, FALSE); gtk_widget_set_sensitive (editor->index_spinbutton, FALSE);
gtk_widget_set_sensitive (editor->color_entry, FALSE); gtk_widget_set_sensitive (editor->color_entry, FALSE);
@ -688,7 +627,7 @@ editor_update_entries (GimpColormapEditor *editor)
gtk_adjustment_set_value (editor->index_adjustment, editor->col_index); gtk_adjustment_set_value (editor->index_adjustment, editor->col_index);
col = &editor->image->cmap[editor->col_index * 3]; col = &editor->gimage->cmap[editor->col_index * 3];
string = g_strdup_printf ("#%02x%02x%02x", col[0], col[1], col[2]); string = g_strdup_printf ("#%02x%02x%02x", col[0], col[1], col[2]);
gtk_entry_set_text (GTK_ENTRY (editor->color_entry), string); gtk_entry_set_text (GTK_ENTRY (editor->color_entry), string);
@ -700,8 +639,8 @@ editor_update_entries (GimpColormapEditor *editor)
} }
static void static void
editor_set_index (GimpColormapEditor *editor, gimp_colormap_editor_set_index (GimpColormapEditor *editor,
gint i) gint i)
{ {
if (i != editor->col_index) if (i != editor->col_index)
{ {
@ -710,179 +649,35 @@ editor_set_index (GimpColormapEditor *editor,
editor->col_index = i; editor->col_index = i;
editor->dnd_col_index = i; editor->dnd_col_index = i;
editor_draw_cell (editor, old); gimp_colormap_editor_draw_cell (editor, old);
editor_draw_cell (editor, i); gimp_colormap_editor_draw_cell (editor, i);
editor_update_entries (editor); gimp_colormap_editor_update_entries (editor);
} }
} }
static void static void
index_adjustment_change_cb (GtkAdjustment *adjustment, gimp_colormap_preview_size_allocate (GtkWidget *widget,
GimpColormapEditor *editor) GtkAllocation *alloc,
GimpColormapEditor *editor)
{ {
g_return_if_fail (editor); if (editor->gimage && (gimp_image_base_type (editor->gimage) == GIMP_INDEXED))
gimp_colormap_editor_draw (editor);
if (!editor->image)
return;
editor_set_index (editor, (gint) (adjustment->value + 0.5));
editor_update_entries (editor);
}
static void
hex_entry_change_cb (GtkEntry *entry,
GimpColormapEditor *editor)
{
const gchar *s;
gulong i;
g_return_if_fail (editor);
g_return_if_fail (editor->image);
s = gtk_entry_get_text (entry);
if (sscanf (s, "#%lx", &i))
{
guchar *c = &editor->image->cmap[3 * editor->col_index];
c[0] = (i & 0xFF0000) >> 16;
c[1] = (i & 0x00FF00) >> 8;
c[2] = (i & 0x0000FF);
gimp_image_colormap_changed (editor->image, editor->col_index);
}
editor_update_entries (editor);
}
static void
image_mode_changed_cb (GimpImage *gimage,
GimpColormapEditor *editor)
{
image_colormap_changed_cb (gimage, -1, editor);
}
static void
image_colormap_changed_cb (GimpImage *gimage,
gint ncol,
GimpColormapEditor *editor)
{
if (gimp_image_base_type (gimage) == GIMP_INDEXED)
{
if (ncol < 0)
{
editor_draw (editor);
}
else
{
editor_draw_cell (editor, ncol);
}
gtk_widget_set_sensitive (editor->add_item, (gimage->num_cols < 256));
if ((editor->index_adjustment->upper + 1) < gimage->num_cols)
{
editor->index_adjustment->upper = gimage->num_cols - 1;
gtk_adjustment_changed (editor->index_adjustment);
}
}
else else
{ gimp_colormap_editor_clear (editor, -1);
editor_clear (editor, -1);
}
if (ncol == editor->col_index || ncol == -1)
editor_update_entries (editor);
} }
static void
editor_add_callback (GtkWidget *widget,
gpointer data)
{
GimpColormapEditor *editor = data;
g_return_if_fail (editor); static gboolean
g_return_if_fail (editor->image->num_cols < 256); gimp_colormap_preview_button_press (GtkWidget *widget,
GdkEventButton *bevent,
memcpy (&editor->image->cmap[editor->image->num_cols * 3], GimpColormapEditor *editor)
&editor->image->cmap[editor->col_index * 3],
3);
editor->image->num_cols++;
gimp_image_colormap_changed (editor->image, -1);
}
static void
editor_edit_callback (GtkWidget *widget,
gpointer data)
{
GimpColormapEditor *editor = data;
GimpRGB color;
g_return_if_fail (editor);
gimp_rgba_set_uchar (&color,
editor->image->cmap[editor->col_index * 3],
editor->image->cmap[editor->col_index * 3 + 1],
editor->image->cmap[editor->col_index * 3 + 2],
255);
if (! editor->color_notebook)
{
editor->color_notebook
= color_notebook_new (_("Edit Indexed Color"),
(const GimpRGB *) &color,
editor_select_callback, editor, FALSE, FALSE);
}
else
{
color_notebook_show (editor->color_notebook);
color_notebook_set_color (editor->color_notebook, &color);
}
}
static void
editor_select_callback (ColorNotebook *color_notebook,
const GimpRGB *color,
ColorNotebookState state,
gpointer data)
{
GimpImage *gimage;
GimpColormapEditor *editor = data;
g_return_if_fail (editor);
g_return_if_fail (editor->image);
g_return_if_fail (editor->color_notebook);
gimage = editor->image;
switch (state)
{
case COLOR_NOTEBOOK_UPDATE:
break;
case COLOR_NOTEBOOK_OK:
gimp_rgb_get_uchar (color,
&gimage->cmap[editor->col_index * 3 + 0],
&gimage->cmap[editor->col_index * 3 + 1],
&gimage->cmap[editor->col_index * 3 + 2]);
gimp_image_colormap_changed (gimage, editor->col_index);
/* Fall through */
case COLOR_NOTEBOOK_CANCEL:
color_notebook_hide (editor->color_notebook);
}
}
static gint
editor_area_button_press (GtkWidget *widget,
GdkEventButton *bevent,
GimpColormapEditor *editor)
{ {
GimpImage *gimage; GimpImage *gimage;
guchar r, g, b; guchar r, g, b;
guint col; guint col;
gimage = editor->image; gimage = editor->gimage;
if (! (gimage && (gimp_image_base_type (gimage) == GIMP_INDEXED))) if (! (gimage && (gimp_image_base_type (gimage) == GIMP_INDEXED)))
return TRUE; return TRUE;
@ -891,10 +686,10 @@ editor_area_button_press (GtkWidget *widget,
&& bevent->x < editor->cellsize * editor->xn)) && bevent->x < editor->cellsize * editor->xn))
return TRUE; return TRUE;
col = editor->xn * ((int)bevent->y / editor->cellsize) col = (editor->xn * ((gint) bevent->y / editor->cellsize) +
+ ((int)bevent->x / editor->cellsize); ((gint) bevent->x / editor->cellsize));
if (col >= editor->image->num_cols) if (col >= editor->gimage->num_cols)
return TRUE; return TRUE;
r = gimage->cmap[col * 3 + 0]; r = gimage->cmap[col * 3 + 0];
@ -904,7 +699,7 @@ editor_area_button_press (GtkWidget *widget,
switch (bevent->button) switch (bevent->button)
{ {
case 1: case 1:
editor_set_index (editor, col); gimp_colormap_editor_set_index (editor, col);
gimp_colormap_editor_selected (editor); gimp_colormap_editor_selected (editor);
break; break;
@ -913,10 +708,14 @@ editor_area_button_press (GtkWidget *widget,
break; break;
case 3: case 3:
editor_set_index (editor, col); {
gtk_menu_popup (GTK_MENU (editor->popup_menu), NULL, NULL, GimpItemFactory *factory;
NULL, NULL, 3,
bevent->time); factory = gimp_item_factory_from_path ("<ColormapEditor>");
gimp_colormap_editor_set_index (editor, col);
gimp_item_factory_popup_with_data (factory, editor, NULL);
}
break; break;
default: default:
@ -925,3 +724,130 @@ editor_area_button_press (GtkWidget *widget,
return TRUE; return TRUE;
} }
static void
gimp_colormap_preview_drag_color (GtkWidget *widget,
GimpRGB *color,
gpointer data)
{
GimpColormapEditor *editor;
GimpImage *gimage;
editor = (GimpColormapEditor *) data;
gimage = editor->gimage;
if (gimage && (gimp_image_base_type (gimage) == GIMP_INDEXED))
{
guint col;
col = editor->dnd_col_index;
gimp_rgba_set_uchar (color,
gimage->cmap[col * 3 + 0],
gimage->cmap[col * 3 + 1],
gimage->cmap[col * 3 + 2],
OPAQUE_OPACITY);
}
}
static void
gimp_colormap_preview_drop_color (GtkWidget *widget,
const GimpRGB *color,
gpointer data)
{
GimpColormapEditor *editor;
GimpImage *gimage;
editor = (GimpColormapEditor *) data;
gimage = editor->gimage;
if (gimage && (gimp_image_base_type (gimage) == GIMP_INDEXED) &&
gimage->num_cols < 256)
{
gimp_rgb_get_uchar (color,
&gimage->cmap[editor->gimage->num_cols * 3],
&gimage->cmap[editor->gimage->num_cols * 3 + 1],
&gimage->cmap[editor->gimage->num_cols * 3 + 2]);
gimage->num_cols++;
gimp_image_colormap_changed (gimage, -1);
}
}
static void
gimp_colormap_adjustment_changed (GtkAdjustment *adjustment,
GimpColormapEditor *editor)
{
if (! editor->gimage)
return;
gimp_colormap_editor_set_index (editor, (gint) (adjustment->value + 0.5));
gimp_colormap_editor_update_entries (editor);
}
static void
gimp_colormap_hex_entry_activate (GtkEntry *entry,
GimpColormapEditor *editor)
{
const gchar *s;
gulong i;
s = gtk_entry_get_text (entry);
if (sscanf (s, "#%lx", &i))
{
guchar *c = &editor->gimage->cmap[3 * editor->col_index];
c[0] = (i & 0xFF0000) >> 16;
c[1] = (i & 0x00FF00) >> 8;
c[2] = (i & 0x0000FF);
gimp_image_colormap_changed (editor->gimage, editor->col_index);
}
gimp_colormap_editor_update_entries (editor);
}
static void
gimp_colormap_hex_entry_focus_out (GtkEntry *entry,
GdkEvent *event,
GimpColormapEditor *editor)
{
gimp_colormap_hex_entry_activate (entry, editor);
}
static void
gimp_colormap_image_mode_changed (GimpImage *gimage,
GimpColormapEditor *editor)
{
gimp_colormap_image_colormap_changed (gimage, -1, editor);
}
static void
gimp_colormap_image_colormap_changed (GimpImage *gimage,
gint ncol,
GimpColormapEditor *editor)
{
if (gimp_image_base_type (gimage) == GIMP_INDEXED)
{
if (ncol < 0)
{
gimp_colormap_editor_draw (editor);
}
else
{
gimp_colormap_editor_draw_cell (editor, ncol);
}
if ((editor->index_adjustment->upper + 1) < gimage->num_cols)
{
editor->index_adjustment->upper = gimage->num_cols - 1;
gtk_adjustment_changed (editor->index_adjustment);
}
}
else
{
gimp_colormap_editor_clear (editor, -1);
}
if (ncol == editor->col_index || ncol == -1)
gimp_colormap_editor_update_entries (editor);
}

View File

@ -39,20 +39,16 @@ struct _GimpColormapEditor
{ {
GimpEditor parent_instance; GimpEditor parent_instance;
GimpImage *image; GimpImage *gimage;
gint col_index; gint col_index;
gint dnd_col_index; gint dnd_col_index;
GtkWidget *palette; GtkWidget *palette;
GtkWidget *image_menu;
GtkWidget *popup_menu;
GtkOptionMenu *option_menu;
gint xn; gint xn;
gint yn; gint yn;
gint cellsize; gint cellsize;
GtkAdjustment *index_adjustment; GtkAdjustment *index_adjustment;
GtkWidget *index_spinbutton; GtkWidget *index_spinbutton;
GtkWidget *color_entry; GtkWidget *color_entry;
GtkWidget *add_item;
ColorNotebook *color_notebook; ColorNotebook *color_notebook;
}; };

View File

@ -177,7 +177,7 @@ gimp_editor_add_button (GimpEditor *editor,
extended_callback, extended_callback,
callback_data); callback_data);
image = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_BUTTON); image = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_MENU);
gtk_container_add (GTK_CONTAINER (button), image); gtk_container_add (GTK_CONTAINER (button), image);
gtk_widget_show (image); gtk_widget_show (image);