HorizontalPanelView.st
author Claus Gittinger <cg@exept.de>
Thu, 09 Nov 2017 20:09:30 +0100
changeset 6225 0122e4e6c587
parent 6138 094c0d355f5f
child 6276 c5bd5d4f7243
permissions -rw-r--r--
#FEATURE by cg class: GenericToolbarIconLibrary class added: #hideFilter16x16Icon
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     1
"
5
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
59
450ce95a72a4 *** empty log message ***
claus
parents: 38
diff changeset
     3
	      All Rights Reserved
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     4
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    11
"
2305
f2850e54b0ab only access originChanged, extentChanged and cornerChanged
Claus Gittinger <cg@exept.de>
parents: 2099
diff changeset
    12
"{ Package: 'stx:libwidg' }"
f2850e54b0ab only access originChanged, extentChanged and cornerChanged
Claus Gittinger <cg@exept.de>
parents: 2099
diff changeset
    13
5424
Claus Gittinger <cg@exept.de>
parents: 5227
diff changeset
    14
"{ NameSpace: Smalltalk }"
Claus Gittinger <cg@exept.de>
parents: 5227
diff changeset
    15
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    16
PanelView subclass:#HorizontalPanelView
2039
ad9313ab0151 added support for component reversal if OK-atLeft
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
    17
	instanceVariableNames:'reverseOrderIfOKAtLeft'
340
f820bcd29a51 defaultExtent with rightSpace forgot about spacing
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    18
	classVariableNames:''
f820bcd29a51 defaultExtent with rightSpace forgot about spacing
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    19
	poolDictionaries:''
f820bcd29a51 defaultExtent with rightSpace forgot about spacing
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    20
	category:'Views-Layout'
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    21
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    22
980
6079922a5519 eliminated references to subViews instance variable (will vanish)
Claus Gittinger <cg@exept.de>
parents: 797
diff changeset
    23
!HorizontalPanelView class methodsFor:'documentation'!
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    24
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    25
copyright
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    26
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    27
 COPYRIGHT (c) 1989 by Claus Gittinger
59
450ce95a72a4 *** empty log message ***
claus
parents: 38
diff changeset
    28
	      All Rights Reserved
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    29
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    30
 This software is furnished under a license and may be used
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    31
 only in accordance with the terms of that license and with the
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    33
 be provided or otherwise made available to, or used by, any
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    34
 other person.  No title to or ownership of the software is
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    35
 hereby transferred.
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    36
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    37
!
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    39
documentation
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    40
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    41
    a View which arranges its child-views in a horizontal row.
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    42
    All real work is done in PanelView - only the layout computation is
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    43
    redefined here.
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    44
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
    45
    The layout is controlled the instance variables: 
1418
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    46
	horizontalLayout and verticalLayout
127
claus
parents: 125
diff changeset
    47
    in addition to 
1418
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    48
	horizontalSpace and verticalSpace.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
    49
133
claus
parents: 131
diff changeset
    50
    HorizontalSpace and verticalSpace control the spacing between elements;
claus
parents: 131
diff changeset
    51
    they default to some 1mm.
claus
parents: 131
diff changeset
    52
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
    53
    The horizontal layout can be any of:
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
    54
1418
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    55
	#left           arrange elements at left
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    56
	#leftSpace      arrange elements at the left, start with spacing
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    57
	#fixLeft        same as #left, but do not reduce spacing in case of no fit
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    58
	#fixLeftSpace   same as #leftSpace, but do not reduce spacing in case of no fit
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    59
	#right          arrange elements at the right
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    60
	#rightSpace     arrange elements at the right, start with spacing
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    61
	#center         arrange elements in the center
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    62
	#spread         spread elements evenly
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    63
	#spreadSpace    spread elements evenly with spacing at the ends
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    64
	#fit            like #spread, but resize elements for tight packing
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    65
	#fitSpace       like #fit, with additional spacing at the far ends
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    66
	#leftFit        like #left, but extend the last (rightMost) element to the right
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    67
	#leftSpaceFit   like #leftSpace, but extend the last (rightMost) element to the right
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    68
	#rightFit       like #right, but extend the first (leftMost) element to the left
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    69
	#rightSpaceFit  like #rightSpace, but extend the first (leftMost) element to the left
133
claus
parents: 131
diff changeset
    70
1418
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    71
	#leftMax        like corresponding non-Max layouts,
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    72
	#leftSpaceMax   but resize all components to width of widest components
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    73
	#rightMax
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    74
	#rightSpaceMax
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    75
	#centerMax
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    76
	#spreadMax
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    77
	#spreadSpaceMax
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
    78
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
    79
    the vertical layout can be:
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
    80
1418
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    81
	#top            place element at the top
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    82
	#topSpace       place element at the top, offset by verticalSpace
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    83
	#center         place it horizontally centered
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    84
	#bottom         place it at the bottom
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    85
	#bottomSpace    place it at the bottom, offset by verticalSpace
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    86
	#fit            resize elements vertically to fit this panel
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    87
	#fitSpace       like #fit, but with spacing
133
claus
parents: 131
diff changeset
    88
1418
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    89
	#topMax         like #top, but resize all views vertically to max height
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    90
	#topSpaceMax    like #topSpace, but resize all views vertically to max height
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    91
	#bottomMax      like #bottom, but resize all views vertically to max height
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    92
	#bottomSpaceMax like #bottomSpace, but resize all views vertically to max height
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
    93
	#centerMax      like #center, but resize all views vertically to max height
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
    94
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
    95
    The defaults is #center for both directions.
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
    96
    The layout is changed by the messages #verticalLayout: and #horizontalLayout:.
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
    97
    For backward compatibility (to times, where only hLayout existed), the simple
133
claus
parents: 131
diff changeset
    98
    #layout: does the same as #horizontalLayout:. 
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
    99
    Do not use this old method; it will vanish and currently outputs a warning.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   100
127
claus
parents: 125
diff changeset
   101
    The panel assumes, that the elements do not resize themselfes, after it
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   102
    became visible. This is not true for all widgets (buttons, labels or
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   103
    inputFields may like to change). 
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   104
    If you have changing elements, tell this to the panel
127
claus
parents: 125
diff changeset
   105
    with 'aPanel elementsChangeSize:true'. In that case, the panel will react
133
claus
parents: 131
diff changeset
   106
    to size changes of its elements, and reorganize things.
127
claus
parents: 125
diff changeset
   107
118
claus
parents: 77
diff changeset
   108
    By combining Horizontal- and VerticalPanels (i.e. place a hPanel into a
claus
parents: 77
diff changeset
   109
    vPanel), most layouts should be implementable.
133
claus
parents: 131
diff changeset
   110
    However, iff none of these layout/space combinations is exactly what you need 
118
claus
parents: 77
diff changeset
   111
    in your application, create a subclass, and redefine the setChildPositions 
claus
parents: 77
diff changeset
   112
    method there.
125
claus
parents: 118
diff changeset
   113
claus
parents: 118
diff changeset
   114
    TODO: for completeness, support #fixRight, #fixRightSpace,
1418
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
   115
	  #rightFit, #rightSpaceFit layouts
127
claus
parents: 125
diff changeset
   116
claus
parents: 125
diff changeset
   117
    CAVEAT: this class started with #left and no vertical alignments;
133
claus
parents: 131
diff changeset
   118
    as time went by, more layouts were added (by users requests)
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   119
    and now, many layout combinations are possible.
133
claus
parents: 131
diff changeset
   120
    Reflecting this, the setup should be changed to use different selectors 
claus
parents: 131
diff changeset
   121
    for space-on/off, max-resize and alignment
127
claus
parents: 125
diff changeset
   122
    (i.e. having more and more layout symbols makes things a bit confusing ...)
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 379
diff changeset
   123
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 379
diff changeset
   124
    [see also:]
1418
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
   125
	VerticalPanelView
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
   126
	VariableVerticalPanel VariableHorizontalPanel
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
   127
	Label
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 379
diff changeset
   128
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 379
diff changeset
   129
    [author:]
1418
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
   130
	Claus Gittinger
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 379
diff changeset
   131
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 379
diff changeset
   132
    [author:]
1418
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
   133
	Claus Gittinger
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   134
"
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   135
!
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   136
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   137
examples
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   138
"
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   139
    These examples show the effect of various horizontalLayout and
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   140
    verticalLayout settings. Try them all. Especially, notice the
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   141
    differences between the xxx and xxxSpace layouts and the effect of
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   142
    setting different values for the spacing.
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   143
    Try resizing the view and see how the elements get rearranged.
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   144
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   145
    Most of the examples below place 3 buttons onto a panel; 
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   146
    Of course, you can put any other view into a panel ... the last examples show this.
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   147
    (The fit layouts are especially useful to be used with SelectionInListViews;
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   148
     you can combine multiple labels & editFields with a selectionInListView, which
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   149
     is expanded to fill the remaining area of the view)
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   150
127
claus
parents: 125
diff changeset
   151
    example: default layout (center)
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   152
        centers components
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   153
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   154
        |v p b1 b2 b3|
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   155
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   156
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   157
        v label:'default: center'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   158
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   159
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   160
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   161
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   162
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   163
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   164
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   165
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   166
                                                                        [exEnd]
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   167
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   168
133
claus
parents: 131
diff changeset
   169
    example: same (default center layout) with different sized elements
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   170
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   171
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   172
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   173
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   174
        v label:'default: center'.
133
claus
parents: 131
diff changeset
   175
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   176
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   177
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   178
        b1 := Button label:'but1' in:p. b1 font:(b1 font size:8).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   179
        b2 := Button label:'b2' in:p.      b2 font:(b1 font size:24).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   180
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   181
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   182
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   183
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   184
claus
parents: 131
diff changeset
   185
claus
parents: 131
diff changeset
   186
    example: horizontal default (center); vertical centerMax
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   187
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   188
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   189
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   190
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   191
        v label:'vL=centerMax'.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   192
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   193
        p verticalLayout:#centerMax.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   194
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   195
        b1 := Button label:'but1' in:p. b1 font:(b1 font size:8).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   196
        b2 := Button label:'b2' in:p.      b2 font:(b1 font size:24).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   197
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   198
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   199
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   200
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   201
claus
parents: 131
diff changeset
   202
claus
parents: 131
diff changeset
   203
    example: horizontal default (center); vertical topMax
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   204
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   205
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   206
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   207
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   208
        v label:'vL=topMax'.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   209
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   210
        p verticalLayout:#topMax.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   211
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   212
        b1 := Button label:'but1' in:p. b1 font:(b1 font size:8).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   213
        b2 := Button label:'b2' in:p.      b2 font:(b1 font size:24).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   214
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   215
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   216
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   217
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   218
claus
parents: 131
diff changeset
   219
claus
parents: 131
diff changeset
   220
    example: horizontal default (center); vertical topSpaceMax
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   221
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   222
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   223
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   224
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   225
        v label:'vL=topSpaceMax'.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   226
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   227
        p verticalLayout:#topSpaceMax.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   228
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   229
        b1 := Button label:'but1' in:p. b1 font:(b1 font size:8).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   230
        b2 := Button label:'b2' in:p.      b2 font:(b1 font size:24).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   231
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   232
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   233
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   234
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   235
claus
parents: 131
diff changeset
   236
claus
parents: 131
diff changeset
   237
    example: horizontal default (center); vertical bottomMax
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   238
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   239
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   240
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   241
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   242
        v label:'vL=bottomMax'.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   243
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   244
        p verticalLayout:#bottomMax.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   245
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   246
        b1 := Button label:'but1' in:p. b1 font:(b1 font size:8).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   247
        b2 := Button label:'b2' in:p.      b2 font:(b1 font size:24).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   248
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   249
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   250
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   251
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   252
claus
parents: 131
diff changeset
   253
claus
parents: 131
diff changeset
   254
    example: horizontal default (center); vertical bottomSpaceMax
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   255
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   256
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   257
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   258
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   259
        v label:'vL=bottomSpaceMax'.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   260
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   261
        p verticalLayout:#bottomSpaceMax.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   262
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   263
        b1 := Button label:'but1' in:p. b1 font:(b1 font size:8).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   264
        b2 := Button label:'b2' in:p.      b2 font:(b1 font size:24).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   265
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   266
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   267
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   268
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   269
claus
parents: 131
diff changeset
   270
127
claus
parents: 125
diff changeset
   271
    example: left-layout (vertical is default -> center)
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   272
        fills left-to-right; no spacing before leftMost component
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   273
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   274
        |v p b1 b2 b3|
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   275
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   276
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   277
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   278
        v label:'hL=left; vL=default (center)'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   279
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   280
        p horizontalLayout:#left.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   281
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   282
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   283
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   284
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   285
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   286
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   287
                                                                        [exEnd]
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   288
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   289
127
claus
parents: 125
diff changeset
   290
    example: left starting with spacing (vertical is default -> center)
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   291
        fills left-to-right; spacing before leftMost component
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   292
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   293
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   294
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   295
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   296
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   297
        v label:'hL=leftSpace; vL=center'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   298
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   299
        p horizontalLayout:#leftSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   300
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   301
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   302
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   303
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   304
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   305
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   306
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   307
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   308
127
claus
parents: 125
diff changeset
   309
    example: leftFit-layout (vertical is default -> center)
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   310
        fills left-to-right; resizes the rightMost component to fit
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   311
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   312
        |v p b1 b2 b3|
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   313
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   314
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   315
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   316
        v label:'hL=leftFit; vL=center'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   317
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   318
        p horizontalLayout:#leftFit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   319
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   320
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   321
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   322
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   323
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   324
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   325
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   326
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   327
127
claus
parents: 125
diff changeset
   328
    example: leftSpaceFit-layout (vertical is default -> center)
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   329
        fills left-to-right; 
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   330
        starts with spacing & resizes the rightMost component to fit with spacing
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   331
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   332
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   333
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   334
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   335
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   336
        v label:'hL=leftSpaceFit; vL=center'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   337
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   338
        p horizontalLayout:#leftSpaceFit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   339
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   340
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   341
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   342
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   343
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   344
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   345
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   346
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   347
127
claus
parents: 125
diff changeset
   348
    example: right-layout (vertical is default -> center)
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   349
        right-to-left
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   350
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   351
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   352
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   353
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   354
        v viewBackground:Color yellow.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   355
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   356
        p viewBackground:Color red.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   357
        v label:'hL=right; vL=center'.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   358
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   359
        p horizontalLayout:#rightSpaceFit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   360
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   361
        b1 := View in:p. b1 viewBackground:(Color green).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   362
        b2 := View in:p. b2 viewBackground:(Color gray). 
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   363
        b3 := View in:p. b3 viewBackground:(Color white). 
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   364
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   365
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   366
                                                                        [exEnd]
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   367
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   368
127
claus
parents: 125
diff changeset
   369
    example: right with initial spacing (vertical is default -> center)
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   370
        right-to-left with spacing after last component
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   371
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   372
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   373
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   374
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   375
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   376
        v label:'hL=rightSpace; vL=center'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   377
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   378
        p horizontalLayout:#rightSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   379
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   380
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   381
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   382
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   383
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   384
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   385
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   386
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   387
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   388
    example: rightFit-layout (vertical is default -> center)
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   389
        right-to-left; resize the leftMost component to fit
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   390
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   391
        |v p b1 b2 b3|
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   392
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   393
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   394
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   395
        v label:'hL=rightFit; vL=center'.
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   396
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   397
        p horizontalLayout:#rightFit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   398
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   399
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   400
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   401
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   402
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   403
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   404
                                                                        [exEnd]
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   405
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   406
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   407
    example: rightSpaceFit with initial spacing (vertical is default -> center)
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   408
        right-to-left; start with spacing & resize the leftMost to fit
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   409
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   410
        |v p b1 b2 b3|
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   411
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   412
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   413
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   414
        v label:'hL=rightSpaceFit; vL=center'.
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   415
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   416
        p horizontalLayout:#rightSpaceFit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   417
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   418
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   419
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   420
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   421
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   422
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   423
                                                                        [exEnd]
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   424
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   425
127
claus
parents: 125
diff changeset
   426
    example: fit-layout (vertical is default -> center)
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   427
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   428
        |v p b1 b2 b3|
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   429
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   430
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   431
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   432
        p horizontalLayout:#fit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   433
        v label:'hL=fit; vL=center'.
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   434
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   435
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   436
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   437
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   438
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   439
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   440
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   441
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   442
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   443
127
claus
parents: 125
diff changeset
   444
    example: full fit i.e. no spacing (vertical is default -> center)
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   445
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   446
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   447
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   448
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   449
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   450
        p horizontalLayout:#fit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   451
        p horizontalSpace:0.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   452
        v label:'hL=fit hS=0; vL=center'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   453
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   454
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   455
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   456
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   457
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   458
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   459
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   460
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   461
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   462
127
claus
parents: 125
diff changeset
   463
    example: fit with spacing (vertical is default -> center)
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   464
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   465
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   466
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   467
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   468
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   469
        v label:'hL=fitSpace; vL=center'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   470
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   471
        p horizontalLayout:#fitSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   472
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   473
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   474
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   475
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   476
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   477
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   478
                                                                        [exEnd]
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   479
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   480
127
claus
parents: 125
diff changeset
   481
    example: spread-layout (vertical is default -> center)
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   482
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   483
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   484
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   485
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   486
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   487
        p horizontalLayout:#spread.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   488
        v label:'hL=spread; vL=center'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   489
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   490
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   491
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   492
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   493
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   494
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   495
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   496
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   497
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   498
127
claus
parents: 125
diff changeset
   499
    example: spread with spacing (vertical is default -> center)
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   500
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   501
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   502
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   503
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   504
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   505
        v label:'hL=spreadSpace; vL=center'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   506
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   507
        p horizontalLayout:#spreadSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   508
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   509
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   510
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   511
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   512
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   513
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   514
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   515
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   516
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   517
    example: spread with spacing; vertical fit
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   518
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   519
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   520
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   521
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   522
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   523
        v label:'hL=spreadSpace; vL=fit'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   524
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   525
        p horizontalLayout:#spreadSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   526
        p verticalLayout:#fit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   527
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   528
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   529
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   530
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   531
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   532
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   533
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   534
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   535
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   536
    example: spread with spacing; vertical fit with spacing
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   537
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   538
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   539
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   540
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   541
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   542
        v label:'hL=spreadSpace; vL=fitSpace'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   543
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   544
        p horizontalLayout:#spreadSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   545
        p verticalLayout:#fitSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   546
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   547
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   548
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   549
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   550
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   551
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   552
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   553
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   554
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   555
    example: fit - top
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   556
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   557
        |v p b1 b2 b3|
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   558
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   559
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   560
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   561
        v label:'hL=fit; vL=top'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   562
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   563
        p horizontalLayout:#fit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   564
        p verticalLayout:#top.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   565
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   566
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   567
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   568
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   569
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   570
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   571
                                                                        [exEnd]
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   572
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   573
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   574
    example: fit with initial spacing
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   575
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   576
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   577
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   578
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   579
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   580
        v label:'hL=fitSpace; vL=top'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   581
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   582
        p horizontalLayout:#fitSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   583
        p verticalLayout:#top.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   584
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   585
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   586
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   587
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   588
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   589
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   590
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   591
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   592
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   593
    example: fit with initial spacing in both directions
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   594
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   595
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   596
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   597
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   598
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   599
        v label:'hL=fitSpace; vL=fitSpace'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   600
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   601
        p horizontalLayout:#fitSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   602
        p verticalLayout:#fitSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   603
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   604
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   605
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   606
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   607
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   608
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   609
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   610
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   611
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   612
    example: fit without spacing in both directions
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   613
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   614
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   615
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   616
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   617
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   618
        v label:'hL=fit hS=0; vL=fit'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   619
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   620
        p horizontalLayout:#fit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   621
        p verticalLayout:#fit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   622
        p horizontalSpace:0.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   623
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   624
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   625
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   626
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   627
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   628
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   629
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   630
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   631
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   632
    example: fit with initial spacing; top with spacing
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   633
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   634
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   635
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   636
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   637
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   638
        v label:'hL=fitSpace; vL=topSpace'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   639
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   640
        p horizontalLayout:#fitSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   641
        p verticalLayout:#topSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   642
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   643
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   644
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   645
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   646
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   647
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   648
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   649
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   650
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   651
    example: fit - top without spacing
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   652
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   653
        |v p b1 b2 b3|
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   654
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   655
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   656
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   657
        v label:'hL=fit; vL=top'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   658
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   659
        p horizontalLayout:#fit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   660
        p verticalLayout:#top.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   661
        p horizontalSpace:0.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   662
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   663
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   664
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   665
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   666
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   667
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   668
                                                                        [exEnd]
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   669
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   670
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   671
    example: fit - bottom with spacing and bottomSpace
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   672
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   673
        |v p b1 b2 b3|
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   674
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   675
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   676
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   677
        v label:'hL=fitSpace; vL=bottomSpace'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   678
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   679
        p horizontalLayout:#fitSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   680
        p verticalLayout:#bottomSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   681
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   682
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   683
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   684
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   685
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   686
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   687
                                                                        [exEnd]
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   688
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   689
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   690
    example: fit no horizontal space - bottom with spacing and bottomSpace
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   691
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   692
        |v p b1 b2 b3|
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
   693
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   694
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   695
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   696
        v label:'hL=fit; vL=bottomSpace'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   697
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   698
        p horizontalLayout:#fit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   699
        p verticalLayout:#bottomSpace.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   700
        p horizontalSpace:0.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   701
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   702
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   703
        b2 := Button label:'button2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   704
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   705
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   706
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   707
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   708
133
claus
parents: 131
diff changeset
   709
    example: leftMax - vertical default
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   710
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   711
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   712
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   713
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   714
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   715
        v label:'hL=leftMax; vL=default'.
133
claus
parents: 131
diff changeset
   716
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   717
        p horizontalLayout:#leftMax.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   718
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   719
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   720
        b2 := Button label:'b2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   721
        b3 := Button label:'but3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   722
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   723
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   724
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   725
claus
parents: 131
diff changeset
   726
claus
parents: 131
diff changeset
   727
    example: leftSpaceMax - vertical default
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   728
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   729
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   730
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   731
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   732
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   733
        v label:'hL=leftSpaceMax; vL=default'.
133
claus
parents: 131
diff changeset
   734
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   735
        p horizontalLayout:#leftSpaceMax.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   736
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   737
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   738
        b2 := Button label:'b2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   739
        b3 := Button label:'but3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   740
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   741
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   742
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   743
claus
parents: 131
diff changeset
   744
claus
parents: 131
diff changeset
   745
    example: rightMax - vertical default
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   746
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   747
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   748
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   749
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   750
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   751
        v label:'hL=rightMax; vL=default'.
133
claus
parents: 131
diff changeset
   752
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   753
        p horizontalLayout:#rightMax.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   754
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   755
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   756
        b2 := Button label:'b2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   757
        b3 := Button label:'but3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   758
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   759
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   760
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   761
claus
parents: 131
diff changeset
   762
claus
parents: 131
diff changeset
   763
    example: rightSpaceMax - vertical default
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   764
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   765
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   766
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   767
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   768
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   769
        v label:'hL=rightSpaceMax; vL=default'.
133
claus
parents: 131
diff changeset
   770
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   771
        p horizontalLayout:#rightSpaceMax.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   772
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   773
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   774
        b2 := Button label:'b2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   775
        b3 := Button label:'but3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   776
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   777
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   778
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   779
claus
parents: 131
diff changeset
   780
claus
parents: 131
diff changeset
   781
    example: centerMax - vertical default
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   782
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   783
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   784
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   785
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   786
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   787
        v label:'hL=centerMax; vL=default'.
133
claus
parents: 131
diff changeset
   788
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   789
        p horizontalLayout:#centerMax.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   790
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   791
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   792
        b2 := Button label:'b2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   793
        b3 := Button label:'but3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   794
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   795
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   796
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   797
claus
parents: 131
diff changeset
   798
claus
parents: 131
diff changeset
   799
    example: spreadMax - vertical default
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   800
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   801
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   802
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   803
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   804
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   805
        v label:'hL=spreadMax; vL=default'.
133
claus
parents: 131
diff changeset
   806
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   807
        p horizontalLayout:#spreadMax.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   808
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   809
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   810
        b2 := Button label:'b2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   811
        b3 := Button label:'but3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   812
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   813
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   814
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   815
claus
parents: 131
diff changeset
   816
claus
parents: 131
diff changeset
   817
    example: spreadSpaceMax - vertical default
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   818
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   819
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   820
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   821
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   822
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   823
        v label:'hL=spreadSpaceMax; vL=default'.
133
claus
parents: 131
diff changeset
   824
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   825
        p horizontalLayout:#spreadSpaceMax.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   826
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   827
        b1 := Button label:'button1' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   828
        b2 := Button label:'b2' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   829
        b3 := Button label:'but3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   830
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   831
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   832
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   833
claus
parents: 131
diff changeset
   834
claus
parents: 131
diff changeset
   835
    example: maximize elements in both directions and center
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   836
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   837
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   838
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   839
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   840
        v label:'hL=centerMax; vL=centerMax'.
133
claus
parents: 131
diff changeset
   841
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   842
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   843
        p horizontalLayout:#centerMax.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   844
        p verticalLayout:#centerMax.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   845
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   846
        b1 := Button label:'but1' in:p. b1 font:(b1 font size:8).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   847
        b2 := Button label:'b2' in:p.      b2 font:(b1 font size:24).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   848
        b3 := Button label:'button3' in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   849
        v extent:300 @ 100.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   850
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   851
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   852
claus
parents: 131
diff changeset
   853
118
claus
parents: 77
diff changeset
   854
    example: placing hPanels into a vPanel
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   855
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   856
        |v vP hP1 hP2 hP3 b1 b2 b3 b4 b5 b6 b7 b8 b9|
118
claus
parents: 77
diff changeset
   857
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   858
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   859
        vP := VerticalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   860
        vP origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   861
        vP verticalLayout:#fit;
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   862
           verticalSpace:0;
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   863
           horizontalLayout:#fit.
118
claus
parents: 77
diff changeset
   864
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   865
        hP1 := HorizontalPanelView in:vP.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   866
        hP1 horizontalLayout:#fitSpace;
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   867
            verticalLayout:#center.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   868
        b1 := Button label:'button1' in:hP1.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   869
        b2 := Button label:'button2' in:hP1.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   870
        b3 := Button label:'button3' in:hP1.
118
claus
parents: 77
diff changeset
   871
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   872
        hP2 := HorizontalPanelView in:vP.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   873
        hP2 horizontalLayout:#fitSpace;
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   874
            verticalLayout:#center.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   875
        b4 := Button label:'button4' in:hP2.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   876
        b5 := Button label:'button5' in:hP2.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   877
        b6 := Button label:'button6' in:hP2.
118
claus
parents: 77
diff changeset
   878
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   879
        hP3 := HorizontalPanelView in:vP.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   880
        hP3 horizontalLayout:#fitSpace;
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   881
            verticalLayout:#center.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   882
        b7 := Button label:'button7' in:hP3.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   883
        b8 := Button label:'button8' in:hP3.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   884
        b9 := Button label:'button9' in:hP3.
118
claus
parents: 77
diff changeset
   885
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   886
        v extent:300 @ 300.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   887
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   888
                                                                        [exEnd]
118
claus
parents: 77
diff changeset
   889
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   890
    example: a browser like table, the two left tables have a fix width,
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   891
             while the rightmost list extends to the far right.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   892
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   893
        |v p l1 l2 l3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   894
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   895
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   896
        p := HorizontalPanelView in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   897
        v label:'hL=leftFit hS=0; vL=fit'.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   898
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   899
        p horizontalLayout:#leftFit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   900
        p horizontalSpace:0.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   901
        p verticalLayout:#fit.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   902
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   903
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   904
        l1 := ScrollableView for:FileSelectionList in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   905
        l1 stayInDirectory:true.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   906
        l1 ignoreParentDirectory:true.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   907
        l1 directory:'/'.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   908
        l1 action:[:selection | l2 directory:(l1 selectedPathname)].
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   909
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   910
        l2 := ScrollableView for:FileSelectionList in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   911
        l2 stayInDirectory:true.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   912
        l2 directory:nil.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   913
        l2 ignoreParentDirectory:true.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   914
        l2 action:[:selection | l3 directory:(l2 selectedPathname)].
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   915
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   916
        l3 := ScrollableView for:FileSelectionList in:p.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   917
        l3 directory:nil.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   918
        l3 ignoreParentDirectory:false.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   919
        v extent:400 @ 300.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   920
        v open
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   921
                                                                        [exEnd]
125
claus
parents: 118
diff changeset
   922
claus
parents: 118
diff changeset
   923
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   924
    trouble example: self-resizing elements may cause trouble
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   925
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   926
        |v p l1 l2 l3|
125
claus
parents: 118
diff changeset
   927
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   928
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   929
        p := HorizontalPanelView origin:(0.0 @ 0.0) corner:(1.0 @ 1.0) in:v.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   930
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   931
        l1 := (Label label:'one' in:p) level:-1.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   932
        l2 := (Label label:'two' in:p) level:-1.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   933
        l3 := (Label label:'three' in:p) level:-1.
125
claus
parents: 118
diff changeset
   934
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   935
        v extent:400 @ 300.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   936
        v open.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   937
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   938
        (Delay forSeconds:5) wait.
125
claus
parents: 118
diff changeset
   939
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   940
        l1 label:'oneone'.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   941
        l2 label:'twotwo'.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   942
        l3 label:'threethree'.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   943
                                                                        [exEnd]
125
claus
parents: 118
diff changeset
   944
claus
parents: 118
diff changeset
   945
claus
parents: 118
diff changeset
   946
    fixed trouble example: tell the panel that this situation may happen
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   947
                                                                        [exBegin]
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   948
        |v p l1 l2 l3|
125
claus
parents: 118
diff changeset
   949
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   950
        v := StandardSystemView new.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   951
        p := HorizontalPanelView origin:(0.0 @ 0.0) corner:(1.0 @ 1.0) in:v.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   952
        p elementsChangeSize:true.
125
claus
parents: 118
diff changeset
   953
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   954
        l1 := (Label label:'one' in:p) level:-1.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   955
        l2 := (Label label:'two' in:p) level:-1.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   956
        l3 := (Label label:'three' in:p) level:-1.
593
86dd024ed773 examples
Claus Gittinger <cg@exept.de>
parents: 585
diff changeset
   957
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   958
        v extent:400 @ 300.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   959
        v open.
125
claus
parents: 118
diff changeset
   960
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   961
        (Delay forSeconds:5) wait.
125
claus
parents: 118
diff changeset
   962
5831
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   963
        l1 label:'oneone'.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   964
        l2 label:'twotwo'.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   965
        l3 label:'threethree'.
2ebb7988e0ff #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5813
diff changeset
   966
                                                                        [exEnd]
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   967
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   968
! !
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   969
5227
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   970
!HorizontalPanelView class methodsFor:'queries'!
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   971
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   972
possibleHorizontalLayouts
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   973
    ^ #(
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   974
                #okCancelBox
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   975
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   976
                #left
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   977
                #leftSpace
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   978
                #fixLeft
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   979
                #fixLeftSpace
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   980
                #right
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   981
                #rightSpace
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   982
                #center
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   983
                #spread
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   984
                #spreadSpace
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   985
                #fit
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   986
                #fitSpace
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   987
                #leftFit 
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   988
                #leftSpaceFit
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   989
                #rightFit 
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   990
                #rightSpaceFit
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   991
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   992
                #leftMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   993
                #leftSpaceMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   994
                #rightMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   995
                #rightSpaceMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   996
                #centerMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   997
                #spreadMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   998
                #spreadSpaceMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
   999
        ) 
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1000
!
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1001
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1002
possibleVerticalLayouts
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1003
       ^ #(
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1004
                #top
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1005
                #topSpace
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1006
                #center
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1007
                #bottom
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1008
                #bottomSpace
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1009
                #fit
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1010
                #fitSpace
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1011
                #topMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1012
                #topSpaceMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1013
                #bottomMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1014
                #bottomSpaceMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1015
                #centerMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1016
        ) 
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1017
! !
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1018
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1019
!HorizontalPanelView methodsFor:'accessing'!
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1020
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1021
horizontalLayout
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1022
    "return the horizontal layout as symbol.
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1023
     the returned value is one of
1418
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1024
	#left           arrange elements at the left
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1025
	#leftSpace      arrange elements at the left, start with spacing
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1026
	#fixLeft        same as #left, but do not reduce spacing in case of no fit
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1027
	#fixLeftSpace   same as #leftSpace, but do not reduce spacing in case of no fit
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1028
	#right          arrange elements at the right
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1029
	#rightSpace     arrange elements at the right, start with spacing
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1030
	#center         arrange elements in the center
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1031
	#spread         spread elements evenly
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1032
	#spreadSpace    spread elements evenly with spacing at the ends
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1033
	#fit            like #spread, but resize elements for tight packing
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1034
	#fitSpace       like #fit, with additional spacing at the far ends
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1035
	#leftFit        like #left, but resize the last element to fit
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1036
	#leftSpaceFit   like #leftSpace, but resize the last element to fit
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1037
	#rightFit       like #right, but resize the first element to fit
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1038
	#rightSpaceFit  like #rightSpace, but resize the first element to fit
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
  1039
      the default is #center
118
claus
parents: 77
diff changeset
  1040
      See the class documentation for  the meanings.
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1041
    "
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1042
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1043
    ^ hLayout
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1044
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1045
    "Modified: 17.8.1997 / 15:21:26 / cg"
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1046
!
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1047
5227
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1048
horizontalLayout:layoutSymbolArg
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1049
    "change the horizontal layout as symbol.
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1050
     The argument, aSymbol must be one of:
5227
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1051
        #okCancelBox    window system specific. Will dynamically be one of:
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1052
                        #maxRightSpace or #fitSpace, depending on style sheet value.
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1053
                        
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1054
        #left           arrange elements at the left
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1055
        #leftSpace      arrange elements at the left, start with spacing
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1056
        #fixLeft        same as #left, but do not reduce spacing in case of no fit
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1057
        #fixLeftSpace   same as #leftSpace, but do not reduce spacing in case of no fit
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1058
        #right          arrange elements at the right
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1059
        #rightSpace     arrange elements at the right, start with spacing
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1060
        #center         arrange elements in the center
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1061
        #spread         spread elements evenly
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1062
        #spreadSpace    spread elements evenly with spacing at the ends
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1063
        #fit            like #spread, but resize elements for tight packing
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1064
        #fitSpace       like #fit, with additional spacing at the far ends
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1065
        #leftFit        like #left, but resize the last element to fit
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1066
        #leftSpaceFit   like #leftSpace, but resize the last element to fit
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1067
        #rightFit       like #right, but resize the first element to fit
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1068
        #rightSpaceFit  like #rightSpace, but resize the first element to fit
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1069
5227
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1070
        #leftMax        like non-Max layouts, resizing components to
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1071
        #leftSpaceMax   the width of the widest component
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1072
        #rightMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1073
        #rightSpaceMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1074
        #centerMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1075
        #spreadMax
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1076
        #spreadSpaceMax
118
claus
parents: 77
diff changeset
  1077
      the default (if never changed) is #center.
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1078
      See the class documentation for the meanings.
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1079
    "
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1080
5227
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1081
    |layoutSymbol|
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1082
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1083
    layoutSymbol := layoutSymbolArg.
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1084
    layoutSymbol == #okCancelBox ifTrue:[
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1085
        layoutSymbol := styleSheet at:#'horizontalPanel.okCancelBox' default:#fitSpace.
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1086
    ].
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1087
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1088
    (hLayout ~~ layoutSymbol) ifTrue:[
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1089
        hLayout := layoutSymbol.
94ce4ed2f106 class: HorizontalPanelView
Claus Gittinger <cg@exept.de>
parents: 4565
diff changeset
  1090
        self layoutChanged
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1091
    ]
1156
4f0db7433c78 commentary
Claus Gittinger <cg@exept.de>
parents: 1042
diff changeset
  1092
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1093
    "Modified: 17.8.1997 / 15:21:16 / cg"
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1094
!
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1095
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1096
layout:something
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1097
    "OBSOLETE compatibility interface. Will vanish.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1098
     leftover for historic reasons - do not use any more.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1099
     In the meantime, try to figure out what is meant ... a kludge"
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1100
2365
fb05ac894aed Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 2305
diff changeset
  1101
    <resource:#obsolete>
fb05ac894aed Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 2305
diff changeset
  1102
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1103
    something isLayout ifTrue:[^ super layout:something].
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1104
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1105
    self obsoleteMethodWarning:'use #horizontalLayout:'.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1106
    ^ self horizontalLayout:something
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1107
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1108
    "Modified: 31.8.1995 / 23:07:33 / claus"
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1109
!
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1110
2099
1f2eacc75651 accessor added
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  1111
reverseOrderIfOKAtLeft
1f2eacc75651 accessor added
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  1112
    "return the reverseOrderIfOKAtLeft flag.
1f2eacc75651 accessor added
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  1113
     This can be set for OK-Cancel like panels, where the OK Button should
1f2eacc75651 accessor added
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  1114
     be positioned on the left for some viewStyles."
1f2eacc75651 accessor added
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  1115
1f2eacc75651 accessor added
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  1116
    ^ reverseOrderIfOKAtLeft 
1f2eacc75651 accessor added
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  1117
!
1f2eacc75651 accessor added
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  1118
2039
ad9313ab0151 added support for component reversal if OK-atLeft
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
  1119
reverseOrderIfOKAtLeft:aBoolean
ad9313ab0151 added support for component reversal if OK-atLeft
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
  1120
    "set/clear the reverseOrderIfOKAtLeft flag.
ad9313ab0151 added support for component reversal if OK-atLeft
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
  1121
     This can be set for OK-Cancel like panels, where the OK Button should
ad9313ab0151 added support for component reversal if OK-atLeft
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
  1122
     be positioned on the left for some viewStyles."
ad9313ab0151 added support for component reversal if OK-atLeft
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
  1123
ad9313ab0151 added support for component reversal if OK-atLeft
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
  1124
    reverseOrderIfOKAtLeft := aBoolean
ad9313ab0151 added support for component reversal if OK-atLeft
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
  1125
!
ad9313ab0151 added support for component reversal if OK-atLeft
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
  1126
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1127
verticalLayout
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1128
    "return the vertical layout as a symbol.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1129
     the returned value is one of
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1130
	#top            place element at the top
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1131
	#topSpace       place element at the top, offset by verticalSpace
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1132
	#center         place it horizontally centered
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1133
	#bottom         place it at the bottom
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1134
	#bottomSpace    place it at the bottom, offset by verticalSpace
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1135
	#fit            resize elements vertically to fit this panel
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1136
	#fitSpace       like #fit, but with spacing
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1137
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1138
	#topMax         like #top, but resize all views vertically to max height
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1139
	#topSpaceMax    like #topSpace, but resize all views vertically to max height
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1140
	#bottomMax      like #bottom, but resize all views vertically to max height
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1141
	#bottomSpaceMax like #bottomSpace, but resize all views vertically to max height
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1142
	#centerMax      like #center, but resize all views vertically to max height
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1143
      the default is #center
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1144
      See the class documentation for  the meanings.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1145
    "
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1146
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1147
    ^ vLayout
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1148
!
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1149
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1150
verticalLayout:aSymbol
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1151
    "change the vertical layout as a symbol.
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1152
     The argument, aSymbol must be one of:
133
claus
parents: 131
diff changeset
  1153
	#top            place element at the top
claus
parents: 131
diff changeset
  1154
	#topSpace       place element at the top, offset by verticalSpace
claus
parents: 131
diff changeset
  1155
	#center         place it horizontally centered
claus
parents: 131
diff changeset
  1156
	#bottom         place it at the bottom
claus
parents: 131
diff changeset
  1157
	#bottomSpace    place it at the bottom, offset by verticalSpace
claus
parents: 131
diff changeset
  1158
	#fit            resize elements vertically to fit this panel
claus
parents: 131
diff changeset
  1159
	#fitSpace       like #fit, but with spacing
claus
parents: 131
diff changeset
  1160
claus
parents: 131
diff changeset
  1161
	#topMax         like #top, but resize all views vertically to max height
claus
parents: 131
diff changeset
  1162
	#topSpaceMax    like #topSpace, but resize all views vertically to max height
claus
parents: 131
diff changeset
  1163
	#bottomMax      like #bottom, but resize all views vertically to max height
claus
parents: 131
diff changeset
  1164
	#bottomSpaceMax like #bottomSpace, but resize all views vertically to max height
claus
parents: 131
diff changeset
  1165
	#centerMax      like #center, but resize all views vertically to max height
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
  1166
      the default (if never changed) is #center
118
claus
parents: 77
diff changeset
  1167
      See the class documentation for  the meanings.
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1168
    "
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1169
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1170
    (vLayout ~~ aSymbol) ifTrue:[
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1171
	vLayout := aSymbol.
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1172
	self layoutChanged
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1173
    ]
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1174
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1175
3458
5fd0c976f1bc focus handling: subviewsInFocusOrder
ca
parents: 3118
diff changeset
  1176
!HorizontalPanelView methodsFor:'focus handling'!
5fd0c976f1bc focus handling: subviewsInFocusOrder
ca
parents: 3118
diff changeset
  1177
5fd0c976f1bc focus handling: subviewsInFocusOrder
ca
parents: 3118
diff changeset
  1178
subviewsInFocusOrder
3515
25470e3161e1 changed #subviewsInFocusOrder
ca
parents: 3503
diff changeset
  1179
25470e3161e1 changed #subviewsInFocusOrder
ca
parents: 3503
diff changeset
  1180
    subViews isEmptyOrNil ifTrue:[ ^ #() ].
25470e3161e1 changed #subviewsInFocusOrder
ca
parents: 3503
diff changeset
  1181
    
3458
5fd0c976f1bc focus handling: subviewsInFocusOrder
ca
parents: 3118
diff changeset
  1182
    (reverseOrderIfOKAtLeft == true
5fd0c976f1bc focus handling: subviewsInFocusOrder
ca
parents: 3118
diff changeset
  1183
    and:[Dialog defaultOKButtonAtLeft]) ifTrue:[
3515
25470e3161e1 changed #subviewsInFocusOrder
ca
parents: 3503
diff changeset
  1184
        ^ subViews reversed
3458
5fd0c976f1bc focus handling: subviewsInFocusOrder
ca
parents: 3118
diff changeset
  1185
    ].
5fd0c976f1bc focus handling: subviewsInFocusOrder
ca
parents: 3118
diff changeset
  1186
    ^ subViews
5fd0c976f1bc focus handling: subviewsInFocusOrder
ca
parents: 3118
diff changeset
  1187
! !
5fd0c976f1bc focus handling: subviewsInFocusOrder
ca
parents: 3118
diff changeset
  1188
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1189
!HorizontalPanelView methodsFor:'layout'!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1190
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1191
setChildPositions
5813
264f904ada97 #OTHER by mawalch
mawalch
parents: 5605
diff changeset
  1192
    "(re)compute position of every child whenever children are added or
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1193
     my size has changed"
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1194
5813
264f904ada97 #OTHER by mawalch
mawalch
parents: 5605
diff changeset
  1195
    |xpos space sumOfWidths numChilds l wEach wInside hL vL resizeToMaxV
4565
4c4b47122c2c Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Stefan Vogel <sv@exept.de>
parents: 4023
diff changeset
  1196
     resizeToMaxH maxHeight maxWidth m2 subViews restWidth y2 bw|
1042
5914ecc423e1 care for sizing with no subviews;
ca
parents: 1038
diff changeset
  1197
1418
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1198
    subViews := self subViewsToConsider.
2039
ad9313ab0151 added support for component reversal if OK-atLeft
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
  1199
    (numChilds := subViews size) == 0 ifTrue:[^ self].
3778
c7257987a773 division by zero with numChilds == 1
Claus Gittinger <cg@exept.de>
parents: 3765
diff changeset
  1200
2039
ad9313ab0151 added support for component reversal if OK-atLeft
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
  1201
    reverseOrderIfOKAtLeft == true ifTrue:[
2698
cca702636705 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2484
diff changeset
  1202
        (Dialog defaultOKButtonAtLeft) ifTrue:[
3458
5fd0c976f1bc focus handling: subviewsInFocusOrder
ca
parents: 3118
diff changeset
  1203
            subViews := subViews reversed.
2039
ad9313ab0151 added support for component reversal if OK-atLeft
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
  1204
        ]
ad9313ab0151 added support for component reversal if OK-atLeft
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
  1205
    ].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1206
3500
ea942b6f6edc changed #setChildPositions
ca
parents: 3458
diff changeset
  1207
"/    self extentChangedFlag ifTrue:[
ea942b6f6edc changed #setChildPositions
ca
parents: 3458
diff changeset
  1208
"/        ext := self computeExtent.
ea942b6f6edc changed #setChildPositions
ca
parents: 3458
diff changeset
  1209
"/        width := ext x.
ea942b6f6edc changed #setChildPositions
ca
parents: 3458
diff changeset
  1210
"/        height := ext y.
ea942b6f6edc changed #setChildPositions
ca
parents: 3458
diff changeset
  1211
"/    ].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1212
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1213
    space := horizontalSpace.
1254
c9e604f03e6a code compactified (slightly)
Claus Gittinger <cg@exept.de>
parents: 1165
diff changeset
  1214
4023
06b045d4e152 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3778
diff changeset
  1215
    bw := self borderWidth.
379
a0ada7891fe9 looks bette if panels level is ~~ 0 AND subview has 0 level
Claus Gittinger <cg@exept.de>
parents: 340
diff changeset
  1216
    m2 := margin * 2.
4023
06b045d4e152 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3778
diff changeset
  1217
    wInside := width - m2 + (bw*2) - subViews last borderWidth.
59
450ce95a72a4 *** empty log message ***
claus
parents: 38
diff changeset
  1218
118
claus
parents: 77
diff changeset
  1219
    hL := hLayout.
claus
parents: 77
diff changeset
  1220
    vL := vLayout.
5976
7ce7f1eed0cf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5932
diff changeset
  1221
"/ hL == #rightFit ifTrue:[self halt].
133
claus
parents: 131
diff changeset
  1222
    resizeToMaxH := false.
claus
parents: 131
diff changeset
  1223
    (hL endsWith:'Max') ifTrue:[
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1224
        resizeToMaxH := true.
2484
d3dc4dd15655 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2480
diff changeset
  1225
        wEach := maxWidth := subViews
5813
264f904ada97 #OTHER by mawalch
mawalch
parents: 5605
diff changeset
  1226
                                inject:0
2480
f9fa0ccebe03 maxLeft: ignore invisible
Claus Gittinger <cg@exept.de>
parents: 2387
diff changeset
  1227
                                into:[:maxSoFar :child |
5605
65f49fc215d5 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5588
diff changeset
  1228
                                        maxSoFar max:child preferredWidth "widthIncludingBorder"
2480
f9fa0ccebe03 maxLeft: ignore invisible
Claus Gittinger <cg@exept.de>
parents: 2387
diff changeset
  1229
                                ].
4565
4c4b47122c2c Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Stefan Vogel <sv@exept.de>
parents: 4023
diff changeset
  1230
        hL := (hL copyButLast:3) asSymbol.
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1231
    ].
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1232
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1233
    numChilds == 1 ifTrue:[
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1234
        (hL == #leftFit or:[hL == #rightFit]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1235
            hL := #fit
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1236
        ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1237
        (hL == #leftSpaceFit or:[hL == #rightSpaceFit]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1238
            hL := #fitSpace
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1239
        ].
133
claus
parents: 131
diff changeset
  1240
    ].
claus
parents: 131
diff changeset
  1241
118
claus
parents: 77
diff changeset
  1242
    hL == #fitSpace ifTrue:[
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1243
        "
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1244
         adjust childs extents and set origins.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1245
         Be careful to avoid accumulation of rounding errors
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1246
        "
3458
5fd0c976f1bc focus handling: subviewsInFocusOrder
ca
parents: 3118
diff changeset
  1247
        wEach := (wInside - ((numChilds + 1) * space)) / numChilds.
4023
06b045d4e152 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3778
diff changeset
  1248
        xpos := space + margin - bw.
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1249
    ] ifFalse:[
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1250
        hL == #fit ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1251
            "
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1252
             adjust childs extents and set origins.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1253
             Be careful to avoid accumulation of rounding errors
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1254
            "
3458
5fd0c976f1bc focus handling: subviewsInFocusOrder
ca
parents: 3118
diff changeset
  1255
            wEach := (wInside - ((numChilds - 1) * space)) / numChilds.
4023
06b045d4e152 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3778
diff changeset
  1256
            xpos := margin - bw.
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1257
        ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1258
            l := hL.
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1259
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1260
            "
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1261
             compute net width needed
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1262
            "
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1263
            resizeToMaxH ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1264
                sumOfWidths := subViews inject:0 into:[:sumSoFar :child | sumSoFar + maxWidth + (child borderWidth*2)].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1265
            ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1266
                sumOfWidths := subViews inject:0 into:[:sumSoFar :child | sumSoFar + child widthIncludingBorder].
2030
30247cb8fab0 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1267
30247cb8fab0 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1268
                "/ adjust - do not include width of last(first) element if doing a fit
30247cb8fab0 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1269
                (hL == #leftFit or:[hL == #leftSpaceFit]) ifTrue:[
30247cb8fab0 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1270
                    sumOfWidths := sumOfWidths - subViews last widthIncludingBorder.
30247cb8fab0 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1271
                ] ifFalse:[
30247cb8fab0 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1272
                    (hL == #rightFit or:[hL == #rightSpaceFit]) ifTrue:[
30247cb8fab0 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1273
                        sumOfWidths := sumOfWidths - subViews first widthIncludingBorder.
5976
7ce7f1eed0cf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5932
diff changeset
  1274
                        hL == #rightSpaceFit ifTrue:[
7ce7f1eed0cf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5932
diff changeset
  1275
                            sumOfWidths := sumOfWidths + (space * (numChilds+1)).
7ce7f1eed0cf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5932
diff changeset
  1276
                        ] ifFalse:[
7ce7f1eed0cf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5932
diff changeset
  1277
                            sumOfWidths := sumOfWidths + (space * (numChilds-1)).
7ce7f1eed0cf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5932
diff changeset
  1278
                        ]
2030
30247cb8fab0 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1279
                    ]
30247cb8fab0 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 2012
diff changeset
  1280
                ].
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1281
            ].
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1282
5424
Claus Gittinger <cg@exept.de>
parents: 5227
diff changeset
  1283
            restWidth := wInside "width" - sumOfWidths "- (numChilds-1*space)".
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1284
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1285
            ((l == #center) and:[numChilds == 1]) ifTrue:[l := #spread].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1286
            (l == #spread and:[numChilds == 1]) ifTrue:[l := #spreadSpace].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1287
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1288
            "
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1289
             compute position of leftmost subview and space between them;
5813
264f904ada97 #OTHER by mawalch
mawalch
parents: 5605
diff changeset
  1290
             if they do hardly fit, leave no space between them
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1291
            "
5813
264f904ada97 #OTHER by mawalch
mawalch
parents: 5605
diff changeset
  1292
            ((sumOfWidths > (width - m2))
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1293
            and:[l ~~ #fixLeftSpace and:[l ~~ #fixLeft]]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1294
                xpos := margin.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1295
                space := 0
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1296
            ] ifFalse: [
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1297
                l == #fixLeftSpace ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1298
                    l := #leftSpace
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1299
                ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1300
                    l == #fixLeft ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1301
                        l := #left
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1302
                    ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1303
                ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1304
                ((l == #right) or:[l == #rightSpace
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1305
                or:[l == #rightFit or:[l == #rightSpaceFit]]]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1306
                    xpos := restWidth - (space * (numChilds - 1)).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1307
"/
4023
06b045d4e152 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3778
diff changeset
  1308
"/                    bw == 0 ifTrue:[
5813
264f904ada97 #OTHER by mawalch
mawalch
parents: 5605
diff changeset
  1309
"/                        xpos := xpos + space
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1310
"/                    ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1311
"/
5813
264f904ada97 #OTHER by mawalch
mawalch
parents: 5605
diff changeset
  1312
                    (l == #rightSpace
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1313
                    or:[l == #rightSpaceFit]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1314
                        xpos >= space ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1315
                            xpos := xpos - space
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1316
                        ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1317
                    ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1318
                    xpos := xpos - margin.
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1319
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1320
                    xpos < 0 ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1321
                        space := space min:(restWidth // (numChilds + 1)).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1322
                        xpos := restWidth - (space * numChilds).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1323
                    ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1324
                ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1325
                    (l == #spread) ifTrue:[
3778
c7257987a773 division by zero with numChilds == 1
Claus Gittinger <cg@exept.de>
parents: 3765
diff changeset
  1326
                        numChilds == 1 ifTrue:[
c7257987a773 division by zero with numChilds == 1
Claus Gittinger <cg@exept.de>
parents: 3765
diff changeset
  1327
                            space := (restWidth - m2).
c7257987a773 division by zero with numChilds == 1
Claus Gittinger <cg@exept.de>
parents: 3765
diff changeset
  1328
                        ] ifFalse:[
c7257987a773 division by zero with numChilds == 1
Claus Gittinger <cg@exept.de>
parents: 3765
diff changeset
  1329
                            space := (restWidth - m2) // (numChilds - 1).
c7257987a773 division by zero with numChilds == 1
Claus Gittinger <cg@exept.de>
parents: 3765
diff changeset
  1330
                        ].
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1331
                        xpos := margin.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1332
                        (space == 0) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1333
                            xpos := restWidth // 2
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1334
                        ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1335
                    ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1336
                      (l == #spreadSpace) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1337
                        space := (restWidth - m2) // (numChilds + 1).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1338
                        xpos := space + margin.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1339
                        (space == 0) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1340
                            xpos := restWidth // 2
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1341
                        ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1342
                      ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1343
                        ((l == #left) or:[l == #leftSpace
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1344
                        or:[l == #leftFit or:[l == #leftSpaceFit]]]) ifTrue:[
5813
264f904ada97 #OTHER by mawalch
mawalch
parents: 5605
diff changeset
  1345
                            (l == #left or:[l == #leftFit]) ifTrue:[
3737
5ef2b67ae860 fix devide by zero problem if numChilds = 1
ab
parents: 3686
diff changeset
  1346
                                numChilds == 1 ifTrue: [
5ef2b67ae860 fix devide by zero problem if numChilds = 1
ab
parents: 3686
diff changeset
  1347
                                    space := space min:(restWidth - m2).
5ef2b67ae860 fix devide by zero problem if numChilds = 1
ab
parents: 3686
diff changeset
  1348
                                ]ifFalse:[
5ef2b67ae860 fix devide by zero problem if numChilds = 1
ab
parents: 3686
diff changeset
  1349
                                    space := space min:(restWidth - m2) // (numChilds - 1).
5ef2b67ae860 fix devide by zero problem if numChilds = 1
ab
parents: 3686
diff changeset
  1350
                                ].
5813
264f904ada97 #OTHER by mawalch
mawalch
parents: 5605
diff changeset
  1351
                            ] ifFalse:[
3674
d9a22791dc50 spacing computation fixed (boundary condition, spacing reduction)
Claus Gittinger <cg@exept.de>
parents: 3515
diff changeset
  1352
                                space := space min:(restWidth - m2) // (numChilds "+ 1").
d9a22791dc50 spacing computation fixed (boundary condition, spacing reduction)
Claus Gittinger <cg@exept.de>
parents: 3515
diff changeset
  1353
                            ].
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1354
                            (hL == #fixLeft or:[hL == #fixLeftSpace]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1355
                                space := space max:horizontalSpace.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1356
                            ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1357
                                space := space max:0.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1358
                            ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1359
                            (l == #leftSpace or:[l == #leftSpaceFit]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1360
                                xpos := space + margin.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1361
                            ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1362
                                "/
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1363
                                "/ if the very first view has a 0-level AND
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1364
                                "/ my level is non-zero, begin with margin
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1365
                                "/
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1366
                                true "(margin ~~ 0 and:[subViews first level == 0])" ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1367
                                    xpos := margin
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1368
                                ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1369
                                    xpos := 0
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1370
                                ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1371
                            ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1372
                        ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1373
                            "center"
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1374
                            xpos := (restWidth - ((numChilds - 1) * space)) // 2.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1375
                            xpos < 0 ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1376
                                space := restWidth // (numChilds + 1).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1377
                                xpos := (restWidth - ((numChilds - 1) * space)) // 2.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1378
                            ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1379
                        ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1380
                      ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1381
                    ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1382
                ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1383
            ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1384
        ].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1385
    ].
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1386
133
claus
parents: 131
diff changeset
  1387
    resizeToMaxV := false.
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1388
    (vL endsWith:'Max') ifTrue:[
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1389
        resizeToMaxV := true.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1390
        maxHeight := subViews inject:0 into:[:maxSoFar :child | maxSoFar max:child heightIncludingBorder].
4565
4c4b47122c2c Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Stefan Vogel <sv@exept.de>
parents: 4023
diff changeset
  1391
        vL := (vL copyButLast:3) asSymbol.
133
claus
parents: 131
diff changeset
  1392
    ].
claus
parents: 131
diff changeset
  1393
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1394
    "
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1395
     now set positions
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1396
    "
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1397
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
  1398
    subViews keysAndValuesDo:[:index :child |
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1399
        |ypos advance bwChild hChild newHChild|
62
7cc1e330da47 *** empty log message ***
claus
parents: 59
diff changeset
  1400
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1401
        hChild := child heightIncludingBorder.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1402
        bwChild := child borderWidth.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1403
3118
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2699
diff changeset
  1404
        elementsChangeSize ifTrue:[
5922
974b38d3d99b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5831
diff changeset
  1405
            "to avoid a recursion when we change the element's size"
3118
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2699
diff changeset
  1406
            child removeDependent:self.
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2699
diff changeset
  1407
        ].
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1408
        resizeToMaxV ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1409
            child height:(hChild := maxHeight - (bwChild  * 2)).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1410
        ].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1411
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1412
        vL == #top ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1413
            ypos := margin
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1414
        ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1415
            vL == #topSpace ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1416
                ypos :=  margin + verticalSpace
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1417
            ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1418
                vL == #bottom ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1419
                    ypos := height - margin - child heightIncludingBorder
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1420
                ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1421
                    vL == #bottomSpace ifTrue:[
5813
264f904ada97 #OTHER by mawalch
mawalch
parents: 5605
diff changeset
  1422
                        ypos := height - margin
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1423
                                - verticalSpace - child heightIncludingBorder.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1424
                    ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1425
                        vL == #fitSpace ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1426
                            ypos := verticalSpace.
3458
5fd0c976f1bc focus handling: subviewsInFocusOrder
ca
parents: 3118
diff changeset
  1427
                            newHChild := height - ((verticalSpace + bwChild) * 2).
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1428
                            ypos := ypos + margin.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1429
                            newHChild := newHChild - m2.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1430
                        ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1431
                            vL == #fit ifTrue:[
5424
Claus Gittinger <cg@exept.de>
parents: 5227
diff changeset
  1432
                                newHChild := height "- (bwChild * 2)".
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1433
                                "/
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1434
                                "/ if the view has a 0-level AND
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1435
                                "/ my level is non-zero, begin with margin
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1436
                                "/
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1437
                                true "(level ~~ 0 and:[child level == 0])" ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1438
                                    ypos := margin.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1439
                                    newHChild := newHChild - m2.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1440
                                ] ifFalse:[
5813
264f904ada97 #OTHER by mawalch
mawalch
parents: 5605
diff changeset
  1441
                                    ypos := 0.
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1442
                                ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1443
                            ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1444
                                "centered"
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1445
                                ypos := margin + ((height - m2 - hChild) // 2).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1446
                            ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1447
                        ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1448
                    ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1449
                ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1450
            ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1451
        ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1452
        newHChild notNil ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1453
            child height:newHChild
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1454
        ].
379
a0ada7891fe9 looks bette if panels level is ~~ 0 AND subview has 0 level
Claus Gittinger <cg@exept.de>
parents: 340
diff changeset
  1455
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1456
        (ypos < 0) ifTrue:[ypos := 0].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1457
2033
fc16e79f649b size computation with bordered components
Claus Gittinger <cg@exept.de>
parents: 2030
diff changeset
  1458
        y2 := ypos + child height - 1.
fc16e79f649b size computation with bordered components
Claus Gittinger <cg@exept.de>
parents: 2030
diff changeset
  1459
5813
264f904ada97 #OTHER by mawalch
mawalch
parents: 5605
diff changeset
  1460
        (hL == #fit
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1461
         or:[hL == #fitSpace
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1462
         or:[resizeToMaxH]]) ifTrue:[
1747
d5be0d4cf7fc do not care for sizeFixed views with fit layouts.
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
  1463
"/cg: removed this (OLD) piece of code,
6100
43667474ed53 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5976
diff changeset
  1464
"/ which prevents resizing of label-like things if it's sizeFixed is set to true 
1747
d5be0d4cf7fc do not care for sizeFixed views with fit layouts.
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
  1465
d5be0d4cf7fc do not care for sizeFixed views with fit layouts.
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
  1466
"/            child sizeFixed ifTrue:[
d5be0d4cf7fc do not care for sizeFixed views with fit layouts.
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
  1467
"/                d := wEach - (child widthIncludingBorder) // 2.
d5be0d4cf7fc do not care for sizeFixed views with fit layouts.
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
  1468
"/                child origin:(xpos truncated + d @ ypos)
d5be0d4cf7fc do not care for sizeFixed views with fit layouts.
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
  1469
"/            ] ifFalse:[
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1470
                child origin:(xpos truncated @ ypos)
2033
fc16e79f649b size computation with bordered components
Claus Gittinger <cg@exept.de>
parents: 2030
diff changeset
  1471
                      corner:(xpos + wEach - bwChild - 1) truncated @ y2.
1747
d5be0d4cf7fc do not care for sizeFixed views with fit layouts.
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
  1472
"/            ].
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1473
            advance := wEach.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1474
        ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1475
            child origin:(xpos @ ypos).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1476
            advance := child widthIncludingBorder
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1477
        ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1478
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1479
        index == numChilds ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1480
            |x|
1306
bf4903012f7a added #rightFit & #rightSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1481
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1482
            (hL == #leftFit or:[hL == #leftSpaceFit]) ifTrue:[
4023
06b045d4e152 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3778
diff changeset
  1483
                x := width - margin - 1 - (bwChild * 2) + bw.
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1484
                hL == #leftSpaceFit ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1485
                    x := x - space
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1486
                ].
2033
fc16e79f649b size computation with bordered components
Claus Gittinger <cg@exept.de>
parents: 2030
diff changeset
  1487
                child corner:(x @ y2)
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1488
            ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1489
        ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1490
        index == 1 ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1491
            (hL == #rightFit or:[hL == #rightSpaceFit]) ifTrue:[
4023
06b045d4e152 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3778
diff changeset
  1492
                xpos := margin + 0 + (bwChild * 2) - bw.
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1493
                hL == #rightSpaceFit ifTrue:[
3118
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2699
diff changeset
  1494
                    xpos := xpos + space
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1495
                ].
3118
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2699
diff changeset
  1496
                advance := restWidth.
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2699
diff changeset
  1497
                child origin:(xpos @ (child origin y))
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2699
diff changeset
  1498
                      corner:((xpos+advance) @ (child corner y))
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1499
            ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1500
        ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1501
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1418
diff changeset
  1502
        xpos := xpos + advance + space.
3118
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2699
diff changeset
  1503
        elementsChangeSize ifTrue:[
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2699
diff changeset
  1504
            "reinstall dependency that we removed above"
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2699
diff changeset
  1505
            child addDependent:self.
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2699
diff changeset
  1506
        ].
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
  1507
    ].
155
claus
parents: 133
diff changeset
  1508
3503
6af61918313a setChildPositions fix with rightFit
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
  1509
    "Modified: / 04-09-1995 / 18:43:10 / claus"
5976
7ce7f1eed0cf #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5932
diff changeset
  1510
    "Modified: / 23-11-2016 / 00:36:03 / cg"
6100
43667474ed53 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5976
diff changeset
  1511
    "Modified (format): / 13-02-2017 / 20:22:45 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1512
! !
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1513
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1514
!HorizontalPanelView methodsFor:'queries'!
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1515
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1516
preferredExtent
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1517
    "return a good extent, one that makes subviews fit"
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1518
980
6079922a5519 eliminated references to subViews instance variable (will vanish)
Claus Gittinger <cg@exept.de>
parents: 797
diff changeset
  1519
    |sumOfWidths maxHeight maxWidth m2 subViews|
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1520
3765
db70ef63cc02 changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 3737
diff changeset
  1521
    "/ If I have an explicit preferredExtent..
db70ef63cc02 changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 3737
diff changeset
  1522
    explicitExtent notNil ifTrue:[
db70ef63cc02 changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 3737
diff changeset
  1523
        ^ explicitExtent
db70ef63cc02 changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 3737
diff changeset
  1524
    ].
797
2f9cd56f48ee *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 793
diff changeset
  1525
3765
db70ef63cc02 changed #preferredExtent - use explicitExtent instvar
Stefan Vogel <sv@exept.de>
parents: 3737
diff changeset
  1526
    "/ If I have a cached preferredExtent value..
713
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1527
    preferredExtent notNil ifTrue:[
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1528
        ^ preferredExtent
713
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1529
    ].
0c38ad51016d care for preSet preferredExtent
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1530
1418
3397ec6b8419 added ignoreInvisibleComponents stuff
Claus Gittinger <cg@exept.de>
parents: 1306
diff changeset
  1531
    subViews := self subViewsToConsider.
6138
094c0d355f5f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6100
diff changeset
  1532
    subViews isEmptyOrNil ifTrue:[
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1533
        ^ super preferredExtent.
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1534
        "/ ^ horizontalSpace @ verticalSpace].
1038
c6d8eb89d260 useful preferredExtent if no subviews.
ca
parents: 980
diff changeset
  1535
    ].
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1536
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1537
    "compute net height needed"
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1538
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1539
    sumOfWidths := 0.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1540
    maxHeight := 0.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1541
    maxWidth := 0.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1542
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1543
    subViews do:[:child |
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1544
        |childsPreference|
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1545
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1546
        "/ better to use component's preferredExtent ...
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1547
6138
094c0d355f5f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6100
diff changeset
  1548
        childsPreference := child preferredExtent.
5932
9301baf143d4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5922
diff changeset
  1549
        child realized ifTrue:[
6138
094c0d355f5f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6100
diff changeset
  1550
            childsPreference := childsPreference max:child extent.
5932
9301baf143d4 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5922
diff changeset
  1551
        ].
6138
094c0d355f5f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6100
diff changeset
  1552
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1553
        sumOfWidths := sumOfWidths + childsPreference x.
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1554
        maxHeight := maxHeight max:childsPreference y.
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1555
        maxWidth := maxWidth max:childsPreference x.
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1556
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1557
        "/ ... instead of actual extent
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1558
"/        sumOfWidths := sumOfWidths + child widthIncludingBorder.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1559
"/        maxHeight := maxHeight max:(child heightIncludingBorder).
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1560
"/        maxWidth := maxWidth max:(child widthIncludingBorder).
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1561
    ].
4023
06b045d4e152 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3778
diff changeset
  1562
"/    self borderWidth ~~ 0 ifTrue:[
3686
de886bde6f31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
  1563
"/        sumOfWidths := sumOfWidths + (horizontalSpace * 2).
de886bde6f31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
  1564
"/        maxHeight := maxHeight + (verticalSpace * 2).
de886bde6f31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
  1565
"/    ].
de886bde6f31 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3674
diff changeset
  1566
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1567
    (hLayout == #fit 
6138
094c0d355f5f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6100
diff changeset
  1568
     or:[hLayout == #fitSpace
094c0d355f5f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6100
diff changeset
  1569
     or:[hLayout endsWith:'Max']]) ifTrue:[
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1570
        sumOfWidths := maxWidth * subViews size.
4023
06b045d4e152 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3778
diff changeset
  1571
        self borderWidth ~~ 0 ifTrue:[
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1572
            sumOfWidths := sumOfWidths + (horizontalSpace * 2).
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1573
        ].
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1574
        hLayout == #fitSpace ifTrue:[
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1575
            "/ care for spacing ...
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1576
            sumOfWidths := sumOfWidths + (horizontalSpace * (subViews size + 1)).
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1577
        ].
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1578
    ] ifFalse:[
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1579
        sumOfWidths := sumOfWidths + ((subViews size - 1) * horizontalSpace).
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1580
        ((hLayout == #leftSpace) or:[hLayout == #rightSpace]) ifTrue:[
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1581
            sumOfWidths := sumOfWidths + horizontalSpace
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1582
        ] ifFalse:[
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1583
            ((hLayout == #center) or:[hLayout == #spread]) ifTrue:[
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1584
                sumOfWidths := sumOfWidths + (horizontalSpace * 2)
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1585
            ]
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1586
        ].
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1587
    ].
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1588
1165
16b8537595fd care for spacing in preferredExtent of centerSpace layout.
Claus Gittinger <cg@exept.de>
parents: 1156
diff changeset
  1589
    ((vLayout == #topSpace) 
6138
094c0d355f5f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6100
diff changeset
  1590
     or:[vLayout == #bottomSpace]) ifTrue:[
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1591
        maxHeight := maxHeight + verticalSpace
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1592
    ] ifFalse:[
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1593
        ((vLayout == #fitSpace) 
6138
094c0d355f5f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6100
diff changeset
  1594
         or:[vLayout == #center
094c0d355f5f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6100
diff changeset
  1595
         or:[vLayout == #centerSpace]]) ifTrue:[
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1596
            maxHeight := maxHeight + (verticalSpace * 2)
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2365
diff changeset
  1597
        ]        
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1598
    ].
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1599
379
a0ada7891fe9 looks bette if panels level is ~~ 0 AND subview has 0 level
Claus Gittinger <cg@exept.de>
parents: 340
diff changeset
  1600
    m2 := margin * 2.
a0ada7891fe9 looks bette if panels level is ~~ 0 AND subview has 0 level
Claus Gittinger <cg@exept.de>
parents: 340
diff changeset
  1601
    ^ (sumOfWidths + m2) @ (maxHeight + m2)
340
f820bcd29a51 defaultExtent with rightSpace forgot about spacing
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
  1602
6138
094c0d355f5f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6100
diff changeset
  1603
    "Modified: / 17-01-1998 / 00:18:38 / cg"
094c0d355f5f #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 6100
diff changeset
  1604
    "Modified (format): / 30-03-2017 / 18:38:09 / stefan"
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1605
! !
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
  1606
980
6079922a5519 eliminated references to subViews instance variable (will vanish)
Claus Gittinger <cg@exept.de>
parents: 797
diff changeset
  1607
!HorizontalPanelView class methodsFor:'documentation'!
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 202
diff changeset
  1608
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 202
diff changeset
  1609
version
5424
Claus Gittinger <cg@exept.de>
parents: 5227
diff changeset
  1610
    ^ '$Header$'
4023
06b045d4e152 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3778
diff changeset
  1611
!
06b045d4e152 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3778
diff changeset
  1612
06b045d4e152 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3778
diff changeset
  1613
version_CVS
5424
Claus Gittinger <cg@exept.de>
parents: 5227
diff changeset
  1614
    ^ '$Header$'
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 202
diff changeset
  1615
! !
4565
4c4b47122c2c Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Stefan Vogel <sv@exept.de>
parents: 4023
diff changeset
  1616