mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-04 09:53:25 +00:00
25 lines
325 B
C
25 lines
325 B
C
#ifndef __WIDGETS_H__
|
|
#define __WIDGETS_H__
|
|
|
|
|
|
typedef enum
|
|
{
|
|
SMALL,
|
|
MEDIUM,
|
|
LARGE,
|
|
ASIS
|
|
} WidgetSize;
|
|
|
|
typedef struct WidgetInfo
|
|
{
|
|
GtkWidget *widget;
|
|
gchar *name;
|
|
gboolean no_focus;
|
|
gboolean show_all;
|
|
WidgetSize size;
|
|
} WidgetInfo;
|
|
|
|
GList * get_all_widgets (void);
|
|
|
|
|
|
#endif /* __WIDGETS_H__ */
|