2006-12-09 13:33:38 -08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1999-08-12 10:53:51 -07:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
|
*
|
2002-11-18 12:50:31 -08:00
|
|
|
* GimpConfig typedefs
|
|
|
|
|
* Copyright (C) 2001-2002 Sven Neumann <sven@gimp.org>
|
|
|
|
|
*
|
2009-01-17 14:28:01 -08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
1999-08-12 10:53:51 -07:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 14:28:01 -08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1999-08-12 10:53:51 -07:00
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-11 14:47:19 -07:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
1999-08-12 10:53:51 -07:00
|
|
|
*/
|
2000-12-29 07:22:01 -08:00
|
|
|
|
2002-11-18 12:50:31 -08:00
|
|
|
#ifndef __CONFIG_TYPES_H__
|
|
|
|
|
#define __CONFIG_TYPES_H__
|
1999-08-12 10:53:51 -07:00
|
|
|
|
2002-12-20 06:36:08 -08:00
|
|
|
|
2005-01-25 12:30:20 -08:00
|
|
|
#include "libgimpconfig/gimpconfigtypes.h"
|
|
|
|
|
|
2010-02-01 12:55:18 -08:00
|
|
|
#include "config/config-enums.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GIMP_OPACITY_TRANSPARENT 0.0
|
|
|
|
|
#define GIMP_OPACITY_OPAQUE 1.0
|
|
|
|
|
|
2005-01-25 12:30:20 -08:00
|
|
|
|
2012-05-14 13:57:58 -07:00
|
|
|
typedef struct _GimpGeglConfig GimpGeglConfig;
|
2003-10-22 07:46:05 -07:00
|
|
|
typedef struct _GimpCoreConfig GimpCoreConfig;
|
|
|
|
|
typedef struct _GimpDisplayConfig GimpDisplayConfig;
|
|
|
|
|
typedef struct _GimpGuiConfig GimpGuiConfig;
|
2016-08-14 13:21:59 -07:00
|
|
|
typedef struct _GimpDialogConfig GimpDialogConfig;
|
2017-10-08 15:21:29 -07:00
|
|
|
typedef struct _GimpLangRc GimpLangRc;
|
2003-10-22 07:46:05 -07:00
|
|
|
typedef struct _GimpPluginConfig GimpPluginConfig;
|
|
|
|
|
typedef struct _GimpRc GimpRc;
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpXmlParser GimpXmlParser;
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpDisplayOptions GimpDisplayOptions;
|
2004-07-19 04:33:59 -07:00
|
|
|
|
|
|
|
|
/* should be in core/core-types.h */
|
2003-10-22 07:46:05 -07:00
|
|
|
typedef struct _GimpGrid GimpGrid;
|
|
|
|
|
typedef struct _GimpTemplate GimpTemplate;
|
2003-10-10 07:11:47 -07:00
|
|
|
|
1999-08-12 10:53:51 -07:00
|
|
|
|
2018-02-11 13:23:10 -08:00
|
|
|
/* for now these are defines, but can be turned into something
|
|
|
|
|
* fancier for nicer debugging
|
|
|
|
|
*/
|
|
|
|
|
#define gimp_assert g_assert
|
|
|
|
|
#define gimp_assert_not_reached g_assert_not_reached
|
|
|
|
|
|
|
|
|
|
|
2002-11-18 12:50:31 -08:00
|
|
|
#endif /* __CONFIG_TYPES_H__ */
|