forked from AuroraMiddleware/gtk
f0265b018e
Tue Nov 16 00:08:07 2004 Jonathan Blandford <jrb@redhat.com> * docs/tools/widgets.c: Update so that toplevel windows accomodate for the titlebar when sizing. Also clean up statusbar * docs/reference/gtk/images/*png: update
27 lines
336 B
C
27 lines
336 B
C
#ifndef __WIDGETS_H__
|
|
#define __WIDGETS_H__
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
typedef enum
|
|
{
|
|
SMALL,
|
|
MEDIUM,
|
|
LARGE
|
|
} 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__ */
|