1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
object ResizeElementsForm: TResizeElementsForm
Left = 728
Height = 328
Top = 319
Width = 455
Caption = 'Resize selected elements'
ClientHeight = 328
ClientWidth = 455
Position = poOwnerFormCenter
LCLVersion = '1.9.0.0'
object BPResize: TButtonPanel
Left = 6
Height = 42
Top = 280
Width = 443
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 0
ShowButtons = [pbOK, pbCancel]
end
object GBHorizontal: TGroupBox
Left = 8
Height = 256
Top = 8
Width = 184
Caption = 'Horizontal'
ClientHeight = 238
ClientWidth = 182
TabOrder = 1
object RBHNone: TRadioButton
Left = 18
Height = 22
Top = 12
Width = 54
Caption = 'None'
Checked = True
OnClick = RBHFixedClick
TabOrder = 0
TabStop = True
end
object RBHSmallest: TRadioButton
Left = 18
Height = 22
Top = 50
Width = 72
Caption = 'Smallest'
OnClick = RBHFixedClick
TabOrder = 1
end
object RBHLargest: TRadioButton
Left = 18
Height = 22
Top = 88
Width = 66
Caption = 'Largest'
OnClick = RBHFixedClick
TabOrder = 2
end
object RBHFixed: TRadioButton
Left = 18
Height = 22
Top = 128
Width = 78
Caption = 'Fixed size'
OnClick = RBHFixedClick
TabOrder = 4
end
object FSEHorizontal: TFloatSpinEdit
Left = 48
Height = 27
Top = 160
Width = 90
Increment = 1
MaxValue = 100
MinValue = 0
TabOrder = 5
Value = 1
end
object RBHParentSize: TRadioButton
Left = 18
Height = 22
Top = 208
Width = 86
Caption = 'Parent size'
OnClick = RBHFixedClick
TabOrder = 3
end
end
object GBVertical: TGroupBox
Left = 208
Height = 248
Top = 8
Width = 176
Caption = 'Vertical'
ClientHeight = 230
ClientWidth = 174
TabOrder = 2
object RBVNone: TRadioButton
Left = 18
Height = 22
Top = 12
Width = 54
Caption = 'None'
Checked = True
OnClick = RBVNoneClick
TabOrder = 0
TabStop = True
end
object RBVSmallest: TRadioButton
Left = 18
Height = 22
Top = 50
Width = 72
Caption = 'Smallest'
OnClick = RBVNoneClick
TabOrder = 1
end
object RBVLargest: TRadioButton
Left = 18
Height = 22
Top = 88
Width = 66
Caption = 'Largest'
OnClick = RBVNoneClick
TabOrder = 2
end
object RBVFixed: TRadioButton
Left = 18
Height = 22
Top = 128
Width = 78
Caption = 'Fixed size'
OnClick = RBVNoneClick
TabOrder = 3
end
object FSEVertical: TFloatSpinEdit
Left = 48
Height = 27
Top = 160
Width = 90
Increment = 1
MaxValue = 100
MinValue = 0
TabOrder = 4
Value = 1
end
object RBVParentSize: TRadioButton
Left = 18
Height = 22
Top = 208
Width = 86
Caption = 'Parent size'
OnClick = RBHFixedClick
TabOrder = 5
end
end
end
|