forked from AuroraMiddleware/gtk
ab5d3e756b
Add a getter and a setter for the focus widget. The default implementations do nothing.
25 lines
793 B
C
25 lines
793 B
C
#ifndef __GTK_ROOT_PRIVATE_H__
|
|
#define __GTK_ROOT_PRIVATE_H__
|
|
|
|
#include "gtkroot.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
GdkDisplay * gtk_root_get_display (GtkRoot *root);
|
|
GskRenderer * gtk_root_get_renderer (GtkRoot *self);
|
|
|
|
void gtk_root_get_surface_transform (GtkRoot *self,
|
|
int *x,
|
|
int *y);
|
|
enum {
|
|
GTK_ROOT_PROP_FOCUS_WIDGET,
|
|
GTK_ROOT_NUM_PROPERTIES
|
|
} GtkRootProperties;
|
|
|
|
guint gtk_root_install_properties (GObjectClass *object_class,
|
|
guint first_prop);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GTK_ROOT_PRIVATE_H__ */
|