2005-08-03 01:06:49 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
1997-11-25 06:05:25 +08:00
|
|
|
*
|
2005-08-03 01:06:49 +08:00
|
|
|
* gimpprocview.h
|
1997-11-25 06:05:25 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2005-08-03 01:06:49 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2005-08-03 01:06:49 +08:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
1997-11-25 06:05:25 +08:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2005-08-03 01:06:49 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
1997-11-25 06:05:25 +08:00
|
|
|
*
|
2005-08-03 01:06:49 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
|
|
|
|
2011-04-29 01:59:52 +08:00
|
|
|
#if !defined (__GIMP_UI_H_INSIDE__) && !defined (GIMP_COMPILATION)
|
|
|
|
#error "Only <libgimp/gimpui.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2004-09-30 08:33:34 +08:00
|
|
|
#ifndef __GIMP_PROC_VIEW_H__
|
|
|
|
#define __GIMP_PROC_VIEW_H__
|
2001-07-30 08:46:09 +08:00
|
|
|
|
2005-08-03 01:06:49 +08:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
|
|
|
/* For information look into the C source or the html documentation */
|
|
|
|
|
2001-07-30 08:46:09 +08:00
|
|
|
|
2019-08-05 20:17:18 +08:00
|
|
|
GtkWidget * gimp_proc_view_new (const gchar *procedure_name,
|
|
|
|
const gchar *menu_path);
|
2001-07-30 08:46:09 +08:00
|
|
|
|
|
|
|
|
2005-08-03 01:06:49 +08:00
|
|
|
G_END_DECLS
|
|
|
|
|
2004-09-30 08:33:34 +08:00
|
|
|
#endif /* __GIMP_PROC_VIEW_H__ */
|