forked from AuroraMiddleware/gtk
91f7b9663f
Replace leftover gtk-doc syntax (#Type) with backquotes.
36 lines
937 B
C
36 lines
937 B
C
#ifndef __GTK_NATIVE_PRIVATE_H__
|
|
#define __GTK_NATIVE_PRIVATE_H__
|
|
|
|
#include "gtknative.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/**
|
|
* GtkNativeIface:
|
|
*
|
|
* The list of functions that must be implemented for the `GtkNative` interface.
|
|
*/
|
|
struct _GtkNativeInterface
|
|
{
|
|
/*< private >*/
|
|
GTypeInterface g_iface;
|
|
|
|
/*< public >*/
|
|
GdkSurface * (* get_surface) (GtkNative *self);
|
|
GskRenderer * (* get_renderer) (GtkNative *self);
|
|
|
|
void (* get_surface_transform) (GtkNative *self,
|
|
double *x,
|
|
double *y);
|
|
|
|
void (* layout) (GtkNative *self,
|
|
int width,
|
|
int height);
|
|
};
|
|
|
|
void gtk_native_queue_relayout (GtkNative *native);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GTK_NATIVE_PRIVATE_H__ */
|