1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/* 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/>.
*/
#ifndef __GIMP_CORE_APP_H__
#define __GIMP_CORE_APP_H__
G_BEGIN_DECLS
#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);
G_END_DECLS
#endif /* __GIMP_CORE_APP_H__ */
|