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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
|
/* text.c generated by valac, the Vala compiler
* generated from text.vala, do not modify */
/* text.vala
*
* Copyright (C) 2008-2009 Didier Villevalois
* Copyright (C) 2008-2012 Florian Brosch
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* 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
* Lesser 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Author:
* Didier 'Ptitjes Villevalois <ptitjes@free.fr>
*/
#include "valadoc.h"
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include <glib-object.h>
#if !defined(VALA_STRICT_C)
#if !defined(__clang__) && defined(__GNUC__) && (__GNUC__ >= 14)
#pragma GCC diagnostic warning "-Wincompatible-pointer-types"
#elif defined(__clang__) && (__clang_major__ >= 16)
#pragma clang diagnostic ignored "-Wincompatible-function-pointer-types"
#pragma clang diagnostic ignored "-Wincompatible-pointer-types"
#endif
#endif
enum {
VALADOC_CONTENT_TEXT_0_PROPERTY,
VALADOC_CONTENT_TEXT_CONTENT_PROPERTY,
VALADOC_CONTENT_TEXT_NUM_PROPERTIES
};
static GParamSpec* valadoc_content_text_properties[VALADOC_CONTENT_TEXT_NUM_PROPERTIES];
#define _g_free0(var) (var = (g_free (var), NULL))
struct _ValadocContentTextPrivate {
gchar* _content;
};
static gint ValadocContentText_private_offset;
static gpointer valadoc_content_text_parent_class = NULL;
static ValadocContentInlineIface * valadoc_content_text_valadoc_content_inline_parent_iface = NULL;
G_GNUC_INTERNAL ValadocContentText* valadoc_content_text_new (const gchar* text);
G_GNUC_INTERNAL ValadocContentText* valadoc_content_text_construct (GType object_type,
const gchar* text);
static void valadoc_content_text_real_check (ValadocContentContentElement* base,
ValadocApiTree* api_root,
ValadocApiNode* container,
const gchar* file_path,
ValadocErrorReporter* reporter,
ValadocSettings* settings);
static void valadoc_content_text_real_accept (ValadocContentContentElement* base,
ValadocContentContentVisitor* visitor);
static gboolean valadoc_content_text_real_is_empty (ValadocContentContentElement* base);
static ValadocContentContentElement* valadoc_content_text_real_copy (ValadocContentContentElement* base,
ValadocContentContentElement* new_parent);
G_GNUC_INTERNAL void valadoc_content_content_element_set_parent (ValadocContentContentElement* self,
ValadocContentContentElement* value);
static GObject * valadoc_content_text_constructor (GType type,
guint n_construct_properties,
GObjectConstructParam * construct_properties);
static void valadoc_content_text_finalize (GObject * obj);
static GType valadoc_content_text_get_type_once (void);
static void _vala_valadoc_content_text_get_property (GObject * object,
guint property_id,
GValue * value,
GParamSpec * pspec);
static void _vala_valadoc_content_text_set_property (GObject * object,
guint property_id,
const GValue * value,
GParamSpec * pspec);
static inline gpointer
valadoc_content_text_get_instance_private (ValadocContentText* self)
{
return G_STRUCT_MEMBER_P (self, ValadocContentText_private_offset);
}
const gchar*
valadoc_content_text_get_content (ValadocContentText* self)
{
const gchar* result;
const gchar* _tmp0_;
g_return_val_if_fail (self != NULL, NULL);
_tmp0_ = self->priv->_content;
result = _tmp0_;
return result;
}
void
valadoc_content_text_set_content (ValadocContentText* self,
const gchar* value)
{
gchar* old_value;
g_return_if_fail (self != NULL);
old_value = valadoc_content_text_get_content (self);
if (g_strcmp0 (value, old_value) != 0) {
gchar* _tmp0_;
_tmp0_ = g_strdup (value);
_g_free0 (self->priv->_content);
self->priv->_content = _tmp0_;
g_object_notify_by_pspec ((GObject *) self, valadoc_content_text_properties[VALADOC_CONTENT_TEXT_CONTENT_PROPERTY]);
}
}
G_GNUC_INTERNAL ValadocContentText*
valadoc_content_text_construct (GType object_type,
const gchar* text)
{
ValadocContentText * self = NULL;
self = (ValadocContentText*) valadoc_content_content_element_construct (object_type);
if (text != NULL) {
gchar* _tmp0_;
_tmp0_ = g_strdup (text);
_g_free0 (self->priv->_content);
self->priv->_content = _tmp0_;
}
return self;
}
G_GNUC_INTERNAL ValadocContentText*
valadoc_content_text_new (const gchar* text)
{
return valadoc_content_text_construct (VALADOC_CONTENT_TYPE_TEXT, text);
}
static void
valadoc_content_text_real_check (ValadocContentContentElement* base,
ValadocApiTree* api_root,
ValadocApiNode* container,
const gchar* file_path,
ValadocErrorReporter* reporter,
ValadocSettings* settings)
{
ValadocContentText * self;
self = (ValadocContentText*) base;
g_return_if_fail (api_root != NULL);
g_return_if_fail (container != NULL);
g_return_if_fail (file_path != NULL);
g_return_if_fail (reporter != NULL);
g_return_if_fail (settings != NULL);
}
static void
valadoc_content_text_real_accept (ValadocContentContentElement* base,
ValadocContentContentVisitor* visitor)
{
ValadocContentText * self;
self = (ValadocContentText*) base;
g_return_if_fail (visitor != NULL);
valadoc_content_content_visitor_visit_text (visitor, self);
}
static gboolean
valadoc_content_text_real_is_empty (ValadocContentContentElement* base)
{
ValadocContentText * self;
const gchar* _tmp0_;
gboolean result;
self = (ValadocContentText*) base;
_tmp0_ = self->priv->_content;
result = g_strcmp0 (_tmp0_, "") == 0;
return result;
}
static ValadocContentContentElement*
valadoc_content_text_real_copy (ValadocContentContentElement* base,
ValadocContentContentElement* new_parent)
{
ValadocContentText * self;
ValadocContentText* text = NULL;
const gchar* _tmp0_;
ValadocContentText* _tmp1_;
ValadocContentContentElement* result;
self = (ValadocContentText*) base;
_tmp0_ = self->priv->_content;
_tmp1_ = valadoc_content_text_new (_tmp0_);
text = _tmp1_;
valadoc_content_content_element_set_parent ((ValadocContentContentElement*) text, new_parent);
result = (ValadocContentContentElement*) text;
return result;
}
static GObject *
valadoc_content_text_constructor (GType type,
guint n_construct_properties,
GObjectConstructParam * construct_properties)
{
GObject * obj;
GObjectClass * parent_class;
ValadocContentText * self;
gchar* _tmp0_;
parent_class = G_OBJECT_CLASS (valadoc_content_text_parent_class);
obj = parent_class->constructor (type, n_construct_properties, construct_properties);
self = G_TYPE_CHECK_INSTANCE_CAST (obj, VALADOC_CONTENT_TYPE_TEXT, ValadocContentText);
_tmp0_ = g_strdup ("");
_g_free0 (self->priv->_content);
self->priv->_content = _tmp0_;
return obj;
}
static void
valadoc_content_text_class_init (ValadocContentTextClass * klass,
gpointer klass_data)
{
valadoc_content_text_parent_class = g_type_class_peek_parent (klass);
g_type_class_adjust_private_offset (klass, &ValadocContentText_private_offset);
((ValadocContentContentElementClass *) klass)->check = (void (*) (ValadocContentContentElement*, ValadocApiTree*, ValadocApiNode*, const gchar*, ValadocErrorReporter*, ValadocSettings*)) valadoc_content_text_real_check;
((ValadocContentContentElementClass *) klass)->accept = (void (*) (ValadocContentContentElement*, ValadocContentContentVisitor*)) valadoc_content_text_real_accept;
((ValadocContentContentElementClass *) klass)->is_empty = (gboolean (*) (ValadocContentContentElement*)) valadoc_content_text_real_is_empty;
((ValadocContentContentElementClass *) klass)->copy = (ValadocContentContentElement* (*) (ValadocContentContentElement*, ValadocContentContentElement*)) valadoc_content_text_real_copy;
G_OBJECT_CLASS (klass)->get_property = _vala_valadoc_content_text_get_property;
G_OBJECT_CLASS (klass)->set_property = _vala_valadoc_content_text_set_property;
G_OBJECT_CLASS (klass)->constructor = valadoc_content_text_constructor;
G_OBJECT_CLASS (klass)->finalize = valadoc_content_text_finalize;
g_object_class_install_property (G_OBJECT_CLASS (klass), VALADOC_CONTENT_TEXT_CONTENT_PROPERTY, valadoc_content_text_properties[VALADOC_CONTENT_TEXT_CONTENT_PROPERTY] = g_param_spec_string ("content", "content", "content", NULL, G_PARAM_STATIC_STRINGS | G_PARAM_READABLE | G_PARAM_WRITABLE));
}
static void
valadoc_content_text_valadoc_content_inline_interface_init (ValadocContentInlineIface * iface,
gpointer iface_data)
{
valadoc_content_text_valadoc_content_inline_parent_iface = g_type_interface_peek_parent (iface);
}
static void
valadoc_content_text_instance_init (ValadocContentText * self,
gpointer klass)
{
self->priv = valadoc_content_text_get_instance_private (self);
}
static void
valadoc_content_text_finalize (GObject * obj)
{
ValadocContentText * self;
self = G_TYPE_CHECK_INSTANCE_CAST (obj, VALADOC_CONTENT_TYPE_TEXT, ValadocContentText);
_g_free0 (self->priv->_content);
G_OBJECT_CLASS (valadoc_content_text_parent_class)->finalize (obj);
}
static GType
valadoc_content_text_get_type_once (void)
{
static const GTypeInfo g_define_type_info = { sizeof (ValadocContentTextClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) valadoc_content_text_class_init, (GClassFinalizeFunc) NULL, NULL, sizeof (ValadocContentText), 0, (GInstanceInitFunc) valadoc_content_text_instance_init, NULL };
static const GInterfaceInfo valadoc_content_inline_info = { (GInterfaceInitFunc) valadoc_content_text_valadoc_content_inline_interface_init, (GInterfaceFinalizeFunc) NULL, NULL};
GType valadoc_content_text_type_id;
valadoc_content_text_type_id = g_type_register_static (VALADOC_CONTENT_TYPE_CONTENT_ELEMENT, "ValadocContentText", &g_define_type_info, 0);
g_type_add_interface_static (valadoc_content_text_type_id, VALADOC_CONTENT_TYPE_INLINE, &valadoc_content_inline_info);
ValadocContentText_private_offset = g_type_add_instance_private (valadoc_content_text_type_id, sizeof (ValadocContentTextPrivate));
return valadoc_content_text_type_id;
}
GType
valadoc_content_text_get_type (void)
{
static volatile gsize valadoc_content_text_type_id__once = 0;
if (g_once_init_enter (&valadoc_content_text_type_id__once)) {
GType valadoc_content_text_type_id;
valadoc_content_text_type_id = valadoc_content_text_get_type_once ();
g_once_init_leave (&valadoc_content_text_type_id__once, valadoc_content_text_type_id);
}
return valadoc_content_text_type_id__once;
}
static void
_vala_valadoc_content_text_get_property (GObject * object,
guint property_id,
GValue * value,
GParamSpec * pspec)
{
ValadocContentText * self;
self = G_TYPE_CHECK_INSTANCE_CAST (object, VALADOC_CONTENT_TYPE_TEXT, ValadocContentText);
switch (property_id) {
case VALADOC_CONTENT_TEXT_CONTENT_PROPERTY:
g_value_set_string (value, valadoc_content_text_get_content (self));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
}
}
static void
_vala_valadoc_content_text_set_property (GObject * object,
guint property_id,
const GValue * value,
GParamSpec * pspec)
{
ValadocContentText * self;
self = G_TYPE_CHECK_INSTANCE_CAST (object, VALADOC_CONTENT_TYPE_TEXT, ValadocContentText);
switch (property_id) {
case VALADOC_CONTENT_TEXT_CONTENT_PROPERTY:
valadoc_content_text_set_content (self, g_value_get_string (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
}
}
|