Files
contrib
debian
demos
docs
faq
reference
tools
.cvsignore
Makefile.am
README.shooter
gnome-foot.png
gnome-gmush.png
shadow.c
shadow.h
shooter.c
widgets.c
widgets.h
tutorial
.cvsignore
Makefile.am
README.linux-fb
RELEASE-HOWTO
defsformat.txt
developers.txt
dnd_internals.txt
focus_tracking.txt
generation.txt
gtk-config.txt
gtkdocs_fix
iconcache.txt
make-todo
refcounting.txt
sizing-test.txt
styles.txt
text_widget.txt
text_widget_internals.txt
tree-column-sizing.png
tree-column-sizing.txt
widget_geometry.txt
widget_system.txt
examples
gdk
gdk-pixbuf
gtk
m4macros
modules
perf
po
po-properties
tests
.cvsignore
AUTHORS
COPYING
ChangeLog
ChangeLog.pre-1-0
ChangeLog.pre-1-2
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
HACKING
INSTALL
INSTALL.in
Makefile.am
NEWS
NEWS.pre-1-0
README
README.cvs-commits
README.in
README.win32
acconfig.h
acinclude.m4
autogen.sh
config.h.win32.in
configure.in
gdk-2.0-uninstalled.pc.in
gdk-2.0.pc.in
gdk-pixbuf-2.0-uninstalled.pc.in
gdk-pixbuf-2.0.pc.in
gtk+-2.0-uninstalled.pc.in
gtk+-2.0.pc.in
gtk+.spec.in
gtk-config-2.0.in
gtk-zip.sh.in
makecopyright
makefile.msc
sanitize-la.sh
sanity_check
gtk3/docs/tools/widgets.h
2004-12-07 06:22:19 +00:00

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__ */