MGtk macros for standard values of Gtk+

MGtk macros for standard values of Gtk+ — macro di comprensione dei valori comuni utilizzati in gtk+.

Stability Level

Unstable, unless otherwise indicated

Synopsis

#include <mgtk.h>

#define             HOMOGENEOUS_ON
#define             HOMOGENEOUS_OFF
#define             SPACING_OFF
#define             EXPAND_ON
#define             EXPAND_OFF
#define             FILL_ON
#define             FILL_OFF
#define             PADDING_OFF

Description

Collezione di macros utilizzate per rendere piu' facilmente comprensibile il codice in Gtk.

Details

HOMOGENEOUS_ON

   #define      HOMOGENEOUS_ON                      TRUE

Whether the children should all be the same size.

Default value: FALSE

see also: GtkBox


HOMOGENEOUS_OFF

   #define      HOMOGENEOUS_OFF                     FALSE

Whether the children should all be the same size.

Default value: FALSE

see also: GtkBox


SPACING_OFF

   #define      SPACING_OFF                         0

The amount of space between children.

Allowed values: >= 0

Default value: 0

see also: GtkBox


EXPAND_ON

   #define      EXPAND_ON                           TRUE

Whether the child should receive extra space when the parent grows.

Default value: TRUE

see also: GtkBox


EXPAND_OFF

   #define      EXPAND_OFF                          FALSE

Whether the child should receive extra space when the parent grows.

Default value: TRUE

see also: GtkBox


FILL_ON

   #define      FILL_ON                             TRUE

Whether extra space given to the child should be allocated to the child or used as padding.

Default value: TRUE

see also: GtkBox


FILL_OFF

   #define      FILL_OFF                            FALSE

Whether extra space given to the child should be allocated to the child or used as padding.

Default value: TRUE

see also: GtkBox


PADDING_OFF

   #define      PADDING_OFF                         0

Extra space to put between the child and its neighbors, in pixels.

Allowed values: <= G_MAXINT

Default value: 0

see also: GtkBox