mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 08:40:08 +00:00
28 lines
344 B
C
28 lines
344 B
C
#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__ */
|