mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-12 11:50:21 +00:00
0297f9a015
Mon Aug 23 17:19:19 2004 Jonathan Blandford <jrb@redhat.com> * configure.in: * docs/tools/Makefile.am (clean-local): add the doc shooter to the docs dir as an uninstalled helper tool.
18 lines
259 B
C
18 lines
259 B
C
#ifndef __WIDGETS_H__
|
|
#define __WIDGETS_H__
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
typedef struct WidgetInfo
|
|
{
|
|
GtkWidget *window;
|
|
gchar *name;
|
|
gboolean no_focus;
|
|
gboolean include_decorations;
|
|
} WidgetInfo;
|
|
|
|
GList *get_all_widgets (void);
|
|
|
|
|
|
#endif /* __WIDGETS_H__ */
|