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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
/* GSequencer - Advanced GTK Sequencer
* Copyright (C) 2005-2023 Joël Krähemann
*
* This file is part of GSequencer.
*
* GSequencer is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GSequencer 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
* along with GSequencer. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __AGS_APPLICATION_CONTEXT_H__
#define __AGS_APPLICATION_CONTEXT_H__
#include <glib.h>
#include <glib-object.h>
#include <libxml/tree.h>
#include <ags/lib/ags_uuid.h>
#include <ags/object/ags_config.h>
#include <ags/ags_api_config.h>
G_BEGIN_DECLS
#define AGS_TYPE_APPLICATION_CONTEXT (ags_application_context_get_type())
#define AGS_TYPE_APPLICATION_CONTEXT_FLAGS (ags_application_context_flags_get_type())
#define AGS_APPLICATION_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), AGS_TYPE_APPLICATION_CONTEXT, AgsApplicationContext))
#define AGS_APPLICATION_CONTEXT_CLASS(class) (G_TYPE_CHECK_CLASS_CAST(class, AGS_TYPE_APPLICATION_CONTEXT, AgsApplicationContextClass))
#define AGS_IS_APPLICATION_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), AGS_TYPE_APPLICATION_CONTEXT))
#define AGS_IS_APPLICATION_CONTEXT_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), AGS_TYPE_APPLICATION_CONTEXT))
#define AGS_APPLICATION_CONTEXT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS(obj, AGS_TYPE_APPLICATION_CONTEXT, AgsApplicationContextClass))
#define AGS_APPLICATION_CONTEXT_GET_OBJ_MUTEX(obj) (&(((AgsApplicationContext *) obj)->obj_mutex))
#ifndef PACKAGE_VERSION
#define AGS_VERSION "6.3.0"
#else
#define AGS_VERSION PACKAGE_VERSION
#endif
#define AGS_BUILD_ID "Wed Jan 10 08:49:34 UTC 2024"
#define AGS_DEFAULT_DIRECTORY ".gsequencer"
#define AGS_DEFAULT_CONFIG "ags.conf"
#if !defined(AGS_MACOS_SANDBOX)
#define AGS_DEFAULT_BUNDLE_ID "org.nongnu.gsequencer.gsequencer"
#else
#define AGS_DEFAULT_BUNDLE_ID "com.gsequencer.GSequencer"
#endif
typedef struct _AgsApplicationContext AgsApplicationContext;
typedef struct _AgsApplicationContextClass AgsApplicationContextClass;
/**
* AgsApplicationContextFlags:
* @AGS_APPLICATION_CONTEXT_TYPES_REGISTERED: indicates the types have been registered
*
* Enum values to control the behavior or indicate internal state of #AgsApplicationContext by
* enable/disable as flags.
*/
typedef enum{
AGS_APPLICATION_CONTEXT_TYPES_REGISTERED = 1,
}AgsApplicationContextFlags;
struct _AgsApplicationContext
{
GObject gobject;
guint flags;
guint connectable_flags;
GRecMutex obj_mutex;
AgsUUID *uuid;
gchar *version;
gchar *build_id;
int argc;
char **argv;
_Atomic int is_ready;
GObject *log;
gchar *domain;
AgsConfig *config;
GObject *main_loop;
GObject *task_launcher;
GObject *file;
GObject *history;
};
struct _AgsApplicationContextClass
{
GObjectClass gobject;
void (*load_config)(AgsApplicationContext *application_context);
void (*prepare)(AgsApplicationContext *application_context);
void (*setup)(AgsApplicationContext *application_context);
void (*register_types)(AgsApplicationContext *application_context);
void (*read)(GObject *file, xmlNode *node, GObject **gobject);
xmlNode* (*write)(GObject *file, xmlNode *parent, GObject *gobject);
void (*quit)(AgsApplicationContext *application_context);
};
GType ags_application_context_get_type();
GType ags_application_context_flags_get_type();
gboolean ags_application_context_test_flags(AgsApplicationContext *application_context,
AgsApplicationContextFlags flags);
void ags_application_context_set_flags(AgsApplicationContext *application_context,
AgsApplicationContextFlags flags);
void ags_application_context_unset_flags(AgsApplicationContext *application_context,
AgsApplicationContextFlags flags);
void ags_application_context_load_config(AgsApplicationContext *application_context);
void ags_application_context_prepare(AgsApplicationContext *application_context);
void ags_application_context_setup(AgsApplicationContext *application_context);
void ags_application_context_register_types(AgsApplicationContext *application_context);
void ags_application_context_quit(AgsApplicationContext *application_context);
AgsApplicationContext* ags_application_context_get_instance();
AgsApplicationContext* ags_application_context_new(GObject *main_loop,
AgsConfig *config);
G_END_DECLS
#endif /*__AGS_APPLICATION_CONTEXT_H__*/
|