gimp/devel-docs/tools/widgets.h
Michael Natterer dcbd83cafc devel-docs: undeprecate doc-shooter and add a few more widgets
Doesn't use X11 any longer, just plain GTK and cairo.
2019-07-24 19:17:14 +02:00

25 lines
325 B
C

#ifndef __WIDGETS_H__
#define __WIDGETS_H__
typedef enum
{
SMALL,
MEDIUM,
LARGE,
ASIS
} WidgetSize;
typedef struct WidgetInfo
{
GtkWidget *widget;
gchar *name;
gboolean no_focus;
gboolean show_all;
WidgetSize size;
} WidgetInfo;
GList * get_all_widgets (void);
#endif /* __WIDGETS_H__ */