2000-12-29 23:22:01 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpuitypes.h
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2000-12-29 23:22:01 +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.
|
2003-12-05 23:55:15 +08:00
|
|
|
*
|
2000-12-29 23:22:01 +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
|
2000-12-29 23:22:01 +08:00
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* 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/>.
|
2000-12-29 23:22:01 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_UI_TYPES_H__
|
|
|
|
#define __GIMP_UI_TYPES_H__
|
|
|
|
|
2004-08-31 17:16:47 +08:00
|
|
|
#include <libgimpwidgets/gimpwidgetstypes.h>
|
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_BEGIN_DECLS
|
2000-12-29 23:22:01 +08:00
|
|
|
|
|
|
|
/* For information look into the html documentation */
|
|
|
|
|
|
|
|
|
2019-09-21 01:24:40 +08:00
|
|
|
typedef struct _GimpProcedureDialog GimpProcedureDialog;
|
2020-11-21 08:15:15 +08:00
|
|
|
typedef struct _GimpSaveProcedureDialog GimpSaveProcedureDialog;
|
2019-09-21 01:24:40 +08:00
|
|
|
|
2005-06-05 06:36:05 +08:00
|
|
|
typedef struct _GimpAspectPreview GimpAspectPreview;
|
|
|
|
typedef struct _GimpDrawablePreview GimpDrawablePreview;
|
2005-08-03 01:06:49 +08:00
|
|
|
typedef struct _GimpProcBrowserDialog GimpProcBrowserDialog;
|
2005-06-05 06:36:05 +08:00
|
|
|
typedef struct _GimpProgressBar GimpProgressBar;
|
2005-09-20 06:58:16 +08:00
|
|
|
typedef struct _GimpZoomPreview GimpZoomPreview;
|
2005-06-05 06:36:05 +08:00
|
|
|
|
|
|
|
typedef struct _GimpDrawableComboBox GimpDrawableComboBox;
|
|
|
|
typedef struct _GimpChannelComboBox GimpChannelComboBox;
|
|
|
|
typedef struct _GimpLayerComboBox GimpLayerComboBox;
|
2006-11-16 07:20:06 +08:00
|
|
|
typedef struct _GimpVectorsComboBox GimpVectorsComboBox;
|
2005-06-05 06:36:05 +08:00
|
|
|
typedef struct _GimpImageComboBox GimpImageComboBox;
|
|
|
|
|
2006-06-26 09:47:22 +08:00
|
|
|
typedef struct _GimpSelectButton GimpSelectButton;
|
2005-06-05 06:36:05 +08:00
|
|
|
typedef struct _GimpBrushSelectButton GimpBrushSelectButton;
|
|
|
|
typedef struct _GimpFontSelectButton GimpFontSelectButton;
|
|
|
|
typedef struct _GimpGradientSelectButton GimpGradientSelectButton;
|
|
|
|
typedef struct _GimpPaletteSelectButton GimpPaletteSelectButton;
|
|
|
|
typedef struct _GimpPatternSelectButton GimpPatternSelectButton;
|
2005-06-04 07:38:45 +08:00
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_END_DECLS
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2001-01-25 06:36:18 +08:00
|
|
|
#endif /* __GIMP_UI_TYPES_H__ */
|