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.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* 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__
|
|
|
|
|
|
|
|
|
2001-05-21 21:58:46 +08:00
|
|
|
#include <libgimpbase/gimpbasetypes.h>
|
2001-01-25 06:36:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
/* For information look into the html documentation */
|
|
|
|
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GIMP_SIZE_ENTRY_UPDATE_NONE = 0,
|
|
|
|
GIMP_SIZE_ENTRY_UPDATE_SIZE = 1,
|
|
|
|
GIMP_SIZE_ENTRY_UPDATE_RESOLUTION = 2
|
|
|
|
} GimpSizeEntryUpdatePolicy;
|
|
|
|
|
|
|
|
|
2001-05-26 05:17:07 +08:00
|
|
|
typedef struct _GimpButton GimpButton;
|
|
|
|
typedef struct _GimpChainButton GimpChainButton;
|
|
|
|
typedef struct _GimpColorArea GimpColorArea;
|
|
|
|
typedef struct _GimpColorButton GimpColorButton;
|
|
|
|
typedef struct _GimpFileSelection GimpFileSelection;
|
|
|
|
typedef struct _GimpOffsetArea GimpOffsetArea;
|
|
|
|
typedef struct _GimpPathEditor GimpPathEditor;
|
|
|
|
typedef struct _GimpPixmap GimpPixmap;
|
|
|
|
typedef struct _GimpSizeEntry GimpSizeEntry;
|
|
|
|
typedef struct _GimpUnitMenu GimpUnitMenu;
|
2001-01-25 06:36:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
typedef void (* GimpHelpFunc) (const gchar *help_data);
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#endif /* __GIMP_WIDGETS_TYPES_H__ */
|