Warning: Alignment is deprecated since 3.14.
The Alignment widget controls the alignment and size of its child widget.
It has four settings: xscale, yscale, xalign, and yalign.
The scale settings are used to specify how much the child widget should expand to fill the space allocated to the Alignment. The values can range from 0 (meaning the child doesn’t expand at all) to 1 (meaning the child expands to fill all of the available space).
The align settings are used to place the child widget within the available area. The values range from 0 (top or left) to 1 (bottom or right). Of course, if the scale settings are both set to 1, the alignment settings have no effect.
GtkAlignment has been deprecated in 3.14 and should not be used in newly-written code. The desired effect can be achieved by using the halign, valign and margin properties on the child widget.
Example: Alignment:
public class Application : Gtk.Window {
public Application () {
// Prepare Gtk.Window:
this.title = "My Gtk.Alignment";
this.window_position = Gtk.WindowPosition.CENTER;
this.destroy.connect (Gtk.main_quit);
this.set_default_size (350, 70);
// Alignment:
Gtk.Alignment alignment = new Gtk.Alignment (0.50f, 0.25f, 1.0f, 0.5f);
alignment.right_padding = 20;
alignment.left_padding = 10;
this.add (alignment);
// Alignment content:
Gtk.Button button = new Gtk.Button.with_label ("Frame content");
alignment.add (button);
}
public static int main (string[] args) {
Gtk.init (ref args);
Application app = new Application ();
app.show_all ();
Gtk.main ();
return 0;
}
}
valac --pkg gtk+-3.0 Gtk.Alignment.vala