MiaouwBox

MiaouwBox — A simple but powerful container

Synopsis




            MiaouwBoxPrivate;
            MiaouwBox;
GtkWidget*  miaouw_box_new_horizontal       ();
GtkWidget*  miaouw_box_new_vertical         ();
void        miaouw_box_add_before           (MiaouwBox *box,
                                             GtkWidget *child,
                                             GtkWidget *existing_child);
void        miaouw_box_add_after            (MiaouwBox *box,
                                             GtkWidget *child,
                                             GtkWidget *existing_child);

Object Hierarchy


  GObject
   +----GInitiallyUnowned
         +----GtkObject
               +----GtkWidget
                     +----GtkContainer
                           +----MiaouwBox

Implemented Interfaces

MiaouwBox implements AtkImplementorIface and GtkBuildable.

Description

The MiaouwBox is similar container than the GtkBox but simpler.

The MiaouwBox is more suitable when childs are added on to the start or to the middle of the container (see miaouw_box_add_before and miaouw_box_add_after).

Details

MiaouwBoxPrivate

typedef struct _MiaouwBoxPrivate MiaouwBoxPrivate;


MiaouwBox

typedef struct _MiaouwBox MiaouwBox;


miaouw_box_new_horizontal ()

GtkWidget*  miaouw_box_new_horizontal       ();

Returns :

miaouw_box_new_vertical ()

GtkWidget*  miaouw_box_new_vertical         ();

Returns :

miaouw_box_add_before ()

void        miaouw_box_add_before           (MiaouwBox *box,
                                             GtkWidget *child,
                                             GtkWidget *existing_child);

box :
child :
existing_child :

miaouw_box_add_after ()

void        miaouw_box_add_after            (MiaouwBox *box,
                                             GtkWidget *child,
                                             GtkWidget *existing_child);

box :
child :
existing_child :

See Also

GtkBox