forked from AuroraMiddleware/gtk
91f7b9663f
Replace leftover gtk-doc syntax (#Type) with backquotes.
40 lines
908 B
C
40 lines
908 B
C
#ifndef __GTK_ROOT_PRIVATE_H__
|
|
#define __GTK_ROOT_PRIVATE_H__
|
|
|
|
#include "gtkroot.h"
|
|
|
|
#include "gtkconstraintsolverprivate.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/**
|
|
* GtkRootIface:
|
|
*
|
|
* The list of functions that must be implemented for the `GtkRoot` interface.
|
|
*/
|
|
struct _GtkRootInterface
|
|
{
|
|
/*< private >*/
|
|
GTypeInterface g_iface;
|
|
|
|
/*< public >*/
|
|
GdkDisplay * (* get_display) (GtkRoot *self);
|
|
|
|
GtkConstraintSolver * (* get_constraint_solver) (GtkRoot *self);
|
|
|
|
GtkWidget * (* get_focus) (GtkRoot *self);
|
|
void (* set_focus) (GtkRoot *self,
|
|
GtkWidget *focus);
|
|
|
|
};
|
|
|
|
GtkConstraintSolver * gtk_root_get_constraint_solver (GtkRoot *self);
|
|
|
|
void gtk_root_start_layout (GtkRoot *self);
|
|
void gtk_root_stop_layout (GtkRoot *self);
|
|
void gtk_root_queue_restyle (GtkRoot *self);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GTK_ROOT_PRIVATE_H__ */
|