GtkHBox

GtkHBox — A horizontal container box

Functions

Types and Values

struct GtkHBox

Object Hierarchy

    GObject
    ╰── GInitiallyUnowned
        ╰── GtkWidget
            ╰── GtkContainer
                ╰── GtkBox
                    ╰── GtkHBox

Implemented Interfaces

GtkHBox implements AtkImplementorIface, GtkBuildable and GtkOrientable.

Includes

#include <gtk/gtk.h>

Description

GtkHBox is a container that organizes child widgets into a single row.

Use the GtkBox packing interface to determine the arrangement, spacing, width, and alignment of GtkHBox children.

All children are allocated the same height.

GtkHBox has been deprecated. You can use GtkBox instead, which is a very quick and easy change. If you have derived your own classes from GtkHBox, you can simply change the inheritance to derive directly from GtkBox. No further changes are needed, since the default value of the “orientation” property is GTK_ORIENTATION_HORIZONTAL.

If you have a grid-like layout composed of nested boxes, and you don’t need first-child or last-child styling, the recommendation is to switch to GtkGrid. For more information about migrating to GtkGrid, see Migrating from other containers to GtkGrid.

Functions

gtk_hbox_new ()

GtkWidget *
gtk_hbox_new (gboolean homogeneous,
              gint spacing);

gtk_hbox_new has been deprecated since version 3.2 and should not be used in newly-written code.

You should use gtk_box_new() with a GTK_ORIENTATION_HORIZONTAL “orientation” instead

Creates a new GtkHBox.

Parameters

homogeneous

TRUE if all children are to be given equal space allotments.

 

spacing

the number of pixels to place by default between children.

 

Returns

a new GtkHBox.

Types and Values

struct GtkHBox

struct GtkHBox;

See Also

GtkVBox