1
1
mirror of https://gitlab.gnome.org/GNOME/gimp.git synced 2025-10-05 21:02:42 +02:00
Files
gimp/app/gimpcoreapp.h
Michael Natterer 246f9d284f app, pdb, libgimp: use "#pragma once" instead of:
#ifndef __FOO_H__
 #define __FOO_H__

 /* declarations  */

 #endif /* __FOO_H__ */

And some cleanups while I saw the headers.
This is far from finished...
2025-07-13 03:21:37 +02:00

81 lines
2.7 KiB
C

/* GIMP - The GNU Image Manipulation Program
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
*
* gimpcoreapp.h
* Copyright (C) 2022 Lukas Oberhuber <lukaso@gmail.com>
*
* 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
* Library 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, see
* <https://www.gnu.org/licenses/>.
*/
#pragma once
#define GIMP_APPLICATION_ID "org.gimp.GIMP"
enum
{
GIMP_CORE_APP_PROP_0,
GIMP_CORE_APP_PROP_GIMP,
GIMP_CORE_APP_PROP_FILENAMES,
GIMP_CORE_APP_PROP_AS_NEW,
GIMP_CORE_APP_PROP_QUIT,
GIMP_CORE_APP_PROP_BATCH_INTERPRETER,
GIMP_CORE_APP_PROP_BATCH_COMMANDS,
GIMP_CORE_APP_PROP_LAST = GIMP_CORE_APP_PROP_BATCH_COMMANDS,
};
#define GIMP_TYPE_CORE_APP gimp_core_app_get_type()
G_DECLARE_INTERFACE (GimpCoreApp,
gimp_core_app,
GIMP, CORE_APP,
GObject)
struct _GimpCoreAppInterface
{
GTypeInterface parent_iface;
/* Padding to allow adding up to 12 new virtual functions without
* breaking ABI. */
gpointer padding[12];
};
Gimp * gimp_core_app_get_gimp (GimpCoreApp *self);
gboolean gimp_core_app_get_quit (GimpCoreApp *self);
gboolean gimp_core_app_get_as_new (GimpCoreApp *self);
const gchar ** gimp_core_app_get_filenames (GimpCoreApp *self);
const gchar * gimp_core_app_get_batch_interpreter (GimpCoreApp *self);
const gchar ** gimp_core_app_get_batch_commands (GimpCoreApp *self);
void gimp_core_app_set_exit_status (GimpCoreApp *self,
gint exit_status);
gboolean gimp_core_app_get_exit_status (GimpCoreApp *self);
/* Protected functions. */
void gimp_core_app_install_properties (GObjectClass *klass);
void gimp_core_app_get_property (GObject *object,
guint property_id,
GValue *value,
GParamSpec *pspec);
void gimp_core_app_set_property (GObject *object,
guint property_id,
const GValue *value,
GParamSpec *pspec);