Update so that toplevel windows accomodate for the titlebar when sizing.

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
This commit is contained in:
Jonathan Blandford
2004-11-16 05:10:18 +00:00
committed by Jonathan Blandford
parent b4c4bc8947
commit f0265b018e
31 changed files with 132 additions and 36 deletions

View File

@ -3,12 +3,21 @@
#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);