diff options
author | Benjamin Otte <otte@redhat.com> | 2018-08-16 07:55:49 +0200 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-03-18 23:00:51 -0400 |
commit | 20cfa2e2809df7f26bb47148ee3b5cd552f45460 (patch) | |
tree | 5afe350d47ad2164e1041e7d144677f9b5154ef1 /gtk/gtkmnemonichash.h | |
parent | a977094e181c9e79325e65d419783fd154ccb28e (diff) | |
download | gtk+-20cfa2e2809df7f26bb47148ee3b5cd552f45460.tar.gz |
Remove GtkMnemonicHash
It's not used anymore.
Diffstat (limited to 'gtk/gtkmnemonichash.h')
-rw-r--r-- | gtk/gtkmnemonichash.h | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/gtk/gtkmnemonichash.h b/gtk/gtkmnemonichash.h deleted file mode 100644 index 832b2eee39..0000000000 --- a/gtk/gtkmnemonichash.h +++ /dev/null @@ -1,52 +0,0 @@ -/* gtkmnemonichash.h: Sets of mnemonics with cycling - * - * GTK - The GIMP Toolkit - * Copyright (C) 2002, Red Hat Inc. - * - * 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, see <http://www.gnu.org/licenses/>. - */ - -#ifndef __GTK_MNEMONIC_HASH_H__ -#define __GTK_MNEMONIC_HASH_H__ - -#include <gdk/gdk.h> -#include <gtk/gtkwidget.h> - -G_BEGIN_DECLS - -typedef struct _GtkMnemnonicHash GtkMnemonicHash; - -typedef void (*GtkMnemonicHashForeach) (guint keyval, - GSList *targets, - gpointer data); - -GtkMnemonicHash *_gtk_mnemonic_hash_new (void); -void _gtk_mnemonic_hash_free (GtkMnemonicHash *mnemonic_hash); -void _gtk_mnemonic_hash_add (GtkMnemonicHash *mnemonic_hash, - guint keyval, - GtkWidget *target); -void _gtk_mnemonic_hash_remove (GtkMnemonicHash *mnemonic_hash, - guint keyval, - GtkWidget *target); -gboolean _gtk_mnemonic_hash_activate (GtkMnemonicHash *mnemonic_hash, - guint keyval); -GSList * _gtk_mnemonic_hash_lookup (GtkMnemonicHash *mnemonic_hash, - guint keyval); -void _gtk_mnemonic_hash_foreach (GtkMnemonicHash *mnemonic_hash, - GtkMnemonicHashForeach func, - gpointer func_data); - -G_END_DECLS - -#endif /* __GTK_MNEMONIC_HASH_H__ */ |