| Top |
Functions
| #define | AGS_EXPANDER_CHILD() |
| AgsExpanderChild * | ags_expander_child_alloc () |
|
|
ags_expander_child_free () |
| AgsExpanderChild * | ags_expander_child_find () |
|
|
ags_expander_add () |
|
|
ags_expander_remove () |
| AgsExpander * | ags_expander_new () |
| #define | AGS_EXPANDER() |
| #define | AGS_EXPANDER_CLASS() |
| #define | AGS_EXPANDER_GET_CLASS() |
| #define | AGS_IS_EXPANDER() |
| #define | AGS_IS_EXPANDER_CLASS() |
|
|
ags_expander_get_type () |
Types and Values
| enum | AgsExpanderFlags |
| struct | AgsExpanderChild |
| #define | AGS_TYPE_EXPANDER |
| struct | AgsExpander |
| struct | AgsExpanderClass |
Object Hierarchy
GObject ╰──GInitiallyUnowned ╰──GtkWidget ╰──GtkContainer ╰──GtkBin ╰──GtkExpander ╰── AgsExpander
Description
AgsExpander is a composite widget containing a
Functions
ags_expander_child_alloc ()
AgsExpanderChild * ags_expander_child_alloc (,guint x,guint y,guint width);guint height
Allocate
Since:
ags_expander_child_free ()
void ags_expander_child_free (AgsExpanderChild *expander_child);
Free expander_child
.
Since:
ags_expander_child_find ()
AgsExpanderChild * ags_expander_child_find (AgsExpander *expander,);GtkWidget *child
Find child
of expander
.
Since:
ags_expander_add ()
void ags_expander_add (AgsExpander *expander,,GtkWidget *widget,guint x,guint y,guint width);guint height
Adds a
Parameters
expander |
the AgsExpander |
|
widget |
the child |
|
x |
x-position |
|
y |
y-position |
|
width |
allocation width |
|
height |
allocation height |
Since:
ags_expander_remove ()
void ags_expander_remove (AgsExpander *expander,);GtkWidget *widget
Removes a
Since:
ags_expander_new ()
AgsExpander * ags_expander_new (,guint width);guint height
Creates an AgsExpander
Since:
AGS_EXPANDER()
#define AGS_EXPANDER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), AGS_TYPE_EXPANDER, AgsExpander))
AGS_EXPANDER_CLASS()
#define AGS_EXPANDER_CLASS(class) (G_TYPE_CHECK_CLASS_CAST((class), AGS_TYPE_EXPANDER, AgsExpanderClass))
AGS_EXPANDER_GET_CLASS()
#define AGS_EXPANDER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), AGS_TYPE_EXPANDER, AgsExpanderClass))
AGS_IS_EXPANDER()
#define AGS_IS_EXPANDER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), AGS_TYPE_EXPANDER))
AGS_IS_EXPANDER_CLASS()
#define AGS_IS_EXPANDER_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE((class), AGS_TYPE_EXPANDER))
Types and Values
struct AgsExpanderChild
struct AgsExpanderChild {
GtkWidget *child;
guint x;
guint y;
guint width;
guint height;
};