diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-10-19 22:51:21 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-10-19 22:51:21 -0400 |
commit | e3ef5d6fd2df64614ca9e4ce7183bcfb48e4e0eb (patch) | |
tree | 99c9df7f6f901eb4d9eedf975f19881241c039a0 /gtk/gtktooltipprivate.h | |
parent | 3f5d4623051e8c499730880ab6c80d120aec9f44 (diff) | |
download | gtk+-e3ef5d6fd2df64614ca9e4ce7183bcfb48e4e0eb.tar.gz |
GtkTooltip: Move nonexported API to a private header
This is our standard practice nowadays.
Diffstat (limited to 'gtk/gtktooltipprivate.h')
-rw-r--r-- | gtk/gtktooltipprivate.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/gtk/gtktooltipprivate.h b/gtk/gtktooltipprivate.h new file mode 100644 index 0000000000..427015e007 --- /dev/null +++ b/gtk/gtktooltipprivate.h @@ -0,0 +1,49 @@ +/* GTK - The GIMP Toolkit + * Copyright (C) 2014 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/>. + */ + +/* + * 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/. + */ + +#ifndef __GTK_TOOLTIP_PRIVATE_H__ +#define __GTK_TOOLTIP_PRIVATE_H__ + + +#include <gtk/gtktooltip.h> + + +G_BEGIN_DECLS + +void _gtk_tooltip_focus_in (GtkWidget *widget); +void _gtk_tooltip_focus_out (GtkWidget *widget); +void _gtk_tooltip_toggle_keyboard_mode (GtkWidget *widget); +void _gtk_tooltip_handle_event (GdkEvent *event); +void _gtk_tooltip_hide (GtkWidget *widget); + +GtkWidget * _gtk_widget_find_at_coords (GdkWindow *window, + gint window_x, + gint window_y, + gint *widget_x, + gint *widget_y); + +G_END_DECLS + + +#endif /* __GTK_TOOLTIP_PRIVATE_H__ */ |