VerticalPanelView.st
author ca
Wed, 11 Dec 2019 13:16:08 +0100
changeset 6748 9669c3f0bc4b
parent 6747 121b6e62d393
child 6749 1ba3302417a6
permissions -rw-r--r--
#BUGFIX by ca class: VerticalPanelView class definition added: #storePreferredHeight:for: changed: #beVisiblePostUpdate
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6747
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
     1
"{ Encoding: utf8 }"
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
     2
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     3
"
5
claus
parents: 3
diff changeset
     4
 COPYRIGHT (c) 1989 by Claus Gittinger
59
450ce95a72a4 *** empty log message ***
claus
parents: 38
diff changeset
     5
	      All Rights Reserved
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     6
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     7
 This software is furnished under a license and may be used
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    12
 hereby transferred.
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    13
"
2305
f2850e54b0ab only access originChanged, extentChanged and cornerChanged
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
    14
"{ Package: 'stx:libwidg' }"
f2850e54b0ab only access originChanged, extentChanged and cornerChanged
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
    15
5425
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
    16
"{ NameSpace: Smalltalk }"
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
    17
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    18
PanelView subclass:#VerticalPanelView
6748
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
    19
	instanceVariableNames:'rowHeight storedPreferredHeight'
321
00c17944cb00 preferredExtent computation used hSpace instead of vSpace
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    20
	classVariableNames:''
00c17944cb00 preferredExtent computation used hSpace instead of vSpace
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    21
	poolDictionaries:''
00c17944cb00 preferredExtent computation used hSpace instead of vSpace
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
    22
	category:'Views-Layout'
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    23
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    24
980
6079922a5519 eliminated references to subViews instance variable (will vanish)
Claus Gittinger <cg@exept.de>
parents: 797
diff changeset
    25
!VerticalPanelView class methodsFor:'documentation'!
38
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
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    28
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    29
 COPYRIGHT (c) 1989 by Claus Gittinger
59
450ce95a72a4 *** empty log message ***
claus
parents: 38
diff changeset
    30
	      All Rights Reserved
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    31
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    32
 This software is furnished under a license and may be used
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    33
 only in accordance with the terms of that license and with the
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    35
 be provided or otherwise made available to, or used by, any
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    36
 other person.  No title to or ownership of the software is
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    37
 hereby transferred.
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
!
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
documentation
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    42
"
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    43
    a View which arranges its child-views in a vertical column.
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
    44
    All real work is done in PanelView - except the layout computation is
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    45
    redefined here.
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
    46
127
claus
parents: 125
diff changeset
    47
    The layout is controlled by the instance variables: 
1417
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    48
	horizontalLayout and verticalLayout
127
claus
parents: 125
diff changeset
    49
    in addition to 
1417
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    50
	horizontalSpace and verticalSpace.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
    51
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
    52
    The vertical layout can be any of:
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
    53
1417
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    54
	#top            arrange elements at the top
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    55
	#topSpace       arrange elements at the top, start with spacing
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    56
	#bottom         arrange elements at the bottom
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    57
	#bottomSpace    arrange elements at the bottom, start with spacing
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    58
	#center         arrange elements in the center; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    59
	#spread         spread elements evenly; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    60
	#spreadSpace    spread elements evenly with spacing at ends; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    61
	#fit            like #spread, but resize elements for tight packing; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    62
	#fitSpace       like #fit, with spacing; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    63
	#topFit         like #top, but resize the last element to fit
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    64
	#topSpaceFit    like #topSpace, but resize the last element to fit
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    65
	#bottomFit      like #bottom, but resize the first element to fit
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    66
	#bottomSpaceFit like #bottomSpace, but resize the first element to fit
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
    67
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
    68
    the horizontal layout can be:
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
    69
1417
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    70
	#left           place element at the left
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    71
	#leftSpace      place element at the left, offset by horizontalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    72
	#center         place elements horizontally centered; ignore horizontalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    73
	#right          place it at the right
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    74
	#rightSpace     place it at the right, offset by horizontalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    75
	#fit            resize elements horizontally to fit this panel; ignore horizontalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    76
	#fitSpace       like #fit, but add spacing; ignore horizontalSpace
127
claus
parents: 125
diff changeset
    77
1417
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    78
	#leftMax        like #left, but resize elements to max of them
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    79
	#leftSpaceMax   like #leftSpace, but resize elements
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    80
	#centerMax      like #center, but resize elements
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    81
	#rightMax       like #right, but resize elements to max of them
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
    82
	#rightSpaceMax  like #rightSpace, but resize elements
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
    83
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
    84
    The defaults is #center for both directions.
127
claus
parents: 125
diff changeset
    85
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
    86
    The layout is changed by the messages #verticalLayout: and #horizontalLayout:.
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
    87
    For backward compatibility (to times, where only vLayout existed), the simple
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
    88
    #layout: does the same as #verticalLayout:. Do not use this old method.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
    89
127
claus
parents: 125
diff changeset
    90
    The panel assumes, that the elements do not resize themselfes, after it
claus
parents: 125
diff changeset
    91
    became visible. This is not true for all widgets (buttons or labels may
claus
parents: 125
diff changeset
    92
    like to change). If you have changing elements, tell this to the panel
claus
parents: 125
diff changeset
    93
    with 'aPanel elementsChangeSize:true'. In that case, the panel will react
claus
parents: 125
diff changeset
    94
    to size changes, and reorganize things.
claus
parents: 125
diff changeset
    95
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
    96
    If none of these layout/space combinations is exactly what you need in
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
    97
    your application, create a subclass, and redefine the setChildPositions method.
127
claus
parents: 125
diff changeset
    98
claus
parents: 125
diff changeset
    99
    CAVEAT: this class started with #top and no horizontal alignments;
claus
parents: 125
diff changeset
   100
    as time went by, more layouts were added and the setup should be changed
claus
parents: 125
diff changeset
   101
    to use different selectors for space, max-resize and alignment
claus
parents: 125
diff changeset
   102
    (i.e. having more and more layout symbols makes things a bit confusing ...)
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   103
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   104
    [see also:]
1417
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   105
	HorizontalPanelView
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   106
	VariableVerticalPanel VariableHorizontalPanel
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   107
	Label
585
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   108
8f395aba0173 documentation
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   109
    [author:]
1417
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   110
	Claus Gittinger
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   111
"
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   112
!
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   113
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   114
examples
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   115
"
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   116
    These examples demonstrate the effect of different layout
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   117
    settings.
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   118
    You should try more examples, combining spacing and different
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   119
    verticalLayout:/horizontalLayout: combinations.
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   120
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   121
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   122
    example: default layout (centered)
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   123
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   124
        |v p b1 b2 b3|
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   125
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   126
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   127
        v label:'center (default)'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   128
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   129
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   130
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   131
        b2 := Button label:'b2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   132
        b3 := Button label:'butt3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   133
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   134
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   135
                                                                        [exEnd]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   136
127
claus
parents: 125
diff changeset
   137
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   138
    example: rows
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   139
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   140
        |v p b1 b2 b3|
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   141
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   142
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   143
        v label:'center (default)'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   144
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   145
        p rowHeight:50.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   146
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   147
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   148
        b2 := Button label:'b2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   149
        b3 := Button label:'butt3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   150
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   151
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   152
                                                                        [exEnd]
127
claus
parents: 125
diff changeset
   153
claus
parents: 125
diff changeset
   154
claus
parents: 125
diff changeset
   155
    example: horizontal centerMax
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   156
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   157
        |v p b1 b2 b3|
127
claus
parents: 125
diff changeset
   158
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   159
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   160
        v label:'hL=centerMax'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   161
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   162
        p horizontalLayout:#centerMax.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   163
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   164
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   165
        b2 := Button label:'b2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   166
        b3 := Button label:'butt3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   167
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   168
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   169
                                                                        [exEnd]
127
claus
parents: 125
diff changeset
   170
claus
parents: 125
diff changeset
   171
claus
parents: 125
diff changeset
   172
    example: horizontal leftMax
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   173
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   174
        |v p b1 b2 b3|
127
claus
parents: 125
diff changeset
   175
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   176
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   177
        v label:'hL=leftMax'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   178
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   179
        p horizontalLayout:#leftMax.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   180
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   181
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   182
        b2 := Button label:'b2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   183
        b3 := Button label:'butt3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   184
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   185
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   186
                                                                        [exEnd]
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   187
127
claus
parents: 125
diff changeset
   188
    example: horizontal leftSpaceMax
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   189
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   190
        |v p b1 b2 b3|
127
claus
parents: 125
diff changeset
   191
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   192
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   193
        v label:'hL=leftMax'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   194
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   195
        p horizontalLayout:#leftSpaceMax.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   196
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   197
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   198
        b2 := Button label:'b2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   199
        b3 := Button label:'butt3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   200
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   201
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   202
                                                                        [exEnd]
127
claus
parents: 125
diff changeset
   203
claus
parents: 125
diff changeset
   204
    example: horizontal rightMax
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   205
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   206
        |v p b1 b2 b3|
127
claus
parents: 125
diff changeset
   207
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   208
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   209
        v label:'hL=rightMax'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   210
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   211
        p horizontalLayout:#rightMax.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   212
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   213
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   214
        b2 := Button label:'b2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   215
        b3 := Button label:'butt3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   216
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   217
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   218
                                                                        [exEnd]
127
claus
parents: 125
diff changeset
   219
claus
parents: 125
diff changeset
   220
    example: horizontal rightSpaceMax
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   221
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   222
        |v p b1 b2 b3|
127
claus
parents: 125
diff changeset
   223
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   224
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   225
        v label:'hL=rightMaxSpace'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   226
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   227
        p horizontalLayout:#rightSpaceMax.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   228
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   229
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   230
        b2 := Button label:'b2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   231
        b3 := Button label:'butt3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   232
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   233
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   234
                                                                        [exEnd]
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   235
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   236
    example: top-layout
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   237
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   238
        |v p b1 b2 b3|
127
claus
parents: 125
diff changeset
   239
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   240
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   241
        v label:'vL=top; hL=center (default)'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   242
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   243
        p verticalLayout:#top.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   244
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   245
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   246
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   247
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   248
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   249
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   250
                                                                        [exEnd]
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   251
127
claus
parents: 125
diff changeset
   252
    example: topSpace-layout
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   253
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   254
        |v p b1 b2 b3|
127
claus
parents: 125
diff changeset
   255
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   256
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   257
        v label:'vL=topSpace; hL=center (default)'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   258
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   259
        p verticalLayout:#topSpace.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   260
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   261
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   262
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   263
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   264
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   265
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   266
                                                                        [exEnd]
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   267
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   268
    example: top-layout; horizontal fit
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   269
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   270
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   271
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   272
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   273
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   274
        v label:'vL=top; hL=fit'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   275
        p verticalLayout:#top.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   276
        p horizontalLayout:#fit.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   277
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   278
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   279
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   280
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   281
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   282
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   283
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   284
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   285
    example: top-layout; horizontal fit with space
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   286
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   287
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   288
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   289
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   290
        v label:'vL=top; hL=fitSpace'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   291
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   292
        p verticalLayout:#top.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   293
        p horizontalLayout:#fitSpace.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   294
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   295
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   296
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   297
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   298
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   299
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   300
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   301
127
claus
parents: 125
diff changeset
   302
    example: topSpace-layout; horizontal fit with space
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   303
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   304
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   305
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   306
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   307
        v label:'vL=topSpace; hL=fitSpace'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   308
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   309
        p verticalLayout:#topSpace.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   310
        p horizontalLayout:#fitSpace.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   311
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   312
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   313
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   314
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   315
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   316
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   317
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   318
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   319
    example: bottom-layout
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   320
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   321
        |v p b1 b2 b3|
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   322
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   323
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   324
        v label:'vL=bottom; hL=center (default)'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   325
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   326
        p verticalLayout:#bottom.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   327
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   328
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   329
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   330
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   331
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   332
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   333
                                                                        [exEnd]
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   334
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   335
    example: bottomSpace-layout
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   336
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   337
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   338
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   339
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   340
        v label:'vL=bottomSpace; hL=center (default)'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   341
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   342
        p verticalLayout:#bottomSpace.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   343
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   344
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   345
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   346
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   347
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   348
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   349
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   350
133
claus
parents: 131
diff changeset
   351
    example: topFit-layout
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   352
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   353
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   354
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   355
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   356
        v label:'vL=topFit; hL=center (default)'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   357
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   358
        p verticalLayout:#topFit.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   359
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   360
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   361
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   362
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   363
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   364
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   365
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   366
claus
parents: 131
diff changeset
   367
    example: topSpaceFit-layout; combined with horizontal #fitSpace
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   368
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   369
        |v p b1 b2 b3|
133
claus
parents: 131
diff changeset
   370
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   371
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   372
        v label:'vL=topFit; hL=center (default)'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   373
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   374
        p verticalLayout:#topSpaceFit.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   375
        p horizontalLayout:#fitSpace.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   376
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   377
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   378
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   379
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   380
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   381
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   382
                                                                        [exEnd]
133
claus
parents: 131
diff changeset
   383
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   384
    example: bottomFit-layout (arrange at bottom; resize first to fit)
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   385
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   386
        |v p b1 b2 b3|
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   387
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   388
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   389
        v label:'vL=bottomFit; hL=center (default)'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   390
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   391
        p verticalLayout:#bottomFit.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   392
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   393
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   394
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   395
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   396
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   397
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   398
                                                                        [exEnd]
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   399
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   400
    example: bottomSpaceFit-layout (arrange at bottom; resize first to fit; with spacing
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   401
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   402
        |v p b1 b2 b3|
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   403
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   404
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   405
        v label:'vL=bottomSpaceFit; hL=center (default)'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   406
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   407
        p verticalLayout:#bottomSpaceFit.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   408
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   409
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   410
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   411
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   412
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   413
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   414
                                                                        [exEnd]
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   415
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   416
    example: spread-layout
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   417
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   418
        |v p b1 b2 b3|
38
4b9b70b2cc87 2.10.3 pre-final version
claus
parents: 5
diff changeset
   419
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   420
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   421
        v label:'vL=spread; hL=center (default)'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   422
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   423
        p verticalLayout:#spread.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   424
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   425
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   426
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   427
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   428
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   429
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   430
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   431
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   432
    example: spreadSpace-layout
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   433
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   434
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   435
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   436
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   437
        v label:'vL=spreadSpace; hL=center (default)'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   438
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   439
        p verticalLayout:#spreadSpace.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   440
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   441
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   442
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   443
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   444
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   445
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   446
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   447
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   448
    example: fit-layout
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   449
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   450
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   451
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   452
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   453
        v label:'vL=fit; hL=center (default)'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   454
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   455
        p verticalLayout:#fit.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   456
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   457
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   458
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   459
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   460
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   461
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   462
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   463
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   464
    example: fitSpace-layout
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   465
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   466
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   467
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   468
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   469
        v label:'vL=fitSpace; hL=center (default)'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   470
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   471
        p verticalLayout:#fitSpace.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   472
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   473
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   474
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   475
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   476
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   477
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   478
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   479
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   480
    example: fully fitSpace
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   481
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   482
        |v p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   483
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   484
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   485
        v label:'vL=fitSpace; hL=fitSpace'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   486
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   487
        p verticalLayout:#fitSpace.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   488
        p horizontalLayout:#fitSpace.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   489
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   490
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   491
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   492
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   493
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   494
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   495
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   496
131
claus
parents: 130
diff changeset
   497
    example: combine fully fitSpace with scaling button labels
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   498
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   499
        |v p b1 b2 b3|
131
claus
parents: 130
diff changeset
   500
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   501
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   502
        v label:'vL=fitSpace; hL=fitSpace'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   503
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   504
        p verticalLayout:#fitSpace.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   505
        p horizontalLayout:#fitSpace.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   506
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   507
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   508
        b1 adjust:#fit.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   509
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   510
        b2 adjust:#fit.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   511
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   512
        b3 adjust:#fit.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   513
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   514
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   515
                                                                        [exEnd]
131
claus
parents: 130
diff changeset
   516
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   517
    example: from top, each at left:
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   518
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   519
        |v p b1 b2 b3|
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   520
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   521
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   522
        v label:'vL=top; hL=left'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   523
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   524
        p verticalLayout:#top.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   525
        p horizontalLayout:#left.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   526
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   527
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   528
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   529
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   530
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   531
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   532
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   533
127
claus
parents: 125
diff changeset
   534
    example: center, right:
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   535
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   536
        |v p b1 b2 b3|
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   537
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   538
        v := StandardSystemView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   539
        v label:'vL=center; hL=right'.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   540
        p := VerticalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   541
        p verticalLayout:#center.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   542
        p horizontalLayout:#right.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   543
        p origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   544
        b1 := Button label:'button1' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   545
        b2 := Button label:'butt2' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   546
        b3 := Button label:'button3' in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   547
        v extent:100 @ 300.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   548
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   549
                                                                        [exEnd]
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   550
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   551
    example: a panel in a panel
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   552
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   553
        |v hp p b1 b2 b3|
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   554
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   555
        v := StandardSystemView new.
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   556
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   557
        hp := HorizontalPanelView in:v.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   558
        hp verticalLayout:#fit.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   559
        hp horizontalLayout:#fitSpace.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   560
        hp origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   561
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   562
        1 to:3 do:[:i |
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   563
            p := VerticalPanelView in:hp.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   564
            p borderWidth:0.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   565
            p verticalLayout:#fitSpace.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   566
            p horizontalLayout:#fit.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   567
            b1 := Button label:('button1-' , i printString) in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   568
            b2 := Button label:('butt2-' , i printString) in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   569
            b3 := Button label:('button3-' , i printString) in:p.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   570
        ].
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   571
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   572
        v extent:300 @ 100.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   573
        v open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   574
                                                                        [exEnd]
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   575
125
claus
parents: 77
diff changeset
   576
    example: checkToggles in a panel
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   577
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   578
        |panel|
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   579
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   580
        panel := VerticalPanelView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   581
        panel horizontalLayout:#left.
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   582
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   583
        panel add:((CheckBox on:true asValue) label:'this is toggle number 1'; resize).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   584
        panel add:((CheckBox on:false asValue) label:'nr 2 '; resize).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   585
        panel add:((CheckBox on:true asValue) label:'number 3 '; resize).
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   586
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   587
        panel extent:(panel preferredExtent).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   588
        panel open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   589
                                                                        [exEnd]
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   590
    example: the topFit & bottomFit layouts are great to combine
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   591
             labels or enterFields with a selectionInList or textView:
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   592
                                                                        [exBegin]
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   593
        |panel|
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   594
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   595
        panel := VerticalPanelView new.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   596
        panel horizontalLayout:#fit.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   597
        panel verticalLayout:#topFit.
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   598
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   599
        panel add:(Label new label:'this is label number 1'; font:(Font family:'courier' size:16)).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   600
        panel add:(EditField new).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   601
        panel add:(Label new label:'this is label number 1').
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   602
        panel add:(ScrollableView for:SelectionInListView).
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   603
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   604
        panel extent:(panel preferredExtent).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   605
        panel open
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   606
                                                                        [exEnd]
125
claus
parents: 77
diff changeset
   607
"
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   608
! !
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   609
5228
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   610
!VerticalPanelView class methodsFor:'queries'!
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   611
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   612
possibleHorizontalLayouts
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   613
       ^ #(
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   614
                #left
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   615
                #leftSpace
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   616
                #center
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   617
                #right
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   618
                #rightSpace
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   619
                #fit
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   620
                #fitSpace
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   621
                #leftMax
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   622
                #leftSpaceMax
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   623
                #centerMax
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   624
                #rightMax
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   625
                #rightSpaceMax
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   626
            )
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   627
!
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   628
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   629
possibleVerticalLayouts
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   630
       ^  #(
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   631
                #top
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   632
                #topSpace
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   633
                #bottom
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   634
                #bottomSpace
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   635
                #center
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   636
                #spread
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   637
                #spreadSpace
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   638
                #fit
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   639
                #fitSpace
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   640
                #topFit
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   641
                #topSpaceFit
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   642
                #bottomFit
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   643
                #bottomSpaceFit
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   644
            ) 
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   645
! !
d19c0006e528 class: VerticalPanelView
Claus Gittinger <cg@exept.de>
parents: 4562
diff changeset
   646
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   647
!VerticalPanelView methodsFor:'accessing'!
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   648
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   649
horizontalLayout
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   650
    "return the horizontal layout as symbol.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   651
     the returned value is one of
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   652
	#left           place element at the left
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   653
	#leftSpace      place element at the left, offset by horizontalSpace
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   654
	#center         place elements horizontally centered; ignore horizontalSpace
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   655
	#right          place it at the right
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   656
	#rightSpace     place it at the right, offset by horizontalSpace
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   657
	#fit            resize elements horizontally to fit this panel; ignore horizontalSpace
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   658
	#fitSpace       like #fit, but add spacing; ignore horizontalSpace
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   659
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   660
	#leftMax        like #left, but resize elements to max of them
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   661
	#leftSpaceMax   like #leftSpace, but resize elements
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   662
	#centerMax      like #center, but resize elements
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   663
	#rightMax       like #right, but resize elements to max of them
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   664
	#rightSpaceMax  like #rightSpace, but resize elements
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   665
      the default is #centered
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   666
    "
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   667
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   668
    ^ hLayout
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   669
!
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   670
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   671
horizontalLayout:aSymbol
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   672
    "change the horizontal layout as symbol.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   673
     The argument, aSymbol must be one of:
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   674
	#left           place element at the left
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   675
	#leftSpace      place element at the left, offset by horizontalSpace
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   676
	#center         place elements horizontally centered; ignore horizontalSpace
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   677
	#right          place it at the right
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   678
	#rightSpace     place it at the right, offset by horizontalSpace
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   679
	#fit            resize elements horizontally to fit this panel; ignore horizontalSpace
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   680
	#fitSpace       like #fit, but add spacing; ignore horizontalSpace
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   681
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   682
	#leftMax        like #left, but resize elements to max of them
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   683
	#leftSpaceMax   like #leftSpace, but resize elements
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   684
	#centerMax      like #center, but resize elements
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   685
	#rightMax       like #right, but resize elements to max of them
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   686
	#rightSpaceMax  like #rightSpace, but resize elements
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   687
      the default (if never changed) is #centered
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   688
    "
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   689
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   690
    (hLayout ~~ aSymbol) ifTrue:[
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   691
	hLayout := aSymbol.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   692
	self layoutChanged
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   693
    ]
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   694
!
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   695
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   696
layout:something
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   697
    "OBSOLETE compatibility interface. Will vanish.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   698
     leftover for historic reasons - do not use any more.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   699
     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
   700
2370
d118a160afbe Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 2305
diff changeset
   701
    <resource:#obsolete>
d118a160afbe Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 2305
diff changeset
   702
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   703
    something isLayout ifTrue:[^ super layout:something].
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   704
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   705
    self obsoleteMethodWarning:'use #verticalLayout:'.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   706
    ^ self verticalLayout:something
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   707
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   708
    "Modified: 31.8.1995 / 23:08:54 / claus"
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   709
!
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   710
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   711
rowHeight:something
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   712
    rowHeight := something.
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   713
!
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   714
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   715
verticalLayout
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   716
    "return the vertical layout as a symbol.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   717
     the returned value is one of
1417
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   718
	#top            arrange elements at the top
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   719
	#topSpace       arrange elements at the top, start with spacing
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   720
	#bottom         arrange elements at the bottom
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   721
	#bottomSpace    arrange elements at the bottom, start with spacing
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   722
	#center         arrange elements in the center; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   723
	#spread         spread elements evenly; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   724
	#spreadSpace    spread elements evenly with spacing at ends; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   725
	#fit            like #spread, but resize elements for tight packing; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   726
	#fitSpace       like #fit, with spacing; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   727
	#topFit         like #top, but resize the last element to fit
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   728
	#topSpaceFit    like #topSpace, but resize the last element to fit
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   729
	#bottomFit      like #bottom, but resize the first element to fit
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   730
	#bottomSpaceFit like #bottomSpace, but extend the first element to fit
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   731
      the default is #centered
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   732
    "
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   733
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   734
    ^ vLayout
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   735
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   736
    "Modified: 17.8.1997 / 15:20:13 / cg"
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   737
!
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   738
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   739
verticalLayout:aSymbol
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   740
    "change the vertical layout as a symbol.
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   741
     The argument, aSymbol must be one of:
1417
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   742
	#top            arrange elements at the top
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   743
	#topSpace       arrange elements at the top, start with spacing
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   744
	#bottom         arrange elements at the bottom
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   745
	#bottomSpace    arrange elements at the bottom, start with spacing
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   746
	#center         arrange elements in the center; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   747
	#spread         spread elements evenly; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   748
	#spreadSpace    spread elements evenly with spacing at ends; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   749
	#fit            like #spread, but resize elements for tight packing; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   750
	#fitSpace       like #fit, with spacing; ignore verticalSpace
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   751
	#topFit         like #top, but resize the last element to fit
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   752
	#topSpaceFit    like #topSpace, but resize the last element to fit
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   753
	#bottomFit      like #bottom, but resize the first element to fit
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   754
	#bottomSpaceFit like #bottomSpace, but extend the first element to fit
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   755
      the default (if never changed) is #centered
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   756
    "
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   757
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   758
    (vLayout ~~ aSymbol) ifTrue:[
1417
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   759
	vLayout := aSymbol.
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   760
	self layoutChanged
202
01f3cbb8e20e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   761
    ]
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   762
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   763
    "Modified: 17.8.1997 / 15:19:58 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   764
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   765
6747
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   766
!VerticalPanelView methodsFor:'accessing-visibility'!
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   767
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   768
beVisible
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   769
    "after making the views visible check the vertical layout"
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   770
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   771
    super beVisible.
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   772
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   773
    (realized and:[OperatingSystem isMSWINDOWSlike])
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   774
        ifFalse:[ ^ self ].
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   775
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   776
    self sensor enqueueMessage:#beVisiblePostUpdate for:self.
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   777
!
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   778
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   779
beVisiblePostUpdate
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   780
    "after making the views visible check the vertical layout"
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   781
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   782
   | sviews |
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   783
6748
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   784
    storedPreferredHeight isNil ifTrue:[ storedPreferredHeight := IdentityDictionary new ].
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   785
    
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   786
    storedPreferredHeight keysDo:[: eachView |
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   787
        (subViews includes: eachView) ifFalse:[
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   788
            sviews isNil ifTrue:[ sviews := OrderedCollection new ].
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   789
            sviews add: eachView
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   790
        ]
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   791
    ].
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   792
    sviews size > 0 ifTrue:[
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   793
        sviews do:[: eachView | storedPreferredHeight removeKey: eachView ifAbsent:nil ].
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   794
    ].
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   795
    
6747
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   796
    self isVisible ifFalse:[ ^ self ].
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   797
    sviews := self subViewsToConsider.
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   798
    sviews size > 1 ifFalse:[ ^ self].
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   799
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   800
    mustRearrange := true.
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   801
    sviews do:[: eachChild |
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   802
        eachChild height: 0.
6748
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   803
        eachChild height: (storedPreferredHeight at: eachChild ifAbsent:[ eachChild computePreferredExtent y ]).
6747
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   804
    ].
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   805
    mustRearrange := true.
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   806
    self setChildPositions.
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   807
    mustRearrange := false.
6748
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   808
!
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   809
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   810
storePreferredHeight: aHeight for: aView
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   811
    (aView isView and:[aView superView == self])
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   812
       ifFalse:[ ^ self ].
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   813
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   814
    "/ only used for windows
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   815
    OperatingSystem isMSWINDOWSlike ifFalse:[ ^ self ].
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   816
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   817
    storedPreferredHeight isNil ifTrue:[storedPreferredHeight := IdentityDictionary new ].
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   818
    
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   819
    (aHeight isInteger and:[aHeight > 0 ])
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   820
        ifTrue: [ storedPreferredHeight at: aView put: aHeight ]
9669c3f0bc4b #BUGFIX by ca
ca
parents: 6747
diff changeset
   821
        ifFalse:[ storedPreferredHeight removeKey: aView ifAbsent: nil ].
6747
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   822
! !
121b6e62d393 #BUGFIX by ca
ca
parents: 6720
diff changeset
   823
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   824
!VerticalPanelView methodsFor:'layout'!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   825
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   826
setChildPositions
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   827
    "(re)compute position of every child"
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   828
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   829
    |ypos space sumOfHeights numChilds l hEach hInside hL vL
4562
45ac476a6250 Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Stefan Vogel <sv@exept.de>
parents: 4021
diff changeset
   830
     maxWidth maxHeight resizeToMaxV resizeToMaxH m2 subViews restHeight y2 bw|
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   831
1417
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   832
    subViews := self subViewsToConsider.
6720
30dc6274571a #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 6495
diff changeset
   833
    subViews isEmptyOrNil ifTrue:[
30dc6274571a #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 6495
diff changeset
   834
        ^ self
30dc6274571a #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 6495
diff changeset
   835
    ].
1042
5914ecc423e1 care for sizing with no subviews;
ca
parents: 1038
diff changeset
   836
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
   837
    bw := self borderWidth.
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
   838
3502
5dd1d5b01e4d changed #setChildPositions
ca
parents: 3118
diff changeset
   839
"/    self extentChangedFlag ifTrue:[
5dd1d5b01e4d changed #setChildPositions
ca
parents: 3118
diff changeset
   840
"/        ext := self computeExtent.
5dd1d5b01e4d changed #setChildPositions
ca
parents: 3118
diff changeset
   841
"/        width := ext x.
5dd1d5b01e4d changed #setChildPositions
ca
parents: 3118
diff changeset
   842
"/        height := ext y.
5dd1d5b01e4d changed #setChildPositions
ca
parents: 3118
diff changeset
   843
"/    ].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   844
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   845
    space := verticalSpace.
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   846
    numChilds := subViews size.
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   847
380
6eb402d01ae0 looks better if panels level is ~~ 0 AND subview has 0 level
Claus Gittinger <cg@exept.de>
parents: 341
diff changeset
   848
    m2 := margin * 2.
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
   849
    hInside := height - m2 + (bw*2) - subViews last borderWidth.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   850
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   851
    hL := hLayout.
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   852
    vL := vLayout.
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   853
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   854
    resizeToMaxV := false.
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   855
    (vL endsWith:'Max') ifTrue:[
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   856
        resizeToMaxV := true.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   857
        hEach := maxHeight := subViews inject:0 into:[:maxSoFar :child | maxSoFar max:child heightIncludingBorder].
4562
45ac476a6250 Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Stefan Vogel <sv@exept.de>
parents: 4021
diff changeset
   858
        vL := (vL copyButLast:3) asSymbol.
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   859
    ].
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   860
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   861
    numChilds == 1 ifTrue:[
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   862
        (vL == #topFit or:[vL == #bottomFit]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   863
            vL := #fit
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   864
        ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   865
        (vL == #topSpaceFit or:[vL == #bottomSpaceFit]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   866
            vL := #fitSpace
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   867
        ].
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   868
    ].
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   869
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   870
    vL == #fitSpace ifTrue:[
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   871
        "
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   872
         adjust childs extents and set origins.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   873
         Be careful to avoid accumulation of rounding errors
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   874
        "
6173
f088c49c7389 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   875
        hEach := (hInside - ((numChilds + 1) * space)) / numChilds.
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
   876
        ypos := space + margin - bw.
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
   877
    ] ifFalse:[
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   878
        vL == #fit ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   879
            "
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   880
             adjust childs extents and set origins.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   881
             Be careful to avoid accumulation of rounding errors
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   882
            "
6173
f088c49c7389 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
   883
            hEach := (hInside - ((numChilds - 1) * space)) / numChilds.
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
   884
            ypos := margin - bw.
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   885
        ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   886
            l := vL.
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   887
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   888
            "
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   889
             compute net height needed
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   890
            "
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   891
            resizeToMaxV ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   892
                sumOfHeights := subViews inject:0 into:[:sumSoFar :child | sumSoFar + maxHeight + (child borderWidth*2)].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   893
            ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   894
                sumOfHeights := subViews inject:0 into:[:sumSoFar :child | sumSoFar + child heightIncludingBorder].
2031
6f28b9951713 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   895
6f28b9951713 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   896
                "/ adjust - do not include height of last(first) element if doing a fit
6f28b9951713 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   897
                (vL == #topFit or:[vL == #topSpaceFit]) ifTrue:[
6f28b9951713 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   898
                    sumOfHeights := sumOfHeights - subViews last heightIncludingBorder.
6f28b9951713 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   899
                ] ifFalse:[
6f28b9951713 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   900
                    (vL == #bottomFit or:[vL == #bottomSpaceFit]) ifTrue:[
6f28b9951713 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   901
                        sumOfHeights := sumOfHeights - subViews first heightIncludingBorder.
6f28b9951713 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   902
                    ]
6f28b9951713 oops - bug in setChildPositions leading to recursion
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   903
                ].
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   904
            ].
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
   905
5425
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
   906
            restHeight := hInside - sumOfHeights "- (numChilds-1*space)".
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   907
            ((l == #center) and:[numChilds == 1]) ifTrue:[l := #spread].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   908
            (l == #spread and:[numChilds == 1]) ifTrue:[l := #spreadSpace].
59
450ce95a72a4 *** empty log message ***
claus
parents: 38
diff changeset
   909
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   910
            "
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   911
             compute position of topmost subview and space between them;
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   912
             if they do hardly fit, leave no space between them 
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   913
            "
3675
dc94ab5c7abb spacing computation fixed (boundary condition, spacing reduction)
Claus Gittinger <cg@exept.de>
parents: 3529
diff changeset
   914
            ((sumOfHeights > (height - m2))
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   915
            and:[l ~~ #fixTopSpace and:[l ~~ #fixTop]]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   916
                "
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   917
                 if we have not enough space for all the elements, 
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   918
                 fill them tight, and show what can be shown (at least)
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   919
                "
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   920
                ypos := margin.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   921
                space := 0
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   922
            ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   923
                l == #fixTopSpace ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   924
                    l := #topSpace
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   925
                ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   926
                    l == #fixTop ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   927
                        l := #top 
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   928
                    ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   929
                ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   930
                ((l == #bottom) or:[l == #bottomSpace
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   931
                or:[l == #bottomFit or:[l == #bottomSpaceFit]]]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   932
                    ypos := restHeight - (space * (numChilds - 1)).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   933
"/
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
   934
"/                    bw == 0 ifTrue:[
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   935
"/                        ypos := ypos + space 
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   936
"/                    ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   937
"/           
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   938
                    (l == #bottomSpace
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   939
                    or:[l == #bottomSpaceFit]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   940
                        ypos >= space ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   941
                            ypos := ypos - space
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   942
                        ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   943
                    ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   944
                    ypos := ypos - margin.
77
565b052f5277 *** empty log message ***
claus
parents: 65
diff changeset
   945
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   946
                    ypos < 0 ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   947
                        space := space min:(restHeight // (numChilds + 1)).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   948
                        ypos := restHeight - (space * numChilds).
3867
4ef489b98751 bottomFit bug
Claus Gittinger <cg@exept.de>
parents: 3771
diff changeset
   949
                    ].
4ef489b98751 bottomFit bug
Claus Gittinger <cg@exept.de>
parents: 3771
diff changeset
   950
                    y2 := ypos.
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   951
                ] ifFalse: [
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   952
                    (l == #spread) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   953
                        space := (restHeight - m2) // (numChilds - 1).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   954
                        ypos := margin.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   955
                        (space == 0) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   956
                            ypos := restHeight // 2
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   957
                        ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   958
                    ] ifFalse: [
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   959
                      (l == #spreadSpace) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   960
                        space := (restHeight - m2) // (numChilds + 1).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   961
                        ypos := space + margin.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   962
                        (space == 0) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   963
                            ypos := restHeight // 2
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   964
                        ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   965
                      ] ifFalse: [
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   966
                        ((l == #top) or:[l == #topSpace
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   967
                        or:[l == #topFit or:[l == #topSpaceFit]]]) ifTrue:[
3675
dc94ab5c7abb spacing computation fixed (boundary condition, spacing reduction)
Claus Gittinger <cg@exept.de>
parents: 3529
diff changeset
   968
                            (l == #top or:[l == #topFit]) ifTrue:[
3679
3e521d5a375e changed #setChildPositions
Claus Gittinger <cg@exept.de>
parents: 3678
diff changeset
   969
                                space := space min:((restHeight - m2) // numChilds).
3675
dc94ab5c7abb spacing computation fixed (boundary condition, spacing reduction)
Claus Gittinger <cg@exept.de>
parents: 3529
diff changeset
   970
                            ] ifFalse:[
3679
3e521d5a375e changed #setChildPositions
Claus Gittinger <cg@exept.de>
parents: 3678
diff changeset
   971
                                space := space min:((restHeight - m2) // (numChilds + 1)).
3675
dc94ab5c7abb spacing computation fixed (boundary condition, spacing reduction)
Claus Gittinger <cg@exept.de>
parents: 3529
diff changeset
   972
                            ].
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   973
                            (vL == #fixTop or:[vL == #fixTopSpace]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   974
                                space := space max:verticalSpace.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   975
                            ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   976
                                space := space max:0.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   977
                            ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   978
                            (l == #topSpace or:[l == #topSpaceFit]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   979
                                ypos := space + margin.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   980
                            ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   981
                                "/
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   982
                                "/ if the very first view has a 0-level AND
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   983
                                "/ my level is non-zero, begin with margin
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   984
                                "/
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   985
                                true "(margin ~~ 0 and:[subViews first level == 0])" ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   986
                                    ypos := margin
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   987
                                ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   988
                                    ypos := 0
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   989
                                ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   990
                            ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   991
                        ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   992
                            "center"
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   993
                            ypos := (restHeight - ((numChilds - 1) * space)) // 2.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   994
                            ypos < 0 ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   995
                                space := restHeight // (numChilds + 1).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   996
                                ypos := (restHeight - ((numChilds - 1) * space)) // 2.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   997
                            ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   998
                        ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
   999
                      ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1000
                    ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1001
                ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1002
            ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1003
        ].
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
  1004
    ].
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
  1005
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1006
    resizeToMaxH := false.
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1007
    (hL endsWith:'Max') ifTrue:[
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1008
        resizeToMaxH := true.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1009
        maxWidth := subViews inject:0 into:[:maxSoFar :child | maxSoFar max:child widthIncludingBorder].
4562
45ac476a6250 Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Stefan Vogel <sv@exept.de>
parents: 4021
diff changeset
  1010
        hL := (hL copyButLast:3) asSymbol.
127
claus
parents: 125
diff changeset
  1011
    ].
claus
parents: 125
diff changeset
  1012
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
  1013
    "
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
  1014
     now set positions
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
  1015
    "
133
claus
parents: 131
diff changeset
  1016
    subViews keysAndValuesDo:[:index :child |
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1017
        |xpos advance bwChild wChild newWChild x2|
125
claus
parents: 77
diff changeset
  1018
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1019
        wChild := child widthIncludingBorder.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1020
        bwChild := child borderWidth.
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
  1021
3118
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2387
diff changeset
  1022
        elementsChangeSize ifTrue:[
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2387
diff changeset
  1023
            "to avoid a recursion when we change the elements size"
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2387
diff changeset
  1024
            child removeDependent:self.
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2387
diff changeset
  1025
        ].
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1026
        resizeToMaxH ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1027
            child width:(wChild := maxWidth - (bwChild  * 2)).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1028
        ].
127
claus
parents: 125
diff changeset
  1029
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1030
        hL == #left ifTrue:[
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  1031
            xpos := 0 - bw + margin.
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1032
        ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1033
            hL == #leftSpace ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1034
                xpos := horizontalSpace + margin
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1035
            ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1036
                hL == #right ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1037
                    xpos := width - wChild - margin
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1038
                ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1039
                    hL == #rightSpace ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1040
                        xpos := width - horizontalSpace - wChild - margin.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1041
                    ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1042
                        hL == #fitSpace ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1043
                            xpos := horizontalSpace + margin.
6173
f088c49c7389 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
  1044
                            newWChild := width - m2 - ((horizontalSpace + bwChild) * 2)
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1045
                        ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1046
                            hL == #fit ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1047
                                newWChild := width "- (bwChild * 2)".
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  1048
                                bw == 0 ifTrue:[
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1049
                                    newWChild :=  newWChild - (bwChild * 2)
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1050
                                ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1051
                                true "child level == 0" ifTrue:[
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  1052
                                    xpos := margin - bw.
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1053
                                    newWChild := newWChild - m2
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1054
                                ] ifFalse:[
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  1055
                                    xpos := 0 - bw. 
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1056
                                ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1057
                            ] ifFalse:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1058
                                "centered"
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1059
                                 xpos := margin + ((width - m2 - wChild) // 2).
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1060
                            ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1061
                        ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1062
                    ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1063
                ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1064
            ]
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1065
        ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1066
        newWChild notNil ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1067
            child width:newWChild
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1068
        ].
63
f4eaf04d1eaf *** empty log message ***
claus
parents: 59
diff changeset
  1069
793
12396da0e36e care for borderWidths
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
  1070
"/        (xpos < 0) ifTrue:[ xpos := 0 ].
12396da0e36e care for borderWidths
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
  1071
2033
fc16e79f649b size computation with bordered components
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
  1072
        x2 := xpos + child width - 1.
380
6eb402d01ae0 looks better if panels level is ~~ 0 AND subview has 0 level
Claus Gittinger <cg@exept.de>
parents: 341
diff changeset
  1073
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
  1074
        rowHeight notNil ifTrue:[
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
  1075
            child origin:(xpos@ypos).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
  1076
            advance := rowHeight
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1077
        ] ifFalse:[
3529
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
  1078
            (vL == #fit 
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
  1079
            or:[vL == #fitSpace
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
  1080
            or:[resizeToMaxV]]) ifTrue:[
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
  1081
                child origin:(xpos @ (ypos rounded))
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
  1082
                      corner:(x2 @ (ypos + hEach - bwChild - 1) rounded).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
  1083
                advance := hEach
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
  1084
            ] ifFalse:[
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
  1085
                child origin:(xpos@ypos).
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
  1086
                advance := child heightIncludingBorder
bcf8c2053ac4 added rowHeight attribute
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
  1087
            ].
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1088
        ].
133
claus
parents: 131
diff changeset
  1089
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1090
        index == numChilds ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1091
            |y|
133
claus
parents: 131
diff changeset
  1092
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1093
            (vL == #topFit or:[vL == #topSpaceFit]) ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1094
                y := height - margin - 1.
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1095
                vL == #topSpaceFit ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1096
                    y := y - space
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1097
                ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1098
                child corner:x2 @ y
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1099
            ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1100
        ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1101
        index == 1 ifTrue:[
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1102
            (vL == #bottomFit or:[vL == #bottomSpaceFit]) ifTrue:[
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  1103
                ypos := margin + 0 + (child borderWidth * 2) - bw.
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1104
                vL == #bottomSpaceFit ifTrue:[
3118
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2387
diff changeset
  1105
                    ypos := ypos + space
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1106
                ].
3931
cdc9592de08d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3867
diff changeset
  1107
                advance := y2 ? 0.
3118
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2387
diff changeset
  1108
                child origin:((child origin x) @ ypos)
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2387
diff changeset
  1109
                      corner:((child corner x) @ (ypos+advance))
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1110
            ].
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1111
        ].
1307
f2ce08878d5e added #bottomFit & #bottomSpaceFit layouts
Claus Gittinger <cg@exept.de>
parents: 1291
diff changeset
  1112
1431
fd1e74d673ae really care for margins when doing childPositions
Claus Gittinger <cg@exept.de>
parents: 1417
diff changeset
  1113
        ypos := ypos + advance + space.
3118
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2387
diff changeset
  1114
        elementsChangeSize ifTrue:[
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2387
diff changeset
  1115
            "reinstall dependency that we removed above"
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2387
diff changeset
  1116
            child addDependent:self.
996b7fc6dee7 1. Avoid endless recursion with #elementsChangesSize.
Stefan Vogel <sv@exept.de>
parents: 2387
diff changeset
  1117
        ].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1118
    ]
155
claus
parents: 133
diff changeset
  1119
3504
2395db2daa9e setChildPositions fix with bottomFit
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  1120
    "Modified: / 04-09-1995 / 18:43:29 / claus"
2395db2daa9e setChildPositions fix with bottomFit
Claus Gittinger <cg@exept.de>
parents: 3502
diff changeset
  1121
    "Modified: / 10-10-2007 / 13:47:56 / cg"
6173
f088c49c7389 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5931
diff changeset
  1122
    "Modified (format): / 20-06-2017 / 10:46:08 / cg"
6720
30dc6274571a #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 6495
diff changeset
  1123
    "Modified: / 24-10-2019 / 16:04:56 / Stefan Vogel"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1124
! !
125
claus
parents: 77
diff changeset
  1125
claus
parents: 77
diff changeset
  1126
!VerticalPanelView methodsFor:'queries'!
claus
parents: 77
diff changeset
  1127
6495
27d97d8e5ae1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6173
diff changeset
  1128
computePreferredExtent
125
claus
parents: 77
diff changeset
  1129
    "return a good extent, one that makes subviews fit"
claus
parents: 77
diff changeset
  1130
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  1131
    |sumOfHeights maxWidth maxHeight m2 subViews bw|
125
claus
parents: 77
diff changeset
  1132
1417
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1133
    subViews := self subViewsToConsider.
e9dffd6767a6 added ignoreInvisibleComponents support
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1134
    (subViews size == 0) ifTrue:[
6495
27d97d8e5ae1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6173
diff changeset
  1135
        ^ super computePreferredExtent.
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1136
        "/ ^ horizontalSpace @ verticalSpace].
1038
c6d8eb89d260 useful preferredExtent if no subviews.
ca
parents: 1000
diff changeset
  1137
    ].
c6d8eb89d260 useful preferredExtent if no subviews.
ca
parents: 1000
diff changeset
  1138
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  1139
    bw := self borderWidth.
125
claus
parents: 77
diff changeset
  1140
claus
parents: 77
diff changeset
  1141
    "compute net height needed"
claus
parents: 77
diff changeset
  1142
claus
parents: 77
diff changeset
  1143
    sumOfHeights := 0.
claus
parents: 77
diff changeset
  1144
    maxWidth := 0.
claus
parents: 77
diff changeset
  1145
    maxHeight := 0.
claus
parents: 77
diff changeset
  1146
claus
parents: 77
diff changeset
  1147
    subViews do:[:child |
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1148
        |childsPreference|
125
claus
parents: 77
diff changeset
  1149
5931
e5587ebe55e3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5921
diff changeset
  1150
        child realized ifTrue:[
e5587ebe55e3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5921
diff changeset
  1151
            childsPreference := child extent max:child preferredExtent.
3675
dc94ab5c7abb spacing computation fixed (boundary condition, spacing reduction)
Claus Gittinger <cg@exept.de>
parents: 3529
diff changeset
  1152
        ] ifFalse:[
dc94ab5c7abb spacing computation fixed (boundary condition, spacing reduction)
Claus Gittinger <cg@exept.de>
parents: 3529
diff changeset
  1153
            childsPreference := child preferredExtent.
dc94ab5c7abb spacing computation fixed (boundary condition, spacing reduction)
Claus Gittinger <cg@exept.de>
parents: 3529
diff changeset
  1154
        ].
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1155
        sumOfHeights := sumOfHeights + childsPreference y.
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1156
        maxHeight := maxHeight max:childsPreference y.
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1157
        maxWidth := maxWidth max:childsPreference x.
125
claus
parents: 77
diff changeset
  1158
claus
parents: 77
diff changeset
  1159
"/        sumOfHeights := sumOfHeights + child heightIncludingBorder.
claus
parents: 77
diff changeset
  1160
"/        maxWidth := maxWidth max:(child widthIncludingBorder).
claus
parents: 77
diff changeset
  1161
"/        maxHeight := maxHeight max:(child heightIncludingBorder).
claus
parents: 77
diff changeset
  1162
    ].
321
00c17944cb00 preferredExtent computation used hSpace instead of vSpace
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
  1163
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  1164
    bw ~~ 0 ifTrue:[
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1165
        sumOfHeights := sumOfHeights + (verticalSpace * 2).
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1166
        maxWidth := maxWidth + (horizontalSpace * 2).
125
claus
parents: 77
diff changeset
  1167
    ].
321
00c17944cb00 preferredExtent computation used hSpace instead of vSpace
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
  1168
125
claus
parents: 77
diff changeset
  1169
    (vLayout == #fit or:[vLayout == #fitSpace]) ifTrue:[
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1170
        sumOfHeights := maxHeight * subViews size.
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  1171
        bw ~~ 0 ifTrue:[
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1172
            sumOfHeights := sumOfHeights + (verticalSpace * 2).
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1173
        ].
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1174
        vLayout == #fitSpace ifTrue:[
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1175
            "/ care for spacing ...
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1176
            sumOfHeights := sumOfHeights + (verticalSpace * (subViews size + 1)).
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1177
        ].
125
claus
parents: 77
diff changeset
  1178
    ] ifFalse:[
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1179
        sumOfHeights := sumOfHeights + ((subViews size - 1) * verticalSpace).
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1180
        ((vLayout == #topSpace) or:[vLayout == #bottomSpace]) ifTrue:[
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1181
            sumOfHeights := sumOfHeights + verticalSpace
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1182
        ] ifFalse:[
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1183
            ((vLayout == #center) or:[vLayout == #spread]) ifTrue:[
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1184
                sumOfHeights := sumOfHeights + (verticalSpace * 2)
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1185
            ]
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1186
        ].
125
claus
parents: 77
diff changeset
  1187
    ].
claus
parents: 77
diff changeset
  1188
claus
parents: 77
diff changeset
  1189
    ((hLayout == #leftSpace) or:[hLayout == #rightSpace]) ifTrue:[
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1190
        maxWidth := maxWidth + horizontalSpace
125
claus
parents: 77
diff changeset
  1191
    ] ifFalse:[
2387
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1192
        ((hLayout == #fitSpace) or:[hLayout == #center]) ifTrue:[
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1193
            maxWidth := maxWidth + (horizontalSpace * 2)
c589e85a4f43 prefExtent computation was wrong for fitSpace
Claus Gittinger <cg@exept.de>
parents: 2370
diff changeset
  1194
        ]        
125
claus
parents: 77
diff changeset
  1195
    ].
380
6eb402d01ae0 looks better if panels level is ~~ 0 AND subview has 0 level
Claus Gittinger <cg@exept.de>
parents: 341
diff changeset
  1196
    m2 := margin * 2.
6eb402d01ae0 looks better if panels level is ~~ 0 AND subview has 0 level
Claus Gittinger <cg@exept.de>
parents: 341
diff changeset
  1197
    ^ (maxWidth + m2) @ (sumOfHeights + m2)
321
00c17944cb00 preferredExtent computation used hSpace instead of vSpace
Claus Gittinger <cg@exept.de>
parents: 205
diff changeset
  1198
6495
27d97d8e5ae1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6173
diff changeset
  1199
    "Created: / 09-11-2018 / 20:03:55 / Claus Gittinger"
125
claus
parents: 77
diff changeset
  1200
! !
claus
parents: 77
diff changeset
  1201
980
6079922a5519 eliminated references to subViews instance variable (will vanish)
Claus Gittinger <cg@exept.de>
parents: 797
diff changeset
  1202
!VerticalPanelView class methodsFor:'documentation'!
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 202
diff changeset
  1203
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 202
diff changeset
  1204
version
5425
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
  1205
    ^ '$Header$'
4021
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  1206
!
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  1207
48c8526db338 no more direct accesses to borderWidth and borderColor
Claus Gittinger <cg@exept.de>
parents: 3931
diff changeset
  1208
version_CVS
5425
Claus Gittinger <cg@exept.de>
parents: 5228
diff changeset
  1209
    ^ '$Header$'
205
6814c0bf8df8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 202
diff changeset
  1210
! !
4562
45ac476a6250 Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Stefan Vogel <sv@exept.de>
parents: 4021
diff changeset
  1211