
2008-08-11 Michael Natterer <mitch@gimp.org> * plug-ins/bmp/* * plug-ins/faxg3/* * plug-ins/fits/* * plug-ins/fli/* * plug-ins/ico/* * plug-ins/jpeg/* * plug-ins/psd/* * plug-ins/sgi/* * plug-ins/uri/* * plug-ins/xjt/*: removed these... * plug-ins/file-bmp/* * plug-ins/file-faxg3/* * plug-ins/file-fits/* * plug-ins/file-fli/* * plug-ins/file-ico/* * plug-ins/file-jpeg/* * plug-ins/file-psd/* * plug-ins/file-sgi/* * plug-ins/file-uri/* * plug-ins/file-xjt/*: and moved them here. Changed executable names to "file-foo". * plug-ins/Makefile.am: changed accordingly. * plug-ins/common/*: rename all file plug-ins to file-foo.c. Get rid of the names "poppler" and "postscript" and call them "file-pdf" and "file-ps" because the conflict with standard autofoo targets is gone. * plug-ins/common/plugin-defs.pl: changed accordingly. * plug-ins/common/mkgen.pl: make sure cflags variables are named "PLUG_IN_NAME_CFLAGS" and not "PLUG-IN-NAME_CFLAGS" * plug-ins/common/Makefile.am: regenerated. * configure.in: change folders and variable names to match above changes. svn path=/trunk/; revision=26494
32 lines
1.2 KiB
C
32 lines
1.2 KiB
C
/* GIMP - The GNU Image Manipulation Program
|
|
* Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
|
|
*
|
|
* GIMP Plug-in for Windows Icon files.
|
|
* Copyright (C) 2002 Christian Kreibich <christian@whoop.org>.
|
|
*
|
|
* 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 __ICO_DIALOG_H__
|
|
#define __ICO_DIALOG_H__
|
|
|
|
|
|
GtkWidget * ico_dialog_new (IcoSaveInfo *info);
|
|
void ico_dialog_add_icon (GtkWidget *dialog,
|
|
gint32 layer,
|
|
gint layer_num);
|
|
|
|
#endif /* __ICO_DIALOG_H__ */
|