new tools to generate screenshots for the widget gallery. added the tools

* devel-docs/tools/*: new tools to generate screenshots for the widget gallery.
* devel-docs/Makefile.am: added the tools subdir.
* configure.in: modified accordingly.
This commit is contained in:
David Odin
2005-04-20 00:41:15 +00:00
parent fe06c3018f
commit 18df82df65
10 changed files with 1224 additions and 1 deletions

View File

@ -0,0 +1,27 @@
#ifndef __WIDGETS_H__
#define __WIDGETS_H__
#include <gtk/gtk.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__ */