Files
gimp/devel-docs/tools/widgets.h
2010-08-11 01:18:19 -04:00

26 lines
336 B
C

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