removed because it was unused.

2001-01-29  Michael Natterer  <mitch@gimp.org>

	* app/dialog_types.h: removed because it was unused.

	* app/Makefile.am: removed dialog_types.h, reordered the file list
	to group together what may go to "pixmaps", "widgets" and
	"lowlevel" (???) directories.
This commit is contained in:
Michael Natterer 2001-01-29 18:15:38 +00:00 committed by Michael Natterer
parent df0bbb26fb
commit 598accf3e2
3 changed files with 42 additions and 72 deletions

View File

@ -1,3 +1,11 @@
2001-01-29 Michael Natterer <mitch@gimp.org>
* app/dialog_types.h: removed because it was unused.
* app/Makefile.am: removed dialog_types.h, reordered the file list
to group together what may go to "pixmaps", "widgets" and
"lowlevel" (???) directories.
2001-01-29 Michael Natterer <mitch@gimp.org>
* app/channel.[ch]: removed channel_update() because channel.c

View File

@ -68,7 +68,6 @@ gimp_SOURCES = \
desaturate.h \
devices.c \
devices.h \
dialog_types.h \
dialog_handler.c \
dialog_handler.h \
disp_callbacks.c \
@ -160,16 +159,8 @@ gimp_SOURCES = \
gradient_select.h \
gradient_select.c \
gradient.h \
gtkwrapbox.c \
gtkwrapbox.h \
gtkhwrapbox.c \
gtkhwrapbox.h \
gtkvwrapbox.c \
gtkvwrapbox.h \
gximage.c \
gximage.h \
histogramwidget.c \
histogramwidget.h \
image_map.c \
image_map.h \
image_new.c \
@ -201,7 +192,6 @@ gimp_SOURCES = \
lut_funcs.c \
lut_funcs.h \
main.c \
marching_ants.h \
menus.c \
menus.h \
module_db.c \
@ -217,8 +207,6 @@ gimp_SOURCES = \
palette_select.c \
palette_select.h \
paletteP.h \
paint_funcs.c \
paint_funcs.h \
parasitelist.c \
parasitelist.h \
path.c \
@ -233,12 +221,6 @@ gimp_SOURCES = \
pattern_select.h \
patterns.c \
patterns.h \
pixel_processor.c \
pixel_processor.h \
pixel_region.c \
pixel_region.h \
pixmaps.h \
pixmaps2.h \
plug_in.c \
plug_in.h \
preferences_dialog.c \
@ -259,18 +241,6 @@ gimp_SOURCES = \
selection.h \
session.h \
session.c \
temp_buf.c \
temp_buf.h \
tile.c \
tile.h \
tile_pvt.h \
tile_cache.c \
tile_cache.h \
tile_manager.c \
tile_manager.h \
tile_manager_pvt.h \
tile_swap.c \
tile_swap.h \
tips_dialog.c \
tips_dialog.h \
toolbox.c \
@ -283,10 +253,42 @@ gimp_SOURCES = \
unitrc.h \
user_install.c \
user_install.h \
wilber.h \
xcf.c \
xcf.h \
$(regex_sources)
$(regex_sources) \
\
paint_funcs.c \
paint_funcs.h \
pixel_processor.c \
pixel_processor.h \
pixel_region.c \
pixel_region.h \
temp_buf.c \
temp_buf.h \
tile.c \
tile.h \
tile_pvt.h \
tile_cache.c \
tile_cache.h \
tile_manager.c \
tile_manager.h \
tile_manager_pvt.h \
tile_swap.c \
tile_swap.h \
\
gtkwrapbox.c \
gtkwrapbox.h \
gtkhwrapbox.c \
gtkhwrapbox.h \
gtkvwrapbox.c \
gtkvwrapbox.h \
histogramwidget.c \
histogramwidget.h \
\
marching_ants.h \
pixmaps.h \
pixmaps2.h \
wilber.h
EXTRA_DIST = \
makefile.mingw \

View File

@ -1,40 +0,0 @@
/* 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 __DIALOG_TYPES_H__
#define __DIALOG_TYPES_H__
/* Types of dialog items that can be made.
*/
enum {
GROUP_ROWS = 1,
GROUP_COLUMNS,
GROUP_FORM,
ITEM_PUSH_BUTTON,
ITEM_CHECK_BUTTON,
ITEM_RADIO_BUTTON,
ITEM_IMAGE_MENU,
ITEM_SCALE,
ITEM_FRAME,
ITEM_LABEL,
ITEM_TEXT,
GROUP_RADIO = 1 << 16
};
#endif /* __DIALOG_TYPES_H__ */