gimp/app/widgets/gimpbufferview.c
Michael Natterer d26c26686e app/Makefile.am removed.
2001-06-26  Michael Natterer  <mitch@gimp.org>

	* app/Makefile.am
	* app/color_transfer.[ch]: removed.

	* app/tools/Makefile.am
	* app/tools/gimpcolorbalancetool-transfer.[ch]: added.

	* app/tools/gimpcolorbalancetool.c: changed accordingly.

	* app/base/Makefile.am
	* app/base/tile-manager-crop.[ch]: formerly known as crop_buffer().

	* app/tools/gimptexttool.c: changed accordingly.

	* app/context_manager.[ch]: added the global clipboard and the
	named buffer list here.

	* app/app_procs.c: don't call color_transfer_init() and don't free
	the buffer stuff (done by the context manager now).

	* app/errorconsole.c: don't #include "gui/commands.h"

	* app/global_edit.[ch]: removed lots of stuff which is now done by
	gui/edit-commands.* or the new GimpBuffer object. The "paste
	named" dialog will go away and this file will be moved to core/
	soon.

	* app/image_new.c: no need to declare the global_buffer extern any
	more.

	* app/qmask.c: don't #include "global_edit.h"

	* app/core/Makefile.am
	* app/core/core-types.h
	* app/core/gimpbuffer.[ch]: new object (aka named buffer)

	* app/core/gimpcontext.[ch]: added a GimpBuffer attribute.

	* app/core/gimpimage.[ch]: one s/int/gboolean/.

	* app/core/gimppattern.c: hmm...

	* app/gui/commands.[ch]: split up in small files:

	* app/gui/Makefile.am
	* app/gui/edit-commands.[ch]
	* app/gui/file-commands.[ch]
	* app/gui/image-commands.[ch]
	* app/gui/select-commands.[ch]
	* app/gui/view-commands.[ch]: new files.

	* app/gui/dialogs-constructors.[ch]
	* app/gui/dialogs.c: added the named buffer list & grid.

	* app/gui/file-new-dialog.[ch]
	* app/gui/menus.c
	* app/gui/palette-editor.c
	* app/gui/test-commands.c: changed accordingly.

	* app/pdb/edit_cmds.c
	* tools/pdbgen/pdb/edit.pdb: changed for the global_edit stuff.

	* app/widgets/Makefile.am
	* app/widgets/gimpbufferpreview.[ch]
	* app/widgets/gimpbufferview.[ch]
	* app/widgets/gimpcontainereditor.[ch]: new widgets.

	* app/widgets/gimpcontainerview-utils.c
	* app/widgets/gimpdatafactoryview.[ch]
	* app/widgets/gimpdnd.[ch]
	* app/widgets/gimpdrawablepreview.c
	* app/widgets/gimplayerlistview.c
	* app/widgets/gimppreview.c
	* app/widgets/widgets-types.h: changed accordingly for the new
	GimpBuffer object and it's views, misc. cleanups.

	* pixmaps/Makefile.am
	* pixmaps/paste-as-new.xpm
	* pixmaps/paste-into.xpm
	* pixmaps/paste.xpm: new pixmaps (they all look the same... Tigert? ;-)

	* po/POTFILES.in: added the new files.
2001-06-26 12:09:43 +00:00

482 lines
13 KiB
C

/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* gimpbufferview.c
* Copyright (C) 2001 Michael Natterer
*
* 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 "libgimpwidgets/gimpwidgets.h"
#include "widgets-types.h"
#include "core/gimpcontainer.h"
#include "core/gimpcontext.h"
#include "core/gimpbuffer.h"
#include "core/gimpimage.h"
#include "gimpcontainerview.h"
#include "gimpbufferview.h"
#include "gimpdnd.h"
#include "gdisplay.h"
#include "global_edit.h"
#include "libgimp/gimpintl.h"
#include "pixmaps/paste.xpm"
#include "pixmaps/paste-into.xpm"
#include "pixmaps/paste-as-new.xpm"
#include "pixmaps/delete.xpm"
static void gimp_buffer_view_class_init (GimpBufferViewClass *klass);
static void gimp_buffer_view_init (GimpBufferView *view);
static void gimp_buffer_view_destroy (GtkObject *object);
static void gimp_buffer_view_paste_clicked (GtkWidget *widget,
GimpBufferView *view);
static void gimp_buffer_view_paste_dropped (GtkWidget *widget,
GimpViewable *viewable,
gpointer data);
static void gimp_buffer_view_paste_into_clicked (GtkWidget *widget,
GimpBufferView *view);
static void gimp_buffer_view_paste_into_dropped (GtkWidget *widget,
GimpViewable *viewable,
gpointer data);
static void gimp_buffer_view_paste_as_new_clicked (GtkWidget *widget,
GimpBufferView *view);
static void gimp_buffer_view_paste_as_new_dropped (GtkWidget *widget,
GimpViewable *viewable,
gpointer data);
static void gimp_buffer_view_delete_clicked (GtkWidget *widget,
GimpBufferView *view);
static void gimp_buffer_view_delete_dropped (GtkWidget *widget,
GimpViewable *viewable,
gpointer data);
static void gimp_buffer_view_item_changed (GimpContext *context,
GimpViewable *viewable,
GimpBufferView *view);
static void gimp_buffer_view_item_activate (GtkWidget *context,
GimpViewable *viewable,
gpointer insert_data,
GimpBufferView *view);
static GimpContainerEditorClass *parent_class = NULL;
GtkType
gimp_buffer_view_get_type (void)
{
static guint view_type = 0;
if (! view_type)
{
GtkTypeInfo view_info =
{
"GimpBufferView",
sizeof (GimpBufferView),
sizeof (GimpBufferViewClass),
(GtkClassInitFunc) gimp_buffer_view_class_init,
(GtkObjectInitFunc) gimp_buffer_view_init,
/* reserved_1 */ NULL,
/* reserved_2 */ NULL,
(GtkClassInitFunc) NULL
};
view_type = gtk_type_unique (GIMP_TYPE_CONTAINER_EDITOR, &view_info);
}
return view_type;
}
static void
gimp_buffer_view_class_init (GimpBufferViewClass *klass)
{
GtkObjectClass *object_class;
object_class = (GtkObjectClass *) klass;
parent_class = gtk_type_class (GIMP_TYPE_CONTAINER_EDITOR);
object_class->destroy = gimp_buffer_view_destroy;
}
static void
gimp_buffer_view_init (GimpBufferView *view)
{
GimpContainerEditor *editor;
editor = GIMP_CONTAINER_EDITOR (view);
/* paste */
view->paste_button =
gimp_container_editor_add_button (editor,
paste_xpm,
_("Paste"), NULL,
gimp_buffer_view_paste_clicked);
gimp_gtk_drag_dest_set_by_type (GTK_WIDGET (view->paste_button),
GTK_DEST_DEFAULT_ALL,
GIMP_TYPE_BUFFER,
GDK_ACTION_COPY);
gimp_dnd_viewable_dest_set (GTK_WIDGET (view->paste_button),
GIMP_TYPE_BUFFER,
gimp_buffer_view_paste_dropped,
view);
/* paste into */
view->paste_into_button =
gimp_container_editor_add_button (editor,
paste_into_xpm,
_("Paste Into"), NULL,
gimp_buffer_view_paste_into_clicked);
gimp_gtk_drag_dest_set_by_type (GTK_WIDGET (view->paste_into_button),
GTK_DEST_DEFAULT_ALL,
GIMP_TYPE_BUFFER,
GDK_ACTION_COPY);
gimp_dnd_viewable_dest_set (GTK_WIDGET (view->paste_into_button),
GIMP_TYPE_BUFFER,
gimp_buffer_view_paste_into_dropped,
view);
/* paste as new */
view->paste_as_new_button =
gimp_container_editor_add_button (editor,
paste_as_new_xpm,
_("Paste Into"), NULL,
gimp_buffer_view_paste_as_new_clicked);
gimp_gtk_drag_dest_set_by_type (GTK_WIDGET (view->paste_as_new_button),
GTK_DEST_DEFAULT_ALL,
GIMP_TYPE_BUFFER,
GDK_ACTION_COPY);
gimp_dnd_viewable_dest_set (GTK_WIDGET (view->paste_as_new_button),
GIMP_TYPE_BUFFER,
gimp_buffer_view_paste_as_new_dropped,
view);
/* delete */
view->delete_button =
gimp_container_editor_add_button (editor,
delete_xpm,
_("Delete"), NULL,
gimp_buffer_view_delete_clicked);
gimp_gtk_drag_dest_set_by_type (GTK_WIDGET (view->delete_button),
GTK_DEST_DEFAULT_ALL,
GIMP_TYPE_BUFFER,
GDK_ACTION_COPY);
gimp_dnd_viewable_dest_set (GTK_WIDGET (view->delete_button),
GIMP_TYPE_BUFFER,
gimp_buffer_view_delete_dropped,
view);
gtk_widget_set_sensitive (view->paste_button, FALSE);
gtk_widget_set_sensitive (view->paste_into_button, FALSE);
gtk_widget_set_sensitive (view->paste_as_new_button, FALSE);
gtk_widget_set_sensitive (view->delete_button, FALSE);
}
static void
gimp_buffer_view_destroy (GtkObject *object)
{
GimpBufferView *view;
view = GIMP_BUFFER_VIEW (object);
if (GTK_OBJECT_CLASS (parent_class)->destroy)
GTK_OBJECT_CLASS (parent_class)->destroy (object);
}
GtkWidget *
gimp_buffer_view_new (GimpViewType view_type,
GimpContainer *container,
GimpContext *context,
gint preview_size,
gint min_items_x,
gint min_items_y)
{
GimpBufferView *buffer_view;
GimpContainerEditor *editor;
buffer_view = gtk_type_new (GIMP_TYPE_BUFFER_VIEW);
if (! gimp_container_editor_construct (GIMP_CONTAINER_EDITOR (buffer_view),
view_type,
container,
context,
preview_size,
min_items_x,
min_items_y))
{
gtk_object_unref (GTK_OBJECT (buffer_view));
return NULL;
}
editor = GIMP_CONTAINER_EDITOR (buffer_view);
gtk_signal_connect_while_alive
(GTK_OBJECT (context), "buffer_changed",
GTK_SIGNAL_FUNC (gimp_buffer_view_item_changed),
buffer_view,
GTK_OBJECT (buffer_view));
gtk_signal_connect_while_alive
(GTK_OBJECT (editor->view), "activate_item",
GTK_SIGNAL_FUNC (gimp_buffer_view_item_activate),
buffer_view,
GTK_OBJECT (buffer_view));
/* set button sensitivity */
gimp_buffer_view_item_changed (context,
(GimpViewable *)
gimp_context_get_buffer (context),
buffer_view);
return GTK_WIDGET (buffer_view);
}
static void
gimp_buffer_view_paste_clicked (GtkWidget *widget,
GimpBufferView *view)
{
GimpContainerEditor *editor;
GimpBuffer *buffer;
editor = GIMP_CONTAINER_EDITOR (view);
buffer = gimp_context_get_buffer (editor->view->context);
if (buffer && gimp_container_have (editor->view->container,
GIMP_OBJECT (buffer)))
{
GimpImage *gimage;
gimage = gimp_context_get_image (editor->view->context);
if (gimage)
{
edit_paste (gimage,
gimp_image_active_drawable (gimage),
buffer->tiles,
FALSE);
gdisplays_flush ();
}
}
}
static void
gimp_buffer_view_paste_dropped (GtkWidget *widget,
GimpViewable *viewable,
gpointer data)
{
GimpContainerEditor *editor;
editor = (GimpContainerEditor *) data;
if (viewable && gimp_container_have (editor->view->container,
GIMP_OBJECT (viewable)))
{
gimp_context_set_buffer (editor->view->context,
GIMP_BUFFER (viewable));
gimp_buffer_view_paste_clicked (NULL, data);
}
}
static void
gimp_buffer_view_paste_into_clicked (GtkWidget *widget,
GimpBufferView *view)
{
GimpContainerEditor *editor;
GimpBuffer *buffer;
editor = GIMP_CONTAINER_EDITOR (view);
buffer = gimp_context_get_buffer (editor->view->context);
if (buffer && gimp_container_have (editor->view->container,
GIMP_OBJECT (buffer)))
{
GimpImage *gimage;
gimage = gimp_context_get_image (editor->view->context);
if (gimage)
{
edit_paste (gimage,
gimp_image_active_drawable (gimage),
buffer->tiles,
TRUE);
gdisplays_flush ();
}
}
}
static void
gimp_buffer_view_paste_into_dropped (GtkWidget *widget,
GimpViewable *viewable,
gpointer data)
{
GimpContainerEditor *editor;
editor = (GimpContainerEditor *) data;
if (viewable && gimp_container_have (editor->view->container,
GIMP_OBJECT (viewable)))
{
gimp_context_set_buffer (editor->view->context,
GIMP_BUFFER (viewable));
gimp_buffer_view_paste_into_clicked (NULL, data);
}
}
static void
gimp_buffer_view_paste_as_new_clicked (GtkWidget *widget,
GimpBufferView *view)
{
GimpContainerEditor *editor;
GimpBuffer *buffer;
editor = GIMP_CONTAINER_EDITOR (view);
buffer = gimp_context_get_buffer (editor->view->context);
if (buffer && gimp_container_have (editor->view->container,
GIMP_OBJECT (buffer)))
{
GimpImage *gimage;
gimage = gimp_context_get_image (editor->view->context);
if (gimage)
{
edit_paste_as_new (gimage, buffer->tiles);
}
}
}
static void
gimp_buffer_view_paste_as_new_dropped (GtkWidget *widget,
GimpViewable *viewable,
gpointer data)
{
GimpContainerEditor *editor;
editor = (GimpContainerEditor *) data;
if (viewable && gimp_container_have (editor->view->container,
GIMP_OBJECT (viewable)))
{
gimp_context_set_buffer (editor->view->context,
GIMP_BUFFER (viewable));
gimp_buffer_view_paste_as_new_clicked (NULL, data);
}
}
static void
gimp_buffer_view_delete_clicked (GtkWidget *widget,
GimpBufferView *view)
{
GimpContainerEditor *editor;
GimpBuffer *buffer;
editor = GIMP_CONTAINER_EDITOR (view);
buffer = gimp_context_get_buffer (editor->view->context);
if (buffer && gimp_container_have (editor->view->container,
GIMP_OBJECT (buffer)))
{
gimp_container_remove (editor->view->container,
GIMP_OBJECT (buffer));
}
}
static void
gimp_buffer_view_delete_dropped (GtkWidget *widget,
GimpViewable *viewable,
gpointer data)
{
GimpContainerEditor *editor;
editor = (GimpContainerEditor *) data;
if (viewable && gimp_container_have (editor->view->container,
GIMP_OBJECT (viewable)))
{
gimp_context_set_buffer (editor->view->context,
GIMP_BUFFER (viewable));
gimp_buffer_view_delete_clicked (NULL, data);
}
}
static void
gimp_buffer_view_item_changed (GimpContext *context,
GimpViewable *viewable,
GimpBufferView *view)
{
gboolean paste_sensitive = FALSE;
gboolean paste_into_sensitive = FALSE;
gboolean paste_as_new_sensitive = FALSE;
gboolean delete_sensitive = FALSE;
if (viewable &&
gimp_container_have (GIMP_CONTAINER_EDITOR (view)->view->container,
GIMP_OBJECT (viewable)))
{
paste_sensitive = TRUE;
paste_into_sensitive = TRUE;
paste_as_new_sensitive = TRUE;
delete_sensitive = TRUE;
}
gtk_widget_set_sensitive (view->paste_button, paste_sensitive);
gtk_widget_set_sensitive (view->paste_into_button, paste_into_sensitive);
gtk_widget_set_sensitive (view->paste_as_new_button, paste_as_new_sensitive);
gtk_widget_set_sensitive (view->delete_button, delete_sensitive);
}
static void
gimp_buffer_view_item_activate (GtkWidget *widget,
GimpViewable *viewable,
gpointer insert_data,
GimpBufferView *view)
{
if (viewable &&
gimp_container_have (GIMP_CONTAINER_EDITOR (view)->view->container,
GIMP_OBJECT (viewable)))
{
gimp_buffer_view_paste_clicked (NULL, view);
}
}