2004-08-23 21:22:55 +00:00
|
|
|
#ifndef __WIDGETS_H__
|
|
|
|
#define __WIDGETS_H__
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2004-11-16 05:10:18 +00:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
SMALL,
|
|
|
|
MEDIUM,
|
2004-12-07 06:22:19 +00:00
|
|
|
LARGE,
|
|
|
|
ASIS
|
2004-11-16 05:10:18 +00:00
|
|
|
} WidgetSize;
|
|
|
|
|
2004-08-23 21:22:55 +00:00
|
|
|
typedef struct WidgetInfo
|
|
|
|
{
|
|
|
|
GtkWidget *window;
|
|
|
|
gchar *name;
|
|
|
|
gboolean no_focus;
|
|
|
|
gboolean include_decorations;
|
2004-11-16 05:10:18 +00:00
|
|
|
WidgetSize size;
|
2004-08-23 21:22:55 +00:00
|
|
|
} WidgetInfo;
|
|
|
|
|
|
|
|
GList *get_all_widgets (void);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __WIDGETS_H__ */
|