| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
These just do what the default implementations do anyway.
|
|
|
|
|
| |
The box and revealer here should not be exposed as internal
children for subclasses to use in their .ui files.
|
|
|
|
|
|
| |
When using forall(), only list the revealer, which lists the box
containing all the children. When using foreach(), bypass revealer and
box and list all children added to the box.
|
|
|
|
|
| |
We don't need a frame widget here, just render a top border on the
box.
|
|
|
|
| |
This is a nice example of a trivial container conversion.
|
|
|
|
| |
Propagates to GtkActionBar.
|
|
|
|
| |
This lets us avoid hardcoding the type in CSS.
|
|
|
|
|
| |
It wasn't used because CSS walks the widget->parent chain, so it'd only
ever call this func for priv->revealer.
|
| |
|
| |
|
|
|
|
| |
Instead of Return value:
|
|
|
|
|
|
| |
Similar to map/unmap, this needs to follow the actual
widget tree. Without this, several test cases in
the templates test fail.
|
|
|
|
|
|
|
|
|
| |
The recursion in map needs to follow the actual physical
widget tree, otherwise we violate invariants. The generic
container map implementation uses gtk_container_forall to
operate on the children, and thus is not suitable for
containers where the children are inside some internal
container.
|
|
|
|
| |
We need to always iterate over non-internal children.
|
|
|
|
| |
This reverts commit 0ff0fdfefbba86f3dc7713cf55bbf00194274fe3.
|
|
|
|
|
| |
With nested internal children, this interferes with proper
cleanup, and makes the templates test fail.
|
|
|
|
|
| |
GtkBox now supports a centered child, so GtkCenterBox is
no longer needed here.
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=723929
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=723929
|
|
|
|
|
|
| |
This is the same fix that was applied to GtkHeaderBar
recently. Adding a child widget should not make it
visible as a side-effect.
|
|
|
|
|
| |
No need to construct a box that gets thrown away later.
Plus, this fixes the defaultvalue test for GtkActionBar.
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=721665
|
|
A widget intended to offer contextual actions for a given view.
It allows packing children into the start or end as well as offering
a single centered child box.
https://bugzilla.gnome.org/show_bug.cgi?id=721665
|