2000-12-29 07:22:01 -08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
|
*
|
|
|
|
|
* gimpuitypes.h
|
|
|
|
|
*
|
2009-01-17 14:28:01 -08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2000-12-29 07: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-17 14:28:01 -08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2003-12-05 07:55:15 -08:00
|
|
|
*
|
2000-12-29 07:22:01 -08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2003-12-05 07: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 07: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-17 14:28:01 -08:00
|
|
|
* License along with this library. If not, see
|
2018-07-11 14:47:19 -07:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2000-12-29 07:22:01 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __GIMP_UI_TYPES_H__
|
|
|
|
|
#define __GIMP_UI_TYPES_H__
|
|
|
|
|
|
2004-08-31 02:16:47 -07:00
|
|
|
#include <libgimpwidgets/gimpwidgetstypes.h>
|
|
|
|
|
|
2001-11-22 15:46:13 -08:00
|
|
|
G_BEGIN_DECLS
|
2000-12-29 07:22:01 -08:00
|
|
|
|
|
|
|
|
/* For information look into the html documentation */
|
|
|
|
|
|
|
|
|
|
|
2005-06-04 15:36:05 -07:00
|
|
|
typedef struct _GimpAspectPreview GimpAspectPreview;
|
|
|
|
|
typedef struct _GimpDrawablePreview GimpDrawablePreview;
|
2005-08-02 10:06:49 -07:00
|
|
|
typedef struct _GimpProcBrowserDialog GimpProcBrowserDialog;
|
2005-06-04 15:36:05 -07:00
|
|
|
typedef struct _GimpProgressBar GimpProgressBar;
|
2005-09-19 15:58:16 -07:00
|
|
|
typedef struct _GimpZoomPreview GimpZoomPreview;
|
2005-06-04 15:36:05 -07:00
|
|
|
|
|
|
|
|
typedef struct _GimpDrawableComboBox GimpDrawableComboBox;
|
|
|
|
|
typedef struct _GimpChannelComboBox GimpChannelComboBox;
|
|
|
|
|
typedef struct _GimpLayerComboBox GimpLayerComboBox;
|
2006-11-15 15:20:06 -08:00
|
|
|
typedef struct _GimpVectorsComboBox GimpVectorsComboBox;
|
2005-06-04 15:36:05 -07:00
|
|
|
typedef struct _GimpImageComboBox GimpImageComboBox;
|
|
|
|
|
|
2006-06-25 18:47:22 -07:00
|
|
|
typedef struct _GimpSelectButton GimpSelectButton;
|
2005-06-04 15:36:05 -07:00
|
|
|
typedef struct _GimpBrushSelectButton GimpBrushSelectButton;
|
|
|
|
|
typedef struct _GimpFontSelectButton GimpFontSelectButton;
|
|
|
|
|
typedef struct _GimpGradientSelectButton GimpGradientSelectButton;
|
|
|
|
|
typedef struct _GimpPaletteSelectButton GimpPaletteSelectButton;
|
|
|
|
|
typedef struct _GimpPatternSelectButton GimpPatternSelectButton;
|
2005-06-03 16:38:45 -07:00
|
|
|
|
2000-12-29 07:22:01 -08:00
|
|
|
|
2001-11-22 15:46:13 -08:00
|
|
|
G_END_DECLS
|
2000-12-29 07:22:01 -08:00
|
|
|
|
2001-01-24 14:36:18 -08:00
|
|
|
#endif /* __GIMP_UI_TYPES_H__ */
|