Explicitly include a boost "windows" folder even on linux
[supercollider.git] / HelpSource / Classes / QLayout.schelp
blob128e075b3b7267875fa1ad87b0712ff96f8cb167
1 Class:: QLayout
2 summary:: Superclass of all GUI layouts
3 categories:: GUI>Kits>Qt
4 related:: Classes/HLayout, Classes/VLayout, Classes/GridLayout, Classes/StackLayout, Guides/GUI-Layout-Management
6 description::
7 Layout is the abstract superclass of all layouts. Any layout can be installed on a view with the view's link::Classes/View#-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 = HLayout( TextView().string_("One"), TextView().string_("Two") );
32 w.layout.spacing = 20;
33 w.layout.margins = [10, 30, 10, 30];
34 w.front;