Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

layout::manager::flow(3pm) [debian man page]

Layout::Manager::Flow(3pm)				User Contributed Perl Documentation				Layout::Manager::Flow(3pm)

NAME
Layout::Manager::Flow - Directional layout manager DESCRIPTION
Layout::Manager::Flow is a layout manager that anchors components in one of the four cardinal directions. When you instantiate a Flow manager, you may supply it with an anchor value which may be one of north, south, east or west. The example below shows how the default anchor value of north works when you add two components. north +--------------------------------+ | component 1 | +--------------------------------+ | component 2 | +--------------------------------+ | | | | | | +--------------------------------+ Components are placed in the order they are added. If two items are added with a 'north' anchor then the first item will be rendered above the second. Components will be expanded to take up all space perpendicular to their anchor. North and south will expand widths while east and west will expand heights. Flow is similar to Java's FlowLayout <http://java.sun.com/docs/books/tutorial/uiswing/layout/flow.html>. It does not, however, center components. This features may be added in the future if they are needed. SYNOPSIS
$cont->add_component($comp1); $cont->add_component($comp2); my $lm = Layout::Manager::Flow->new(anchor => 'north'); $lm->do_layout($cont); ATTRIBUTES
anchor The direction this manager is anchored. Valid values are north, south, east and west. used Returns the amount of space used an arrayref in the form of "[ $width, $height ]". wrap If set to a true value, then component will be 'wrapped' when they do not fit. This currently only works for East and West anchored layouts. METHODS
do_layout Size and position the components in this layout. AUTHOR
Cory Watson, "<gphat@cpan.org>" COPYRIGHT &; LICENSE Copyright 2008 by Cory G Watson This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.3 2011-05-16 Layout::Manager::Flow(3pm)

Check Out this Related Man Page

Gnome2::Canvas::Widget(3pm)				User Contributed Perl Documentation			       Gnome2::Canvas::Widget(3pm)

NAME
Gnome2::Canvas::Widget - Gtk2::Widgets as CanvasItems HIERARCHY
Glib::Object +----Glib::InitiallyUnowned +----Gtk2::Object +----Gnome2::Canvas::Item +----Gnome2::Canvas::Widget PROPERTIES
'anchor' (Gtk2::AnchorType : default "north-west" : readable / writable) 'height' (double : default 0 : readable / writable) 'size-pixels' (boolean : default false : readable / writable) 'widget' (Gtk2::Widget : default undef : readable / writable) 'width' (double : default 0 : readable / writable) 'x' (double : default 0 : readable / writable) 'y' (double : default 0 : readable / writable) ENUMS AND FLAGS
enum Gtk2::AnchorType o 'center' / 'GTK_ANCHOR_CENTER' o 'north' / 'GTK_ANCHOR_NORTH' o 'north-west' / 'GTK_ANCHOR_NORTH_WEST' o 'north-east' / 'GTK_ANCHOR_NORTH_EAST' o 'south' / 'GTK_ANCHOR_SOUTH' o 'south-west' / 'GTK_ANCHOR_SOUTH_WEST' o 'south-east' / 'GTK_ANCHOR_SOUTH_EAST' o 'west' / 'GTK_ANCHOR_WEST' o 'east' / 'GTK_ANCHOR_EAST' o 'n' / 'GTK_ANCHOR_N' o 'nw' / 'GTK_ANCHOR_NW' o 'ne' / 'GTK_ANCHOR_NE' o 's' / 'GTK_ANCHOR_S' o 'sw' / 'GTK_ANCHOR_SW' o 'se' / 'GTK_ANCHOR_SE' o 'w' / 'GTK_ANCHOR_W' o 'e' / 'GTK_ANCHOR_E' SEE ALSO
Gnome2::Canvas, Glib::Object, Glib::InitiallyUnowned, Gtk2::Object, Gnome2::Canvas::Item COPYRIGHT
Copyright (C) 2003-2004 by the Gtk2-Perl Team. This software is licensed under the LGPL; see Gnome2::Canvas for a full notice. perl v5.14.2 2011-11-16 Gnome2::Canvas::Widget(3pm)
Man Page