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 */
|
|
|
|
|
|
|
|
|
2024-04-24 04:27:26 +08:00
|
|
|
typedef struct _GimpProcedureDialog GimpProcedureDialog;
|
|
|
|
typedef struct _GimpExportProcedureDialog GimpExportProcedureDialog;
|
|
|
|
typedef struct _GimpVectorLoadProcedureDialog GimpVectorLoadProcedureDialog;
|
|
|
|
|
|
|
|
typedef struct _GimpAspectPreview GimpAspectPreview;
|
|
|
|
typedef struct _GimpDrawablePreview GimpDrawablePreview;
|
|
|
|
typedef struct _GimpProcBrowserDialog GimpProcBrowserDialog;
|
|
|
|
typedef struct _GimpProgressBar GimpProgressBar;
|
|
|
|
typedef struct _GimpZoomPreview GimpZoomPreview;
|
|
|
|
|
|
|
|
typedef struct _GimpDrawableComboBox GimpDrawableComboBox;
|
|
|
|
typedef struct _GimpChannelComboBox GimpChannelComboBox;
|
|
|
|
typedef struct _GimpLayerComboBox GimpLayerComboBox;
|
2024-07-13 13:07:57 +08:00
|
|
|
typedef struct _GimpPathComboBox GimpPathComboBox;
|
2024-04-24 04:27:26 +08:00
|
|
|
typedef struct _GimpImageComboBox GimpImageComboBox;
|
|
|
|
|
|
|
|
typedef struct _GimpDrawableChooser GimpDrawableChooser;
|
|
|
|
|
|
|
|
typedef struct _GimpResourceChooser GimpResourceChooser;
|
|
|
|
typedef struct _GimpBrushChooser GimpBrushChooser;
|
|
|
|
typedef struct _GimpFontChooser GimpFontChooser;
|
|
|
|
typedef struct _GimpGradientChooser GimpGradientChooser;
|
|
|
|
typedef struct _GimpPaletteChooser GimpPaletteChooser;
|
|
|
|
typedef struct _GimpPatternChooser GimpPatternChooser;
|
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__ */
|