forked from AuroraMiddleware/gtk
d69496c060
Wed Oct 25 20:47:41 2000 Tim Janik <timj@gtk.org> * gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init): urg, removed implementation of gtk_marshal_VOID__INT_INT_INT_INT. if people do that, couldn't they at least give it a non-standard name? * gtk/gtktextlayout.c: arg! yet another implementation of gtk_marshal_VOID__INT_INT_INT_INT(), is this a conspiracy? * gtk/gtktextbuffer.c: gotcha! captured a vagabonding gtk_marshal_VOID__INT_POINTER_INT() implementation, braught it back home. now i know this _is_ a conspiracy. * gtk/gtkwidget.c (gtk_widget_class_init): marshaller fixups for ::state-changed. * gtk/gtkaccelgroup.c (gtk_accel_group_create_remove): (gtk_accel_group_create_add): marshaller signature fixups. * gtk/gtklistitem.c (gtk_list_item_class_init): signal creation fixups, pass in GTK_TYPE_SCROLL_TYPE instead of GTK_TYPE_ENUM. * gtk/gtkobject.[hc]: removed GTK_CONNECTED flag, it's not valid anymore. Tue Oct 24 23:59:21 2000 Tim Janik <timj@gtk.org> * docs/reference/Makefile.am: disabled SUBDIRS for the moment, since due to the signal system changes, it wouldn't build currently. to be fixed soon. * docs/Changes-2.0.txt: GtkSignal/GSignal updates. * gtk/gtkwidget.c: ::direction_changed takes an enum as argument, so it needs gtk_marshal_VOID__ENUM() instead of gtk_marshal_NONE__UINT(). * gdk/gdk*.c: adapted type registration functions. * gtk/gtkbindings.c: * gtk/gtkaccelgroup.c: operate on GSignalQuery, GtkSignalQuery is gone. * gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType. * gtk/gtkobject.c: (gtk_object_destroy): (gtk_object_shutdown): fixed recursion guards. basically we have to catch the case where any of GObject.shutdown() or gtk_object_destroy() is called during ::destroy, and avoid recursion there. * gtk/gtktypeutils.c: * gtk/maketypes.awk: awk-script hackup to provide gtk_type_init() with boxed_copy/boxed_free. this needs a more general solution based on a publically installed code-generator utility. * gtk/gtktypeutils.[hc]: compat aliased GTK_TYPE_BOXED to G_TYPE_BOXED, glib's gobject has support for that now. define GtkSignalMarshaller in terms of GSignalCMarshaller. Mon Oct 23 09:36:42 2000 Tim Janik <timj@gtk.org> * gtk/gtksignal.[hc]: * gtk/gtkmarshal.[hc]: * gtk/Makefile.am: generate marshallers with glib-genmarshal and don't compile gtkmarshal.c on its own anymore, just include it in gtksignal.c. removed #include <gtkmarshal.h>s all over the place, gtksignal.h takes care of that. * *.c: marshaller name fixups. * gtk/gtkmarshal.list: added a comment briefing the format. Sun Oct 22 23:14:39 2000 Tim Janik <timj@gtk.org> * gtk/gtksignal.[hc]: nuked old implementation. we mostly have compatibility macros here now. more specifically, most of the API is preserved (yes, _most_, nonwithstanding the following exceptions listed, the API is stil lHUGE ;) things that got removed completely: GtkSignalQuery, gtk_signal_query(), gtk_signal_n_emissions(), gtk_signal_n_emissions_by_name(), gtk_signal_handlers_destroy(), gtk_signal_set_funcs(), gtk_signal_handler_pending_by_id(), gtk_signal_add_emission_hook(), gtk_signal_add_emission_hook_full(), gtk_signal_remove_emission_hook(). non-functional functions variants: gtk_signal_add_emission_hook(), gtk_signal_remove_emission_hook(). the GtkCallbackMarshal argument to gtk_signal_connect_full() is not supported anymore. (gtk_signal_compat_matched): new internal function to aid implementation of the compatibility macros, it provides functionality to block/unblock/disconnect handlers based on func/data. * gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType, * *.c: adaptions to new type registration API signatures. Fri Oct 20 15:26:33 2000 Tim Janik <timj@gtk.org> * gtk/gtktypeutils.[hc]: removed G_TYPE_GTK_POINTER cludge.
344 lines
8.5 KiB
C
344 lines
8.5 KiB
C
/* GTK - The GIMP Toolkit
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
*
|
|
* Themes added by The Rasterman <raster@redhat.com>
|
|
*
|
|
* 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 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
/*
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
* files for a list of changes. These files are distributed with
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <gmodule.h>
|
|
#include "gtkthemes.h"
|
|
#include "gtkmain.h"
|
|
#include "gtkrc.h"
|
|
#include "gtkselection.h"
|
|
#include "gtksignal.h"
|
|
#include "gtkwidget.h"
|
|
#include "config.h"
|
|
#include "gtkintl.h"
|
|
|
|
typedef struct _GtkThemeEnginePlugin GtkThemeEnginePlugin;
|
|
|
|
struct _GtkThemeEngine
|
|
{
|
|
GModule *library;
|
|
|
|
void (*init) (GtkThemeEngine *);
|
|
void (*exit) (void);
|
|
GtkRcStyle *(*create_rc_style) ();
|
|
|
|
gchar *name;
|
|
|
|
GSList *plugins; /* TypePlugins for this engine */
|
|
|
|
guint refcount;
|
|
};
|
|
|
|
struct _GtkThemeEnginePlugin
|
|
{
|
|
GTypePlugin plugin;
|
|
|
|
GtkThemeEngine *engine;
|
|
gchar *engine_name;
|
|
GTypeInfo info;
|
|
GType type;
|
|
GType parent_type;
|
|
};
|
|
|
|
static GHashTable *engine_hash = NULL;
|
|
|
|
#ifdef __EMX__
|
|
static void gen_8_3_dll_name(gchar *name, gchar *fullname)
|
|
{
|
|
/* 8.3 dll filename restriction */
|
|
fullname[0] = '_';
|
|
strncpy (fullname + 1, name, 7);
|
|
fullname[8] = '\0';
|
|
strcat (fullname, ".dll");
|
|
}
|
|
#endif
|
|
|
|
GtkThemeEngine*
|
|
gtk_theme_engine_get (const gchar *name)
|
|
{
|
|
GtkThemeEngine *result;
|
|
|
|
if (!engine_hash)
|
|
engine_hash = g_hash_table_new (g_str_hash, g_str_equal);
|
|
|
|
/* get the library name for the theme */
|
|
|
|
result = g_hash_table_lookup (engine_hash, name);
|
|
|
|
if (!result)
|
|
{
|
|
gchar *fullname;
|
|
gchar *engine_path;
|
|
GModule *library;
|
|
|
|
#ifndef __EMX__
|
|
fullname = g_module_build_path (NULL, name);
|
|
#else
|
|
fullname = g_malloc (13);
|
|
gen_8_3_dll_name(name, fullname);
|
|
#endif
|
|
engine_path = gtk_rc_find_module_in_path (fullname);
|
|
#ifdef __EMX__
|
|
if (!engine_path)
|
|
{
|
|
/* try theme name without prefix '_' */
|
|
memmove(fullname, fullname + 1, strlen(fullname));
|
|
engine_path = gtk_rc_find_module_in_path (fullname);
|
|
}
|
|
#endif
|
|
|
|
if (!engine_path)
|
|
{
|
|
g_warning (_("Unable to locate loadable module in module_path: \"%s\","),
|
|
fullname);
|
|
|
|
g_free (fullname);
|
|
return NULL;
|
|
}
|
|
g_free (fullname);
|
|
|
|
/* load the lib */
|
|
|
|
GTK_NOTE (MISC, g_message ("Loading Theme %s\n", engine_path));
|
|
|
|
library = g_module_open (engine_path, 0);
|
|
g_free(engine_path);
|
|
if (!library)
|
|
{
|
|
g_warning (g_module_error());
|
|
return NULL;
|
|
}
|
|
else
|
|
{
|
|
result = g_new (GtkThemeEngine, 1);
|
|
|
|
result->refcount = 1;
|
|
result->name = g_strdup (name);
|
|
result->library = library;
|
|
result->plugins = NULL;
|
|
|
|
/* extract symbols from the lib */
|
|
if (!g_module_symbol (library, "theme_init",
|
|
(gpointer *)&result->init) ||
|
|
!g_module_symbol (library, "theme_exit",
|
|
(gpointer *)&result->exit) ||
|
|
!g_module_symbol (library, "theme_create_rc_style",
|
|
(gpointer *)&result->create_rc_style))
|
|
{
|
|
g_warning (g_module_error());
|
|
g_free (result);
|
|
return NULL;
|
|
}
|
|
|
|
/* call the theme's init (theme_init) function to let it */
|
|
/* setup anything it needs to set up. */
|
|
result->init((GtkThemeEngine *)result);
|
|
|
|
g_hash_table_insert (engine_hash, result->name, result);
|
|
}
|
|
}
|
|
else
|
|
result->refcount++;
|
|
|
|
return (GtkThemeEngine *)result;
|
|
}
|
|
|
|
void
|
|
gtk_theme_engine_ref (GtkThemeEngine *engine)
|
|
{
|
|
g_return_if_fail (engine != NULL);
|
|
|
|
engine->refcount++;
|
|
}
|
|
|
|
void
|
|
gtk_theme_engine_unref (GtkThemeEngine *engine)
|
|
{
|
|
GSList *tmp_list;
|
|
|
|
g_return_if_fail (engine != NULL);
|
|
g_return_if_fail (engine->refcount > 0);
|
|
|
|
engine->refcount--;
|
|
|
|
if (engine->refcount == 0)
|
|
{
|
|
engine->exit();
|
|
|
|
g_hash_table_remove (engine_hash, engine->name);
|
|
|
|
tmp_list = engine->plugins;
|
|
while (tmp_list)
|
|
{
|
|
GtkThemeEnginePlugin *plugin = tmp_list->data;
|
|
plugin->engine = NULL;
|
|
|
|
tmp_list = tmp_list->next;
|
|
}
|
|
g_slist_free (engine->plugins);
|
|
|
|
g_module_close (engine->library);
|
|
g_free (engine->name);
|
|
g_free (engine);
|
|
}
|
|
}
|
|
|
|
GtkRcStyle *
|
|
gtk_theme_engine_create_rc_style (GtkThemeEngine *engine)
|
|
{
|
|
g_return_val_if_fail (engine != NULL, NULL);
|
|
|
|
return engine->create_rc_style ();
|
|
}
|
|
|
|
static void
|
|
gtk_theme_engine_plugin_ref (GTypePlugin *plugin)
|
|
{
|
|
GtkThemeEnginePlugin *theme_plugin = (GtkThemeEnginePlugin *)plugin;
|
|
|
|
if (theme_plugin->engine == NULL)
|
|
{
|
|
gtk_theme_engine_get (theme_plugin->engine_name);
|
|
if (!theme_plugin->engine)
|
|
{
|
|
g_warning ("An attempt to create an instance of a type from\n"
|
|
"a previously loaded theme engine was made after the engine\n"
|
|
"was unloaded, but the engine could not be reloaded or no longer\n"
|
|
"implements the type. Bad things will happen.\n");
|
|
}
|
|
}
|
|
else
|
|
gtk_theme_engine_ref (theme_plugin->engine);
|
|
}
|
|
|
|
static void
|
|
gtk_theme_engine_plugin_unref (GTypePlugin *plugin)
|
|
{
|
|
GtkThemeEnginePlugin *theme_plugin = (GtkThemeEnginePlugin *)plugin;
|
|
|
|
g_return_if_fail (theme_plugin->engine != NULL);
|
|
|
|
gtk_theme_engine_unref (theme_plugin->engine);
|
|
}
|
|
|
|
static void
|
|
gtk_theme_engine_complete_type_info (GTypePlugin *plugin,
|
|
GType g_type,
|
|
GTypeInfo *info,
|
|
GTypeValueTable *value_table)
|
|
{
|
|
GtkThemeEnginePlugin *theme_plugin = (GtkThemeEnginePlugin *)plugin;
|
|
|
|
*info = theme_plugin->info;
|
|
}
|
|
|
|
static GTypePluginVTable gtk_theme_engine_plugin_vtable = {
|
|
gtk_theme_engine_plugin_ref,
|
|
gtk_theme_engine_plugin_unref,
|
|
gtk_theme_engine_complete_type_info,
|
|
NULL
|
|
};
|
|
|
|
/**
|
|
* gtk_theme_engine_register_type:
|
|
* @engine: a #GtkThemeEngine
|
|
* @parent_type: the type for the parent class
|
|
* @type_name: name for the type
|
|
* @type_info: type information structure
|
|
*
|
|
* Looks up or registers a type that is implemented with a particular
|
|
* theme engine. If a type with name @type_name is already registered,
|
|
* the #GType identifier for the type is returned, otherwise the type
|
|
* is newly registered, and the resulting #GType identifier returned.
|
|
*
|
|
* As long as any instances of the type exist, the a reference will be
|
|
* held to the theme engine and the theme engine will not be unloaded.
|
|
*
|
|
* Return value: the type identifier for the class.
|
|
**/
|
|
GType
|
|
gtk_theme_engine_register_type (GtkThemeEngine *engine,
|
|
GType parent_type,
|
|
const gchar *type_name,
|
|
const GTypeInfo *type_info)
|
|
{
|
|
GtkThemeEnginePlugin *plugin;
|
|
GType type;
|
|
|
|
g_return_val_if_fail (engine != NULL, 0);
|
|
g_return_val_if_fail (type_name != NULL, 0);
|
|
g_return_val_if_fail (type_info != NULL, 0);
|
|
|
|
type = g_type_from_name (type_name);
|
|
if (type)
|
|
plugin = (GtkThemeEnginePlugin *)g_type_get_plugin (type);
|
|
else
|
|
{
|
|
plugin = g_new (GtkThemeEnginePlugin, 1);
|
|
|
|
plugin->plugin.vtable = >k_theme_engine_plugin_vtable;
|
|
plugin->engine = NULL;
|
|
plugin->engine_name = NULL;
|
|
plugin->parent_type = parent_type;
|
|
plugin->type = g_type_register_dynamic (parent_type, type_name, (GTypePlugin *) plugin, 0);
|
|
}
|
|
|
|
if (plugin->engine)
|
|
{
|
|
if (plugin->engine != engine)
|
|
{
|
|
g_warning ("Two different theme engines tried to register '%s'.", type_name);
|
|
return 0;
|
|
}
|
|
|
|
if (plugin->parent_type != parent_type)
|
|
{
|
|
g_warning ("Type '%s' recreated with different parent type.\n"
|
|
"(was '%s', now '%s')", type_name,
|
|
g_type_name (plugin->parent_type),
|
|
g_type_name (parent_type));
|
|
return 0;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
plugin->engine = engine;
|
|
if (plugin->engine_name)
|
|
g_free (plugin->engine_name);
|
|
|
|
plugin->engine_name = g_strdup (engine->name);
|
|
|
|
plugin->info = *type_info;
|
|
|
|
engine->plugins = g_slist_prepend (engine->plugins, plugin);
|
|
}
|
|
|
|
return plugin->type;
|
|
}
|
|
|