deprecate SCViewHolder-layRight
[supercollider.git] / SCClassLibrary / Common / GUI / osx / scide_scapp / flowViewSupportCocoa.sc
blob0c733174400827e9f60e837c7795530a891eae79
3 + SCWindow {
5         asFlowView { arg bounds;
6                 ^FlowView(this,bounds)
7         }
8         asPageLayout { arg title,bounds;
9                 ^PageLayout.on(this,bounds)
10         }
13 + SCCompositeView {
15         asFlowView { arg bounds;
16                 ^FlowView(this,bounds ?? {this.bounds})
17         }
20 + SCLayoutView {
22         asFlowView { |bounds|
23                 ^FlowView(this,bounds ?? {this.bounds})
24         }
27 + SCContainerView {
29         asPageLayout { arg title,bounds;
30                 ^FlowView(this,bounds ?? {this.bounds})
31         }