2003-12-05 23:55:15 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
2000-02-26 11:41:06 +08:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
1998-01-25 18:26:47 +08:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
1999-11-18 05:13:50 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-01-25 18:26:47 +08:00
|
|
|
* License as published by the Free Software Foundation; either
|
2000-02-26 11:41:06 +08:00
|
|
|
* version 2 of the License, or (at your option) any later version.
|
2003-12-05 23:55:15 +08:00
|
|
|
*
|
2000-02-26 11:41:06 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2003-12-05 23:55:15 +08:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
1999-12-26 15:54:39 +08:00
|
|
|
* Lesser General Public License for more details.
|
1998-01-25 18:26:47 +08:00
|
|
|
*
|
1999-11-18 05:13:50 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1998-04-13 13:44:11 +08:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
2003-12-05 23:55:15 +08:00
|
|
|
*/
|
2000-05-31 07:38:46 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#ifndef __GIMP_UI_H__
|
|
|
|
#define __GIMP_UI_H__
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
2000-01-05 23:47:06 +08:00
|
|
|
|
2001-01-25 06:36:18 +08:00
|
|
|
#include <libgimpwidgets/gimpwidgets.h>
|
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
#include <libgimp/gimpuitypes.h>
|
|
|
|
|
2000-05-27 09:30:21 +08:00
|
|
|
#include <libgimp/gimpexport.h>
|
|
|
|
#include <libgimp/gimpmenu.h>
|
2004-09-29 07:23:09 +08:00
|
|
|
#include <libgimp/gimpaspectpreview.h>
|
2003-07-01 23:06:06 +08:00
|
|
|
#include <libgimp/gimpbrushmenu.h>
|
2004-08-31 06:10:26 +08:00
|
|
|
#include <libgimp/gimpdrawablepreview.h>
|
2003-07-01 23:06:06 +08:00
|
|
|
#include <libgimp/gimpfontmenu.h>
|
|
|
|
#include <libgimp/gimpgradientmenu.h>
|
2004-07-27 23:15:58 +08:00
|
|
|
#include <libgimp/gimppalettemenu.h>
|
2003-07-01 23:06:06 +08:00
|
|
|
#include <libgimp/gimppatternmenu.h>
|
2004-04-21 06:14:49 +08:00
|
|
|
#include <libgimp/gimppixbuf.h>
|
2004-09-01 20:38:41 +08:00
|
|
|
#include <libgimp/gimpprogressbar.h>
|
2004-04-21 06:14:49 +08:00
|
|
|
#include <libgimp/gimpdrawablecombobox.h>
|
|
|
|
#include <libgimp/gimpimagecombobox.h>
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_BEGIN_DECLS
|
2000-05-31 07:38:46 +08:00
|
|
|
|
|
|
|
/* For information look into the C source or the html documentation */
|
|
|
|
|
|
|
|
|
2000-11-18 08:25:42 +08:00
|
|
|
void gimp_ui_init (const gchar *prog_name,
|
2004-09-29 07:23:09 +08:00
|
|
|
gboolean preview);
|
2000-04-19 22:02:05 +08:00
|
|
|
|
2000-05-31 07:38:46 +08:00
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_END_DECLS
|
2000-05-31 07:38:46 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#endif /* __GIMP_UI_H__ */
|