gimp/app/widgets/Makefile.am
Michael Natterer f63cd1d979 new signal "floating_selection_changed", removed ancient declaration of
2001-05-07  Michael Natterer  <mitch@gimp.org>

	* app/gimpimage.[hc]: new signal "floating_selection_changed",
	removed ancient declaration of _GimpImageRepaintArg.

	* app/floating_sel.c
	* app/undo.c: emit "floating_selection_changed" where approptiate.

	* app/gimage_mask.c: s/"Floated Layer"/"Floating Selection"/
	because we view this layer directly now (not some thing with an
	"L" icon).

	* app/gui/layers-commands.c: don't use confusing boolean variables
	which indicate that something is not true (reversed their logic).

	* app/widgets/Makefile.am
	* app/widgets/widgets-types.h
	* app/widgets/gimpchannellistitem.[ch]: new widget. Does nothing yet.

	* app/widgets/gimpchannellistview.c: set the button box
	insensitive when there is a floating selection.

	* app/widgets/gimpdrawablelistitem.c: made channel DND work again.
	Very ugly btw.

	* app/widgets/gimpdrawablelistview.c: connect to
	"floating_selection_changed". Fake a change of the active drawable
	so the button boxes get updated correctly.

	* app/widgets/gimplayerlistview.c: set the sensitivity of the
	buttons correctly.

	* app/widgets/gimplistitem.c: create GimpChannelListItems for
	channels.  Some very ugly code to work around broken
	GTK_STATE_INSENSITIVE propagation in list items.
2001-05-08 01:32:25 +00:00

91 lines
2 KiB
Makefile

## Process this file with automake to produce Makefile.in
noinst_LTLIBRARIES = libappwidgets.la
libappwidgets_la_SOURCES = \
gimpbrushpreview.c \
gimpbrushpreview.h \
gimpchannellistitem.c \
gimpchannellistitem.h \
gimpchannellistview.c \
gimpchannellistview.h \
gimpcolorpanel.c \
gimpcolorpanel.h \
gimpcomponentlistitem.c \
gimpcomponentlistitem.h \
gimpcontainergridview.c \
gimpcontainergridview.h \
gimpcontainerlistview.c \
gimpcontainerlistview.h \
gimpcontainermenu.c \
gimpcontainermenu.h \
gimpcontainermenuimpl.c \
gimpcontainermenuimpl.h \
gimpcontainerview.c \
gimpcontainerview.h \
gimpdatafactoryview.c \
gimpdatafactoryview.h \
gimpdialogfactory.c \
gimpdialogfactory.h \
gimpdock.c \
gimpdock.h \
gimpdockable.c \
gimpdockable.h \
gimpdockbook.c \
gimpdockbook.h \
gimpdrawablelistitem.c \
gimpdrawablelistitem.h \
gimpdrawablelistview.c \
gimpdrawablelistview.h \
gimpdrawablepreview.c \
gimpdrawablepreview.h \
gimpgradientpreview.c \
gimpgradientpreview.h \
gimphistogramview.c \
gimphistogramview.h \
gimpimagedock.c \
gimpimagedock.h \
gimpimagepreview.c \
gimpimagepreview.h \
gimplayerlistitem.c \
gimplayerlistitem.h \
gimplayerlistview.c \
gimplayerlistview.h \
gimplistitem.c \
gimplistitem.h \
gimpmenuitem.c \
gimpmenuitem.h \
gimppalettepreview.c \
gimppalettepreview.h \
gimppatternpreview.c \
gimppatternpreview.h \
gimppreview.c \
gimppreview.h \
gimptoolinfopreview.c \
gimptoolinfopreview.h \
gtkwrapbox.c \
gtkwrapbox.h \
gtkhwrapbox.c \
gtkhwrapbox.h \
gtkvwrapbox.c \
gtkvwrapbox.h \
gimpconstrainedhwrapbox.c \
gimpconstrainedhwrapbox.h \
widgets-types.h
AM_CPPFLAGS = \
-DG_LOG_DOMAIN=\"Gimp-Widgets\"
INCLUDES = \
-I$(top_srcdir) \
-I$(top_srcdir)/app \
$(GTK_CFLAGS) \
-I$(includedir)
.PHONY: files
files:
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
echo $$p; \
done