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