Add a gtkbindingsprivate.h header
This commit is contained in:
parent
8bb0d552f1
commit
dcf3430e17
@ -380,6 +380,7 @@ gtk_private_h_sources = \
|
||||
gtkappchooserprivate.h \
|
||||
gtkappchoosermodule.h \
|
||||
gtkappchooseronline.h \
|
||||
gtkbindingsprivate.h \
|
||||
gtkbuilderprivate.h \
|
||||
gtkbuttonprivate.h \
|
||||
gtkcellareaboxcontextprivate.h \
|
||||
|
@ -31,7 +31,7 @@
|
||||
#include <string.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "gtkbindings.h"
|
||||
#include "gtkbindingsprivate.h"
|
||||
#include "gtkkeyhash.h"
|
||||
#include "gtkwidget.h"
|
||||
#include "gtkrc.h"
|
||||
|
@ -40,10 +40,6 @@
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
||||
/* Binding sets
|
||||
*/
|
||||
|
||||
typedef struct _GtkBindingSet GtkBindingSet;
|
||||
typedef struct _GtkBindingEntry GtkBindingEntry;
|
||||
typedef struct _GtkBindingSignal GtkBindingSignal;
|
||||
@ -58,13 +54,12 @@ struct _GtkBindingSet
|
||||
GSList *class_branch_pspecs;
|
||||
GtkBindingEntry *entries;
|
||||
GtkBindingEntry *current;
|
||||
guint parsed : 1; /* From RC content */
|
||||
guint parsed : 1;
|
||||
};
|
||||
|
||||
struct _GtkBindingEntry
|
||||
{
|
||||
/* key portion
|
||||
*/
|
||||
/* key portion */
|
||||
guint keyval;
|
||||
GdkModifierType modifiers;
|
||||
|
||||
@ -95,11 +90,10 @@ struct _GtkBindingSignal
|
||||
GtkBindingArg *args;
|
||||
};
|
||||
|
||||
/* Application-level methods */
|
||||
GtkBindingSet *gtk_binding_set_new (const gchar *set_name);
|
||||
GtkBindingSet *gtk_binding_set_by_class (gpointer object_class);
|
||||
GtkBindingSet *gtk_binding_set_find (const gchar *set_name);
|
||||
|
||||
GtkBindingSet* gtk_binding_set_new (const gchar *set_name);
|
||||
GtkBindingSet* gtk_binding_set_by_class(gpointer object_class);
|
||||
GtkBindingSet* gtk_binding_set_find (const gchar *set_name);
|
||||
gboolean gtk_bindings_activate (GObject *object,
|
||||
guint keyval,
|
||||
GdkModifierType modifiers);
|
||||
@ -125,7 +119,8 @@ void gtk_binding_entry_add_signall (GtkBindingSet *binding_set,
|
||||
const gchar *signal_name,
|
||||
GSList *binding_args);
|
||||
|
||||
GTokenType gtk_binding_entry_add_signal_from_string (GtkBindingSet *binding_set,
|
||||
GTokenType gtk_binding_entry_add_signal_from_string
|
||||
(GtkBindingSet *binding_set,
|
||||
const gchar *signal_desc);
|
||||
|
||||
void gtk_binding_entry_remove (GtkBindingSet *binding_set,
|
||||
@ -137,17 +132,6 @@ void gtk_binding_set_add_path (GtkBindingSet *binding_set,
|
||||
const gchar *path_pattern,
|
||||
GtkPathPriorityType priority);
|
||||
|
||||
|
||||
/* Non-public methods */
|
||||
|
||||
guint _gtk_binding_parse_binding (GScanner *scanner);
|
||||
void _gtk_binding_reset_parsed (void);
|
||||
void _gtk_binding_entry_add_signall (GtkBindingSet *binding_set,
|
||||
guint keyval,
|
||||
GdkModifierType modifiers,
|
||||
const gchar *signal_name,
|
||||
GSList *binding_args);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_BINDINGS_H__ */
|
||||
|
37
gtk/gtkbindingsprivate.h
Normal file
37
gtk/gtkbindingsprivate.h
Normal file
@ -0,0 +1,37 @@
|
||||
/* GTK - The GIMP Toolkit
|
||||
* Copyright (C) 2011 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, write to the
|
||||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GTK_BINDINGS_PRIVATE_H__
|
||||
#define __GTK_BINDINGS_PRIVATE_H__
|
||||
|
||||
#include "gtkbindings.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
guint _gtk_binding_parse_binding (GScanner *scanner);
|
||||
void _gtk_binding_reset_parsed (void);
|
||||
void _gtk_binding_entry_add_signall (GtkBindingSet *binding_set,
|
||||
guint keyval,
|
||||
GdkModifierType modifiers,
|
||||
const gchar *signal_name,
|
||||
GSList *binding_args);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_BINDINGS_PRIVATE_H__ */
|
Loading…
Reference in New Issue
Block a user