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:
27
devel-docs/tools/widgets.h
Normal file
27
devel-docs/tools/widgets.h
Normal 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__ */
|
||||
Reference in New Issue
Block a user