2001-01-25 06:36:18 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpwidgetstypes.h
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
2003-11-11 00:38:37 +08:00
|
|
|
*
|
2001-01-25 06:36:18 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2003-11-11 00:38:37 +08:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-01-25 06:36:18 +08:00
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_WIDGETS_TYPES_H__
|
|
|
|
#define __GIMP_WIDGETS_TYPES_H__
|
|
|
|
|
2006-09-26 16:55:41 +08:00
|
|
|
#include <libgimpconfig/gimpconfigtypes.h>
|
2001-01-25 06:36:18 +08:00
|
|
|
|
2005-05-21 02:34:00 +08:00
|
|
|
#include <libgimpwidgets/gimpwidgetsenums.h>
|
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_BEGIN_DECLS
|
2001-01-25 06:36:18 +08:00
|
|
|
|
|
|
|
/* For information look into the html documentation */
|
|
|
|
|
|
|
|
|
2007-08-15 00:01:04 +08:00
|
|
|
typedef struct _GimpBrowser GimpBrowser;
|
|
|
|
typedef struct _GimpButton GimpButton;
|
|
|
|
typedef struct _GimpCellRendererColor GimpCellRendererColor;
|
|
|
|
typedef struct _GimpCellRendererToggle GimpCellRendererToggle;
|
|
|
|
typedef struct _GimpChainButton GimpChainButton;
|
|
|
|
typedef struct _GimpColorArea GimpColorArea;
|
|
|
|
typedef struct _GimpColorButton GimpColorButton;
|
|
|
|
typedef struct _GimpColorDisplay GimpColorDisplay;
|
|
|
|
typedef struct _GimpColorDisplayStack GimpColorDisplayStack;
|
|
|
|
typedef struct _GimpColorHexEntry GimpColorHexEntry;
|
|
|
|
typedef struct _GimpColorNotebook GimpColorNotebook;
|
|
|
|
typedef struct _GimpColorProfileComboBox GimpColorProfileComboBox;
|
|
|
|
typedef struct _GimpColorProfileStore GimpColorProfileStore;
|
|
|
|
typedef struct _GimpColorScale GimpColorScale;
|
|
|
|
typedef struct _GimpColorScales GimpColorScales;
|
|
|
|
typedef struct _GimpColorSelector GimpColorSelector;
|
|
|
|
typedef struct _GimpColorSelect GimpColorSelect;
|
|
|
|
typedef struct _GimpColorSelection GimpColorSelection;
|
|
|
|
typedef struct _GimpController GimpController;
|
|
|
|
typedef struct _GimpDialog GimpDialog;
|
|
|
|
typedef struct _GimpEnumStore GimpEnumStore;
|
|
|
|
typedef struct _GimpEnumComboBox GimpEnumComboBox;
|
|
|
|
typedef struct _GimpEnumLabel GimpEnumLabel;
|
|
|
|
typedef struct _GimpFileEntry GimpFileEntry;
|
|
|
|
typedef struct _GimpFrame GimpFrame;
|
|
|
|
typedef struct _GimpIntComboBox GimpIntComboBox;
|
|
|
|
typedef struct _GimpIntStore GimpIntStore;
|
|
|
|
typedef struct _GimpMemsizeEntry GimpMemsizeEntry;
|
|
|
|
typedef struct _GimpNumberPairEntry GimpNumberPairEntry;
|
|
|
|
typedef struct _GimpOffsetArea GimpOffsetArea;
|
|
|
|
typedef struct _GimpPageSelector GimpPageSelector;
|
|
|
|
typedef struct _GimpPathEditor GimpPathEditor;
|
|
|
|
typedef struct _GimpPickButton GimpPickButton;
|
|
|
|
typedef struct _GimpPreview GimpPreview;
|
|
|
|
typedef struct _GimpPreviewArea GimpPreviewArea;
|
|
|
|
typedef struct _GimpPixmap GimpPixmap;
|
2008-05-27 05:20:16 +08:00
|
|
|
typedef struct _GimpRuler GimpRuler;
|
2007-08-15 00:01:04 +08:00
|
|
|
typedef struct _GimpScrolledPreview GimpScrolledPreview;
|
|
|
|
typedef struct _GimpSizeEntry GimpSizeEntry;
|
|
|
|
typedef struct _GimpStringComboBox GimpStringComboBox;
|
|
|
|
typedef struct _GimpUnitMenu GimpUnitMenu;
|
|
|
|
typedef struct _GimpZoomModel GimpZoomModel;
|
2001-01-25 06:36:18 +08:00
|
|
|
|
|
|
|
|
2003-08-24 03:35:05 +08:00
|
|
|
typedef void (* GimpHelpFunc) (const gchar *help_id,
|
2003-11-19 09:12:20 +08:00
|
|
|
gpointer help_data);
|
2001-01-25 06:36:18 +08:00
|
|
|
|
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_END_DECLS
|
2001-01-25 06:36:18 +08:00
|
|
|
|
|
|
|
#endif /* __GIMP_WIDGETS_TYPES_H__ */
|