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
|
/* -*- Mode: C ; c-basic-offset: 2 -*- */
/*****************************************************************************
*
* This file is part of zynjacku
*
* Copyright (C) 2006,2007,2008,2009 Nedko Arnaudov <nedko@arnaudov.name>
*
* This program 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; version 2 of the License
*
* 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
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
*****************************************************************************/
#include <glib-object.h>
#include "enum.h"
//#define LOG_LEVEL LOG_LEVEL_DEBUG
#include "log.h"
struct zynjacku_enum
{
gboolean dispose_has_run;
GArray * array;
};
#define ZYNJACKU_ENUM_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), ZYNJACKU_ENUM_TYPE, struct zynjacku_enum))
static void
zynjacku_enum_dispose(GObject * obj)
{
struct zynjacku_enum * enum_ptr;
enum_ptr = ZYNJACKU_ENUM_GET_PRIVATE(obj);
LOG_DEBUG("zynjacku_enum_dispose() called.");
if (enum_ptr->dispose_has_run)
{
/* If dispose did already run, return. */
LOG_DEBUG("zynjacku_enum_dispose() already run!");
return;
}
/* Make sure dispose does not run twice. */
enum_ptr->dispose_has_run = TRUE;
/*
* In dispose, you are supposed to free all types referenced from this
* object which might themselves hold a reference to self. Generally,
* the most simple solution is to unref all members on which you own a
* reference.
*/
g_array_free(enum_ptr->array, TRUE);
/* Chain up to the parent class */
G_OBJECT_CLASS(g_type_class_peek_parent(G_OBJECT_GET_CLASS(obj)))->dispose(obj);
}
static void
zynjacku_enum_finalize(GObject * obj)
{
// struct zynjacku_enum * self = ZYNJACKU_ENUM_GET_PRIVATE(obj);
LOG_DEBUG("zynjacku_enum_finalize() called.");
/*
* Here, complete object destruction.
* You might not need to do much...
*/
//g_free(self->private);
/* Chain up to the parent class */
G_OBJECT_CLASS(g_type_class_peek_parent(G_OBJECT_GET_CLASS(obj)))->finalize(obj);
}
static void
zynjacku_enum_class_init(
gpointer class_ptr,
gpointer class_data_ptr)
{
LOG_DEBUG("zynjacku_enum_class() called.");
G_OBJECT_CLASS(class_ptr)->dispose = zynjacku_enum_dispose;
G_OBJECT_CLASS(class_ptr)->finalize = zynjacku_enum_finalize;
g_type_class_add_private(G_OBJECT_CLASS(class_ptr), sizeof(struct zynjacku_enum));
}
static void
zynjacku_enum_init(
GTypeInstance * instance,
gpointer g_class)
{
struct zynjacku_enum * enum_ptr;
LOG_DEBUG("zynjacku_enum_init() called.");
enum_ptr = ZYNJACKU_ENUM_GET_PRIVATE(instance);
enum_ptr->array = g_array_new(TRUE, TRUE, sizeof(gchar *));
}
GType zynjacku_enum_get_type()
{
static GType type = 0;
if (type == 0)
{
type = g_type_register_static_simple(
G_TYPE_OBJECT,
"zynjacku_enum_type",
sizeof(ZynjackuEnumClass),
zynjacku_enum_class_init,
sizeof(ZynjackuEnum),
zynjacku_enum_init,
0);
}
return type;
}
guint
zynjacku_enum_get_count(
ZynjackuEnum * enum_obj_ptr)
{
struct zynjacku_enum * enum_ptr;
enum_ptr = ZYNJACKU_ENUM_GET_PRIVATE(enum_obj_ptr);
return enum_ptr->array->len;
}
const gchar *
zynjacku_enum_get_at_index(
ZynjackuEnum * enum_obj_ptr,
guint index)
{
struct zynjacku_enum * enum_ptr;
enum_ptr = ZYNJACKU_ENUM_GET_PRIVATE(enum_obj_ptr);
return g_array_index(enum_ptr->array, gchar *, index);
}
void
zynjacku_enum_set(
ZynjackuEnum * enum_obj_ptr,
const gchar * const * values,
guint values_count)
{
struct zynjacku_enum * enum_ptr;
guint i;
gchar * value;
enum_ptr = ZYNJACKU_ENUM_GET_PRIVATE(enum_obj_ptr);
for (i = 0 ; i < values_count ; i++)
{
value = g_strdup(values[i]);
g_array_append_val(enum_ptr->array, value);
}
}
|