linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / QLayout.schelp
bloba37c726c128b19121abe3fdfa2d97bbc1f4dcbc4
1 Class:: QLayout
2 summary:: Superclass of all GUI layouts
3 categories:: GUI>Layout
4 related:: Guides/GUI-Layout-Management
6 description::
7 QLayout is the abstract superclass of all layouts. Any layout can be installed on a view with the view's link::Classes/QView#-layout#'layout':: setter method. See link::Guides/GUI-Layout-Management:: for details of operation common to all layouts.
10 InstanceMethods::
12 Method:: spacing
13 The amount of empty pixels left between the managed views.
15 argument:: spacing
16 An integer representing the spacing in pixels.
19 Method:: margins
20 The amount of empty pixels left between the edges of the parent view and the managed children.
22 argument:: margins
23 An array of four integers defining margins in the following order: left margin, top margin, right margin, bottom margin; or an array of two integers applied to left/right margin and top/bottom margin respectively; or a single integer applied to all margins.
27 Examples::
29 code::
30 w = Window.new;
31 w.layout = QHLayout( QTextView().string_("One"), QTextView().string_("Two") );
32 w.layout.spacing = 20;
33 w.layout.margins = [10, 30, 10, 30];
34 w.front;