gimp/app/gui/test-commands.h
Michael Natterer 3bd0b97ec3 app/Makefile.am taken behind the curtain and shot. (famous words of Seth
2001-05-11  Michael Natterer  <mitch@gimp.org>

	* app/Makefile.am
	* app/lc_dialog.[ch]: taken behind the curtain and shot.
	(famous words of Seth Burgess on #gimp)

	* app/app_procs.c
	* app/gdisplay.c
	* app/gimage.c
	* app/gui/commands.c
	* app/gui/gui.c
	* app/gui/menus.c
	* app/gui/preferences-dialog.c: don't #include it or call it's
	functions any more.

	* app/gui/dialogs-commands.[ch]: added a constructor for a dock
	which looks like the old L&C dialog (taken from test-commands.*)

	* app/gui/test-commands.[ch]: removed here.

	* app/gui/dialogs-constructors.[ch]: wrapped the old
	paths-dialog.* stuff in a dockable which can be created only
	once. Will go away as soon as the new path stuff is there.

	* app/gui/dialogs.c: added the paths dockable, removed lc_dialog.

	* app/gui/paths-dialog.c: some changes to make it work without the
	lc_dialog around it. Will probably crash randomly and refuse to
	update it's contents properly (scheduled for removal).
2001-05-11 17:02:30 +00:00

44 lines
2 KiB
C

/* 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 __TEST_COMMANDS_H__
#define __TEST_COMMANDS_H__
void test_image_container_list_view_cmd_callback (GtkWidget *, gpointer);
void test_image_container_grid_view_cmd_callback (GtkWidget *, gpointer);
void test_brush_container_list_view_cmd_callback (GtkWidget *, gpointer);
void test_pattern_container_list_view_cmd_callback (GtkWidget *, gpointer);
void test_gradient_container_list_view_cmd_callback (GtkWidget *, gpointer);
void test_palette_container_list_view_cmd_callback (GtkWidget *, gpointer);
void test_brush_container_grid_view_cmd_callback (GtkWidget *, gpointer);
void test_pattern_container_grid_view_cmd_callback (GtkWidget *, gpointer);
void test_gradient_container_grid_view_cmd_callback (GtkWidget *, gpointer);
void test_palette_container_grid_view_cmd_callback (GtkWidget *, gpointer);
void test_multi_container_list_view_cmd_callback (GtkWidget *, gpointer);
void test_multi_container_grid_view_cmd_callback (GtkWidget *, gpointer);
void test_list_dock_cmd_callback (GtkWidget *, gpointer);
void test_grid_dock_cmd_callback (GtkWidget *, gpointer);
#endif /* __TEST_COMMANDS_H__ */