forked from AuroraMiddleware/gtk
02a871bc31
Mon Aug 24 02:36:53 1998 Tim Janik <timj@gtk.org> * gtk/gtkarg.h: * gtk/gtkarg.c: * gtk/gtkwidget.h: * gtk/gtkwidget.c: * gtk/gtkobject.h: * gtk/gtkobject.c: * gtk/gtkcontainer.h: * gtk/gtkcontainer.c: (gtk_object_new): (gtk_object_set): (gtk_widget_new): (gtk_widget_set): (gtk_container_add_with_args): (gtk_container_child_set): begin the parameter elipsis (...) after the first argument name. this change is source compatible, since it was always required, even as NULL. (gtk_args_collect): (gtk_object_args_collect): (gtk_container_child_args_collect): changed prototypes to pass first_arg_name, also, pass va_list variable by value (portability concerns). callers changed. * gtk/gtkargcollector.c: implemented gtk_arg_collect_value() as a huge macro GTK_ARG_COLLECT_VALUE() <shrug>. this is needed because we can't pass va_list variables by reference for portability reasons.
459 lines
10 KiB
C
459 lines
10 KiB
C
/* GTK - The GIMP Toolkit
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include "gtkobject.h"
|
|
#include "gtkargcollector.c"
|
|
|
|
|
|
#define MAX_ARG_LENGTH (256)
|
|
|
|
|
|
/* --- typedefs --- */
|
|
typedef struct _GtkArgQueryData GtkArgQueryData;
|
|
|
|
|
|
/* --- structures --- */
|
|
struct _GtkArgQueryData
|
|
{
|
|
GList *arg_list;
|
|
GtkType class_type;
|
|
};
|
|
|
|
|
|
|
|
/* --- functions --- */
|
|
void
|
|
gtk_arg_type_new_static (GtkType base_class_type,
|
|
const gchar *arg_name,
|
|
guint class_n_args_offset,
|
|
GHashTable *arg_info_hash_table,
|
|
GtkType arg_type,
|
|
guint arg_flags,
|
|
guint arg_id)
|
|
{
|
|
GtkArgInfo *info;
|
|
gchar class_part[MAX_ARG_LENGTH];
|
|
gchar *arg_part;
|
|
GtkType class_type;
|
|
guint class_offset;
|
|
guint *n_args_p;
|
|
gchar *p;
|
|
|
|
g_return_if_fail (arg_name != NULL);
|
|
g_return_if_fail (GTK_FUNDAMENTAL_TYPE (base_class_type) == GTK_TYPE_OBJECT);
|
|
g_return_if_fail (class_n_args_offset != 0);
|
|
g_return_if_fail (arg_info_hash_table != NULL);
|
|
g_return_if_fail (arg_type > GTK_TYPE_NONE);
|
|
g_return_if_fail (arg_id > 0);
|
|
g_return_if_fail ((arg_flags & GTK_ARG_READWRITE) != 0);
|
|
/* g_return_if_fail ((arg_flags & GTK_ARG_CHILD_ARG) == 0); */
|
|
|
|
arg_flags &= GTK_ARG_MASK;
|
|
|
|
arg_part = strchr (arg_name, ':');
|
|
if (!arg_part || (arg_part[0] != ':') || (arg_part[1] != ':'))
|
|
{
|
|
g_warning ("gtk_arg_type_new(): invalid arg name: \"%s\"\n", arg_name);
|
|
return;
|
|
}
|
|
|
|
class_offset = (guint) (arg_part - arg_name);
|
|
strncpy (class_part, arg_name, class_offset);
|
|
class_part[class_offset] = 0;
|
|
|
|
class_type = gtk_type_from_name (class_part);
|
|
if (!gtk_type_is_a (class_type, base_class_type))
|
|
{
|
|
g_warning ("gtk_arg_type_new(): argument class in \"%s\" is not in the `%s' ancestry",
|
|
arg_name,
|
|
gtk_type_name (base_class_type));
|
|
return;
|
|
}
|
|
|
|
p = gtk_type_class (class_type);
|
|
p += class_n_args_offset;
|
|
n_args_p = (guint*) p;
|
|
*n_args_p += 1;
|
|
|
|
info = g_new (GtkArgInfo, 1);
|
|
info->class_type = class_type;
|
|
info->full_name = (gchar*) arg_name; /* _static */
|
|
info->name = info->full_name + class_offset + 2;
|
|
info->type = arg_type;
|
|
info->arg_flags = arg_flags;
|
|
info->arg_id = arg_id;
|
|
info->seq_id = *n_args_p;
|
|
|
|
g_hash_table_insert (arg_info_hash_table, info, info);
|
|
}
|
|
|
|
gchar*
|
|
gtk_arg_name_strip_type (const gchar *arg_name)
|
|
{
|
|
gchar buffer[MAX_ARG_LENGTH];
|
|
gchar *p;
|
|
|
|
/* security audit
|
|
*/
|
|
if (!arg_name || strlen (arg_name) > MAX_ARG_LENGTH - 8)
|
|
return NULL;
|
|
|
|
p = strchr (arg_name, ':');
|
|
if (p)
|
|
{
|
|
guint len;
|
|
|
|
if ((p[0] != ':') || (p[1] != ':') || (p[2] == 0))
|
|
return NULL;
|
|
len = (guint) (p - arg_name);
|
|
strncpy (buffer, arg_name, len);
|
|
buffer[len] = 0;
|
|
|
|
if (gtk_type_from_name (buffer) != GTK_TYPE_INVALID)
|
|
return p + 2;
|
|
}
|
|
|
|
return (gchar*) arg_name;
|
|
}
|
|
|
|
gchar*
|
|
gtk_arg_get_info (GtkType object_type,
|
|
GHashTable *arg_info_hash_table,
|
|
const gchar *arg_name,
|
|
GtkArgInfo **info_p)
|
|
{
|
|
GtkType otype;
|
|
gchar buffer[MAX_ARG_LENGTH];
|
|
guint len;
|
|
gchar *p;
|
|
|
|
*info_p = NULL;
|
|
|
|
/* security audit
|
|
*/
|
|
if (!arg_name || strlen (arg_name) > MAX_ARG_LENGTH - 8)
|
|
return g_strdup ("argument name exceeds maximum size.");
|
|
|
|
/* split off the object-type part
|
|
*/
|
|
p = strchr (arg_name, ':');
|
|
if (p)
|
|
{
|
|
if ((p[0] != ':') || (p[1] != ':'))
|
|
return g_strconcat ("invalid argument syntax: \"",
|
|
arg_name,
|
|
"\"",
|
|
NULL);
|
|
len = (guint) (p - arg_name);
|
|
strncpy (buffer, arg_name, len);
|
|
buffer[len] = 0;
|
|
|
|
otype = gtk_type_from_name (buffer);
|
|
if (otype != GTK_TYPE_INVALID)
|
|
arg_name = p + 2;
|
|
}
|
|
else
|
|
otype = GTK_TYPE_INVALID;
|
|
|
|
/* split off the argument name
|
|
*/
|
|
p = strchr (arg_name, ':');
|
|
if (p)
|
|
{
|
|
if ((p[0] != ':') || (p[1] != ':'))
|
|
return g_strconcat ("invalid argument syntax: \"",
|
|
arg_name,
|
|
"\"",
|
|
NULL);
|
|
len = (guint) (p - arg_name);
|
|
strncpy (buffer, arg_name, len);
|
|
buffer[len] = 0;
|
|
arg_name = buffer;
|
|
}
|
|
|
|
/* lookup the argument
|
|
*/
|
|
if (otype != GTK_TYPE_INVALID)
|
|
{
|
|
GtkArgInfo info;
|
|
|
|
info.class_type = otype;
|
|
info.name = (gchar*) arg_name;
|
|
|
|
*info_p = g_hash_table_lookup (arg_info_hash_table, &info);
|
|
if (*info_p && !gtk_type_is_a (object_type, (*info_p)->class_type))
|
|
*info_p = NULL;
|
|
}
|
|
else
|
|
{
|
|
otype = object_type;
|
|
while (!*info_p && GTK_FUNDAMENTAL_TYPE (otype) == GTK_TYPE_OBJECT)
|
|
{
|
|
GtkArgInfo info;
|
|
|
|
info.class_type = otype;
|
|
info.name = (gchar*) arg_name;
|
|
|
|
*info_p = g_hash_table_lookup (arg_info_hash_table, &info);
|
|
|
|
otype = gtk_type_parent (otype);
|
|
}
|
|
}
|
|
|
|
if (!*info_p)
|
|
return g_strconcat ("could not find argument \"",
|
|
arg_name,
|
|
"\" in the `",
|
|
gtk_type_name (object_type),
|
|
"' class ancestry",
|
|
NULL);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
gchar*
|
|
gtk_args_collect (GtkType object_type,
|
|
GHashTable *arg_info_hash_table,
|
|
GSList **arg_list_p,
|
|
GSList **info_list_p,
|
|
const gchar *first_arg_name,
|
|
va_list var_args)
|
|
{
|
|
GSList *arg_list;
|
|
GSList *info_list;
|
|
const gchar *arg_name;
|
|
|
|
g_return_val_if_fail (arg_list_p != NULL, NULL);
|
|
*arg_list_p = NULL;
|
|
g_return_val_if_fail (info_list_p != NULL, NULL);
|
|
*info_list_p = 0;
|
|
g_return_val_if_fail (arg_info_hash_table != NULL, NULL);
|
|
|
|
arg_list = NULL;
|
|
info_list = NULL;
|
|
arg_name = first_arg_name;
|
|
while (arg_name)
|
|
{
|
|
GtkArgInfo *info = NULL;
|
|
gchar *error;
|
|
|
|
error = gtk_arg_get_info (object_type, arg_info_hash_table, arg_name, &info);
|
|
if (!error)
|
|
{
|
|
GtkArg *arg;
|
|
|
|
info_list = g_slist_prepend (info_list, info);
|
|
|
|
arg = gtk_arg_new (info->type);
|
|
arg->name = (gchar*) arg_name;
|
|
GTK_ARG_COLLECT_VALUE (GTK_FUNDAMENTAL_TYPE (arg->type), arg, var_args, error);
|
|
arg_list = g_slist_prepend (arg_list, arg);
|
|
}
|
|
if (error)
|
|
{
|
|
gtk_args_collect_cleanup (arg_list, info_list);
|
|
|
|
return error;
|
|
}
|
|
|
|
arg_name = va_arg (var_args, gchar*);
|
|
}
|
|
|
|
*arg_list_p = g_slist_reverse (arg_list);
|
|
*info_list_p = g_slist_reverse (info_list);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
void
|
|
gtk_args_collect_cleanup (GSList *arg_list,
|
|
GSList *info_list)
|
|
{
|
|
GSList *slist;
|
|
|
|
g_slist_free (info_list);
|
|
|
|
for (slist = arg_list; slist; slist = slist->next)
|
|
gtk_arg_free (slist->data, FALSE);
|
|
g_slist_free (arg_list);
|
|
}
|
|
|
|
static void
|
|
gtk_args_query_foreach (gpointer key,
|
|
gpointer value,
|
|
gpointer user_data)
|
|
{
|
|
register GtkArgInfo *info;
|
|
register GtkArgQueryData *data;
|
|
|
|
g_assert (key == value); /* paranoid */
|
|
|
|
info = value;
|
|
data = user_data;
|
|
|
|
if (info->class_type == data->class_type)
|
|
data->arg_list = g_list_prepend (data->arg_list, info);
|
|
}
|
|
|
|
GtkArg*
|
|
gtk_args_query (GtkType class_type,
|
|
GHashTable *arg_info_hash_table,
|
|
guint32 **arg_flags,
|
|
guint *n_args_p)
|
|
{
|
|
GtkArg *args;
|
|
GtkArgQueryData query_data;
|
|
|
|
if (arg_flags)
|
|
*arg_flags = NULL;
|
|
g_return_val_if_fail (n_args_p != NULL, NULL);
|
|
*n_args_p = 0;
|
|
g_return_val_if_fail (arg_info_hash_table != NULL, NULL);
|
|
|
|
/* make sure the types class has been initialized, because
|
|
* the argument setup happens in the gtk_*_class_init() functions.
|
|
*/
|
|
gtk_type_class (class_type);
|
|
|
|
query_data.arg_list = NULL;
|
|
query_data.class_type = class_type;
|
|
g_hash_table_foreach (arg_info_hash_table, gtk_args_query_foreach, &query_data);
|
|
|
|
if (query_data.arg_list)
|
|
{
|
|
register GList *list;
|
|
register guint len;
|
|
|
|
list = query_data.arg_list;
|
|
len = 1;
|
|
while (list->next)
|
|
{
|
|
len++;
|
|
list = list->next;
|
|
}
|
|
|
|
args = g_new0 (GtkArg, len);
|
|
*n_args_p = len;
|
|
if (arg_flags)
|
|
*arg_flags = g_new (guint32, len);
|
|
|
|
do
|
|
{
|
|
GtkArgInfo *info;
|
|
|
|
info = list->data;
|
|
list = list->prev;
|
|
|
|
g_assert (info->seq_id > 0 && info->seq_id <= len); /* paranoid */
|
|
|
|
args[info->seq_id - 1].type = info->type;
|
|
args[info->seq_id - 1].name = info->full_name;
|
|
if (arg_flags)
|
|
(*arg_flags)[info->seq_id - 1] = info->arg_flags;
|
|
}
|
|
while (list);
|
|
|
|
g_list_free (query_data.arg_list);
|
|
}
|
|
else
|
|
args = NULL;
|
|
|
|
return args;
|
|
}
|
|
|
|
GtkArg*
|
|
gtk_arg_new (GtkType arg_type)
|
|
{
|
|
GtkArg *arg;
|
|
|
|
arg = g_new0 (GtkArg, 1);
|
|
arg->type = arg_type;
|
|
arg->name = NULL;
|
|
|
|
return arg;
|
|
}
|
|
|
|
GtkArg*
|
|
gtk_arg_copy (GtkArg *src_arg,
|
|
GtkArg *dest_arg)
|
|
{
|
|
g_return_val_if_fail (src_arg != NULL, NULL);
|
|
|
|
if (!dest_arg)
|
|
{
|
|
dest_arg = g_new0 (GtkArg, 1);
|
|
dest_arg->name = src_arg->name;
|
|
}
|
|
|
|
dest_arg->type = src_arg->type;
|
|
dest_arg->d = src_arg->d;
|
|
|
|
if (src_arg->type == GTK_TYPE_STRING)
|
|
GTK_VALUE_STRING (*dest_arg) = g_strdup (GTK_VALUE_STRING (*src_arg));
|
|
|
|
return dest_arg;
|
|
}
|
|
|
|
void
|
|
gtk_arg_free (GtkArg *arg,
|
|
gboolean free_contents)
|
|
{
|
|
g_return_if_fail (arg != NULL);
|
|
|
|
if (free_contents &&
|
|
GTK_FUNDAMENTAL_TYPE (arg->type) == GTK_TYPE_STRING)
|
|
g_free (GTK_VALUE_STRING (*arg));
|
|
g_free (arg);
|
|
}
|
|
|
|
gint
|
|
gtk_arg_info_equal (gconstpointer arg_info_1,
|
|
gconstpointer arg_info_2)
|
|
{
|
|
register const GtkArgInfo *info1 = arg_info_1;
|
|
register const GtkArgInfo *info2 = arg_info_2;
|
|
|
|
return ((info1->class_type == info2->class_type) &&
|
|
strcmp (info1->name, info2->name) == 0);
|
|
}
|
|
|
|
guint
|
|
gtk_arg_info_hash (gconstpointer arg_info)
|
|
{
|
|
register const GtkArgInfo *info = arg_info;
|
|
register const gchar *p;
|
|
register guint h = info->class_type >> 8;
|
|
|
|
for (p = info->name; *p; p++)
|
|
{
|
|
register guint g;
|
|
|
|
h = (h << 4) + *p;
|
|
g = h & 0xf0000000;
|
|
if (g)
|
|
{
|
|
h = h ^ (g >> 24);
|
|
h = h ^ g;
|
|
}
|
|
}
|
|
|
|
return h;
|
|
}
|