2001-02-11 Michael Natterer <mitch@gimp.org> * app/Makefile.am * app/apptypes.h * app/gimpdata.[ch]: new abstract base class for everything (except images) which has a filename and can become dirty and must be saved. * app/gimpbrush.[ch] * app/gimpgradient.[ch] * app/gimppattern.[ch]: all derived from GimpData now. * app/gimpbrushgenerated.[ch] * app/brush_select.c * app/brushes.c * app/gimpbrushpipe.c * app/gradient_editor.c * app/gradients.c * app/patterns.c: removed lots of code duplication due to common file save magic. The gradient file format has changed: it now contains the gradient's name (no more ugly underscores). The files have the extension ".ggr". * app/gimpgradient.[ch]: save new gradients, load new and old gradients. * data/gradients/*: removed all old gradients and added the new ones.
92 lines
2 KiB
Makefile
92 lines
2 KiB
Makefile
gradientdatadir = $(gimpdatadir)/gradients
|
|
|
|
brushdata =
|
|
gradientdata =
|
|
palettedata =
|
|
patterndata =
|
|
|
|
gradientdata_DATA = @gradientdata@
|
|
|
|
EXTRA_DIST = $(gradientdata_DATA)
|
|
|
|
.PHONY: files
|
|
|
|
FILES = \
|
|
Abstract_1.ggr \
|
|
Abstract_2.ggr \
|
|
Abstract_3.ggr \
|
|
Aneurism.ggr \
|
|
Blinds.ggr \
|
|
Blue_Green.ggr \
|
|
Browns.ggr \
|
|
Brushed_Aluminium.ggr \
|
|
Burning_Paper.ggr \
|
|
Burning_Transparency.ggr \
|
|
CD.ggr \
|
|
CD_Half.ggr \
|
|
Caribbean_Blues.ggr \
|
|
Coffee.ggr \
|
|
Cold_Steel.ggr \
|
|
Cold_Steel_2.ggr \
|
|
Crown_molding.ggr \
|
|
Dark_1.ggr \
|
|
Deep_Sea.ggr \
|
|
Default.ggr \
|
|
Flare_Glow_Angular_1.ggr \
|
|
Flare_Glow_Radial_1.ggr \
|
|
Flare_Glow_Radial_2.ggr \
|
|
Flare_Glow_Radial_3.ggr \
|
|
Flare_Glow_Radial_4.ggr \
|
|
Flare_Radial_101.ggr \
|
|
Flare_Radial_102.ggr \
|
|
Flare_Radial_103.ggr \
|
|
Flare_Rays_Radial_1.ggr \
|
|
Flare_Rays_Radial_2.ggr \
|
|
Flare_Rays_Size_1.ggr \
|
|
Flare_Sizefac_101.ggr \
|
|
Four_bars.ggr \
|
|
French_flag.ggr \
|
|
French_flag_smooth.ggr \
|
|
Full_saturation_spectrum_CCW.ggr \
|
|
Full_saturation_spectrum_CW.ggr \
|
|
German_flag.ggr \
|
|
German_flag_smooth.ggr \
|
|
Golden.ggr \
|
|
Greens.ggr \
|
|
Horizon_1.ggr \
|
|
Horizon_2.ggr \
|
|
Incandescent.ggr \
|
|
Land_1.ggr \
|
|
Land_and_Sea.ggr \
|
|
Metallic_Something.ggr \
|
|
Mexican_flag.ggr \
|
|
Mexican_flag_smooth.ggr \
|
|
Nauseating_Headache.ggr \
|
|
Neon_Cyan.ggr \
|
|
Neon_Green.ggr \
|
|
Neon_Yellow.ggr \
|
|
Pastels.ggr \
|
|
Pastel_Rainbow.ggr \
|
|
Purples.ggr \
|
|
Radial_Eyeball_Blue.ggr \
|
|
Radial_Eyeball_Brown.ggr \
|
|
Radial_Eyeball_Green.ggr \
|
|
Radial_Glow_1.ggr \
|
|
Radial_Rainbow_Hoop.ggr \
|
|
Romanian_flag.ggr \
|
|
Romanian_flag_smooth.ggr \
|
|
Rounded_edge.ggr \
|
|
Shadows_1.ggr \
|
|
Shadows_2.ggr \
|
|
Shadows_3.ggr \
|
|
Skyline.ggr \
|
|
Skyline_polluted.ggr \
|
|
Square_Wood_Frame.ggr \
|
|
Sunrise.ggr \
|
|
Three_bars_sin.ggr \
|
|
Tropical_Colors.ggr \
|
|
Tube_Red.ggr \
|
|
Wood_1.ggr \
|
|
Wood_2.ggr \
|
|
Yellow_Contrast.ggr \
|
|
Yellow_Orange.ggr
|