gtk2/gtk/gtkaccelerator.c
Tim Janik d187183161 made the <widget>_signals[] arrays of type guint rather than gint. made
Mon Mar  9 15:48:10 1998  Tim Janik  <timj@gimp.org>

        * Signal signedness and naming corrections, plus GtkType fixes:

        * gtk/gtkadjustment.c:
        * gtk/gtkbutton.c:
        * gtk/gtkcheckmenuitem.c:
        * gtk/gtkclist.c:
        * gtk/gtkcolorsel.c:
        * gtk/gtkcontainer.c:
        * gtk/gtkcurve.c:
        * gtk/gtkdata.c:
        * gtk/gtkeditable.c:
        * gtk/gtkentry.c:
        * gtk/gtkhandlebox.c:
        * gtk/gtkinputdialog.c:
        * gtk/gtkitem.c:
        * gtk/gtklist.c:
        * gtk/gtkmenuitem.c:
        * gtk/gtkmenushell.c:
        * gtk/gtknotebook.c:
        * gtk/gtkstatusbar.c:
        * gtk/gtktoolbar.c:
        * gtk/gtktree.c:
        * gtk/gtktreeitem.c:
        * gtk/gtkwidget.c:
        * gtk/gtktogglebutton.c:
        * gtk/gtkwindow.c:
        made the <widget>_signals[] arrays of type guint rather than gint.
        * gtk/gtkwidget.c (gtk_widget_get_ancestor): made widget_type a GtkType.

        * gtk/gtkcombo.h:
        handler ids need to be of type guint (entry_change_id, list_change_id).

        * gtk/gtkaccelerator.c:
        changed signal_num to signal_id and typed it guint.

        * gtk/gtkmain.c: made gtk_ndebug_keys a guint.

        * gtk/gtkmenu.h:
        * gtk/gtkmenu.c:
        (gtk_menu_popup): made button a guint.
        (gtk_menu_set_active): made index a guint.

        * gtk/gtkmenuitem.h:
        * gtk/gtkmenuitem.c:
        made accelerator_signal a guint.

        * gtk/gtkoptionmenu.h:
        * gtk/gtkoptionmenu.c:
        (gtk_option_menu_set_history): made index a guint.

        * gtk/gtksignal.h:
        * gtk/gtksignal.c:
        * gtk/gtkobject.h:
        * gtk/gtkobject.c: changed a bunch of prototypes to take guints rather
        than gints. also made some conversions from guint to GtkType, left over
        from when the fundamental-types system was introduced.

        * gtk/gtkobject.h:
        * gtk/gtkobject.c: made object_data_id_index and obj_count guints.
        made *signals and nsignals guints in GtkObjectClass.
1998-03-09 15:16:28 +00:00

346 lines
7.6 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <ctype.h>
#include "gtkaccelerator.h"
#include "gtksignal.h"
#include "gtkwidget.h"
typedef struct _GtkAcceleratorEntry GtkAcceleratorEntry;
struct _GtkAcceleratorEntry
{
guint8 modifiers;
GtkObject *object;
guint signal_id;
};
static void gtk_accelerator_table_init (GtkAcceleratorTable *table);
static void gtk_accelerator_table_clean (GtkAcceleratorTable *table);
static GtkAcceleratorTable *default_table = NULL;
static GSList *tables = NULL;
static guint8 gtk_accelerator_table_default_mod_mask = (guint8) ~0;
GtkAcceleratorTable*
gtk_accelerator_table_new ()
{
GtkAcceleratorTable *table;
table = g_new (GtkAcceleratorTable, 1);
gtk_accelerator_table_init (table);
tables = g_slist_prepend (tables, table);
return table;
}
GtkAcceleratorTable*
gtk_accelerator_table_find (GtkObject *object,
const gchar *signal_name,
guchar accelerator_key,
guint8 accelerator_mods)
{
GtkAcceleratorTable *table;
GtkAcceleratorEntry *entry;
GSList *tmp_list;
GList *entries;
guint signal_id;
guint hash;
g_return_val_if_fail (object != NULL, NULL);
g_return_val_if_fail (signal_name != NULL, NULL);
signal_id = gtk_signal_lookup (signal_name, GTK_OBJECT_TYPE (object));
hash = (guint) accelerator_key;
tmp_list = tables;
while (tmp_list)
{
table = tmp_list->data;
tmp_list = tmp_list->next;
entries = table->entries[hash];
while (entries)
{
entry = entries->data;
entries = entries->next;
if ((entry->object == object) &&
(entry->signal_id == signal_id) &&
((entry->modifiers & table->modifier_mask) ==
(accelerator_mods & table->modifier_mask)))
return table;
}
}
return NULL;
}
GtkAcceleratorTable*
gtk_accelerator_table_ref (GtkAcceleratorTable *table)
{
g_return_val_if_fail (table != NULL, NULL);
table->ref_count += 1;
return table;
}
void
gtk_accelerator_table_unref (GtkAcceleratorTable *table)
{
g_return_if_fail (table != NULL);
table->ref_count -= 1;
if (table->ref_count <= 0)
{
tables = g_slist_remove (tables, table);
gtk_accelerator_table_clean (table);
g_free (table);
}
}
void
gtk_accelerator_table_install (GtkAcceleratorTable *table,
GtkObject *object,
const gchar *signal_name,
guchar accelerator_key,
guint8 accelerator_mods)
{
GtkAcceleratorEntry *entry;
GList *entries;
gchar *signame;
guint signal_id;
guint hash;
g_return_if_fail (object != NULL);
if (!table)
{
if (!default_table)
default_table = gtk_accelerator_table_new ();
table = default_table;
}
signal_id = gtk_signal_lookup (signal_name, GTK_OBJECT_TYPE (object));
g_return_if_fail (signal_id != 0);
hash = (guint) accelerator_key;
entries = table->entries[hash];
while (entries)
{
entry = entries->data;
if ((entry->modifiers & table->modifier_mask) ==
(accelerator_mods & table->modifier_mask))
{
if (GTK_IS_WIDGET (entry->object))
{
signame = gtk_signal_name (entry->signal_id);
gtk_signal_emit_by_name (entry->object,
"remove_accelerator",
signame);
}
entry->modifiers = accelerator_mods;
entry->object = object;
entry->signal_id = signal_id;
return;
}
entries = entries->next;
}
entry = g_new (GtkAcceleratorEntry, 1);
entry->modifiers = accelerator_mods;
entry->object = object;
entry->signal_id = signal_id;
table->entries[hash] = g_list_prepend (table->entries[hash], entry);
}
void
gtk_accelerator_table_remove (GtkAcceleratorTable *table,
GtkObject *object,
const gchar *signal_name)
{
GtkAcceleratorEntry *entry;
GList *entries;
GList *temp_list;
guint signal_id;
gint i;
g_return_if_fail (object != NULL);
if (!table)
{
if (!default_table)
default_table = gtk_accelerator_table_new ();
table = default_table;
}
signal_id = gtk_signal_lookup (signal_name, GTK_OBJECT_TYPE (object));
g_return_if_fail (signal_id != 0);
for (i = 0; i < 256; i++)
{
entries = table->entries[i];
while (entries)
{
entry = entries->data;
if ((entry->object == object) && (entry->signal_id == signal_id))
{
g_free (entry);
temp_list = entries;
if (entries->next)
entries->next->prev = entries->prev;
if (entries->prev)
entries->prev->next = entries->next;
if (table->entries[i] == entries)
table->entries[i] = entries->next;
temp_list->next = NULL;
temp_list->prev = NULL;
g_list_free (temp_list);
return;
}
entries = entries->next;
}
}
}
gint
gtk_accelerator_table_check (GtkAcceleratorTable *table,
const guchar accelerator_key,
guint8 accelerator_mods)
{
GtkAcceleratorEntry *entry;
GList *entries;
guint hash;
if (!table)
{
if (!default_table)
default_table = gtk_accelerator_table_new ();
table = default_table;
}
hash = (guint) accelerator_key;
entries = table->entries[hash];
while (entries)
{
entry = entries->data;
if ((entry->modifiers & table->modifier_mask) ==
(accelerator_mods & table->modifier_mask))
{
gtk_signal_emit (entry->object, entry->signal_id);
return TRUE;
}
entries = entries->next;
}
if (!isupper (hash))
{
hash = toupper (hash);
entries = table->entries[hash];
while (entries)
{
entry = entries->data;
if (((entry->modifiers & table->modifier_mask) ==
(accelerator_mods & table->modifier_mask)) &&
(GTK_IS_WIDGET (entry->object) &&
GTK_WIDGET_SENSITIVE (entry->object)))
{
gtk_signal_emit (entry->object, entry->signal_id);
return TRUE;
}
entries = entries->next;
}
}
return FALSE;
}
void
gtk_accelerator_table_set_mod_mask (GtkAcceleratorTable *table,
guint8 modifier_mask)
{
if (table == NULL)
{
gtk_accelerator_table_default_mod_mask = modifier_mask;
}
else
{
table->modifier_mask = modifier_mask;
}
}
static void
gtk_accelerator_table_init (GtkAcceleratorTable *table)
{
gint i;
g_return_if_fail (table != NULL);
for (i = 0; i < 256; i++)
table->entries[i] = NULL;
table->ref_count = 1;
table->modifier_mask = gtk_accelerator_table_default_mod_mask;
}
static void
gtk_accelerator_table_clean (GtkAcceleratorTable *table)
{
GtkAcceleratorEntry *entry;
GList *entries;
gint i;
g_return_if_fail (table != NULL);
for (i = 0; i < 256; i++)
{
entries = table->entries[i];
while (entries)
{
entry = entries->data;
entries = entries->next;
g_free (entry);
}
g_list_free (table->entries[i]);
table->entries[i] = NULL;
}
}