blob: 3ef1d61dce9422cb4e22994ae794e84663885e4d [file] [edit]
#ifndef __WIDGETS_H__
#define __WIDGETS_H__
#include <gtk/gtk.h>
typedef enum
{
SMALL,
MEDIUM,
LARGE,
ASIS
} WidgetSize;
typedef struct WidgetInfo
{
GtkWidget *window;
char *name;
gboolean no_focus;
gboolean include_decorations;
gboolean snapshot_popover;
guint wait;
WidgetSize size;
} WidgetInfo;
GList *get_all_widgets (void);
#endif /* __WIDGETS_H__ */