gimp/devel-docs/tools/widgets.h
Sven Neumann 2147e5029c tools/Makefile.am tools/shooter.c some minor cleanups, removed unused
2005-04-20  Sven Neumann  <sven@gimp.org>

	* tools/Makefile.am
	* tools/shooter.c
	* tools/widgets.[ch]: some minor cleanups, removed unused includes,
	made code multihead-safe.
2005-04-20 09:08:53 +00: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__ */