mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-15 18:39:09 +02:00
IDE: improved strings property editor layout (#8770) from Graeme
git-svn-id: trunk@11011 -
This commit is contained in:
parent
25c19fafdd
commit
c5db4d9efc
@ -1,97 +1,110 @@
|
|||||||
object StringsPropEditorFrm: TStringsPropEditorFrm
|
object StringsPropEditorFrm: TStringsPropEditorFrm
|
||||||
|
Left = 333
|
||||||
|
Height = 302
|
||||||
|
Top = 169
|
||||||
|
Width = 400
|
||||||
|
HorzScrollBar.Page = 399
|
||||||
|
VertScrollBar.Page = 301
|
||||||
ActiveControl = Memo
|
ActiveControl = Memo
|
||||||
Caption = 'StringsPropEditorFrm'
|
Caption = 'StringsPropEditorFrm'
|
||||||
ClientHeight = 300
|
|
||||||
ClientWidth = 400
|
|
||||||
Constraints.MinHeight = 160
|
Constraints.MinHeight = 160
|
||||||
Constraints.MinWidth = 180
|
Constraints.MinWidth = 180
|
||||||
OnCreate = FormCreate
|
OnCreate = FormCreate
|
||||||
PixelsPerInch = 112
|
|
||||||
Position = poScreenCenter
|
Position = poScreenCenter
|
||||||
HorzScrollBar.Page = 399
|
|
||||||
VertScrollBar.Page = 299
|
|
||||||
Left = 290
|
|
||||||
Height = 300
|
|
||||||
Top = 153
|
|
||||||
Width = 400
|
|
||||||
object GroupBox1: TGroupBox
|
object GroupBox1: TGroupBox
|
||||||
|
AnchorSideBottom.Control = OKButton
|
||||||
|
Left = 6
|
||||||
|
Height = 259
|
||||||
|
Top = 6
|
||||||
|
Width = 388
|
||||||
Align = alTop
|
Align = alTop
|
||||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||||
BorderSpacing.Around = 6
|
BorderSpacing.Around = 6
|
||||||
ClientHeight = 238
|
|
||||||
ClientWidth = 384
|
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
AnchorSideBottom.Control = OKButton
|
|
||||||
Left = 6
|
|
||||||
Height = 255
|
|
||||||
Top = 6
|
|
||||||
Width = 388
|
|
||||||
object StatusLabel: TLabel
|
object StatusLabel: TLabel
|
||||||
|
AnchorSideBottom.Control = GroupBox1
|
||||||
|
AnchorSideBottom.Side = asrBottom
|
||||||
|
Left = 9
|
||||||
|
Height = 17
|
||||||
|
Top = 215
|
||||||
|
Width = 87
|
||||||
Anchors = [akLeft, akBottom]
|
Anchors = [akLeft, akBottom]
|
||||||
BorderSpacing.Around = 6
|
BorderSpacing.Around = 6
|
||||||
Caption = 'StatusLabel'
|
Caption = 'StatusLabel'
|
||||||
Color = clNone
|
Color = clNone
|
||||||
ParentColor = False
|
ParentColor = False
|
||||||
Left = 9
|
|
||||||
Height = 14
|
|
||||||
Top = 216
|
|
||||||
Width = 57
|
|
||||||
end
|
end
|
||||||
object Memo: TMemo
|
object Memo: TMemo
|
||||||
|
AnchorSideBottom.Control = StatusLabel
|
||||||
|
Left = 6
|
||||||
|
Height = 203
|
||||||
|
Top = 6
|
||||||
|
Width = 274
|
||||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||||
BorderSpacing.Around = 6
|
BorderSpacing.Around = 6
|
||||||
OnChange = MemoChange
|
OnChange = MemoChange
|
||||||
ScrollBars = ssAutoBoth
|
ScrollBars = ssAutoBoth
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
WordWrap = False
|
WordWrap = False
|
||||||
Left = 6
|
|
||||||
Height = 206
|
|
||||||
Top = 6
|
|
||||||
Width = 290
|
|
||||||
end
|
end
|
||||||
object SortButton: TButton
|
object SortButton: TButton
|
||||||
Anchors = [akTop, akRight]
|
Left = 288
|
||||||
BorderSpacing.Around = 6
|
|
||||||
BorderSpacing.InnerBorder = 4
|
|
||||||
Caption = 'Sort'
|
|
||||||
OnClick = SortButtonClick
|
|
||||||
TabOrder = 1
|
|
||||||
Left = 304
|
|
||||||
Height = 25
|
Height = 25
|
||||||
Top = 6
|
Top = 6
|
||||||
Width = 75
|
Width = 75
|
||||||
|
Anchors = [akTop, akRight]
|
||||||
|
AutoSize = True
|
||||||
|
BorderSpacing.Around = 6
|
||||||
|
BorderSpacing.InnerBorder = 4
|
||||||
|
Caption = 'Sort'
|
||||||
|
Constraints.MaxHeight = 25
|
||||||
|
Constraints.MinHeight = 25
|
||||||
|
Constraints.MinWidth = 75
|
||||||
|
OnClick = SortButtonClick
|
||||||
|
TabOrder = 1
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
object OKButton: TBitBtn
|
object OKButton: TBitBtn
|
||||||
|
AnchorSideRight.Control = CancelButton
|
||||||
|
AnchorSideBottom.Control = Owner
|
||||||
|
AnchorSideBottom.Side = asrBottom
|
||||||
|
Left = 226
|
||||||
|
Height = 25
|
||||||
|
Top = 271
|
||||||
|
Width = 75
|
||||||
Anchors = [akRight, akBottom]
|
Anchors = [akRight, akBottom]
|
||||||
AutoSize = True
|
AutoSize = True
|
||||||
BorderSpacing.Around = 6
|
BorderSpacing.Around = 6
|
||||||
Caption = '&OK'
|
Caption = '&OK'
|
||||||
|
Constraints.MaxHeight = 25
|
||||||
|
Constraints.MinHeight = 25
|
||||||
|
Constraints.MinWidth = 75
|
||||||
Default = True
|
Default = True
|
||||||
Kind = bkOK
|
Kind = bkOK
|
||||||
ModalResult = 1
|
ModalResult = 1
|
||||||
NumGlyphs = 0
|
NumGlyphs = 0
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
Left = 338
|
|
||||||
Height = 28
|
|
||||||
Top = 267
|
|
||||||
Width = 55
|
|
||||||
end
|
end
|
||||||
object CancelButton: TBitBtn
|
object CancelButton: TBitBtn
|
||||||
|
AnchorSideRight.Control = Owner
|
||||||
|
AnchorSideRight.Side = asrBottom
|
||||||
|
AnchorSideBottom.Control = Owner
|
||||||
|
AnchorSideBottom.Side = asrBottom
|
||||||
|
Left = 307
|
||||||
|
Height = 25
|
||||||
|
Top = 271
|
||||||
|
Width = 87
|
||||||
Anchors = [akRight, akBottom]
|
Anchors = [akRight, akBottom]
|
||||||
AutoSize = True
|
AutoSize = True
|
||||||
BorderSpacing.Right = 6
|
|
||||||
BorderSpacing.Around = 6
|
BorderSpacing.Around = 6
|
||||||
Cancel = True
|
Cancel = True
|
||||||
Caption = 'Cancel'
|
Caption = 'Cancel'
|
||||||
|
Constraints.MaxHeight = 25
|
||||||
|
Constraints.MinHeight = 25
|
||||||
|
Constraints.MinWidth = 75
|
||||||
Kind = bkCancel
|
Kind = bkCancel
|
||||||
ModalResult = 2
|
ModalResult = 2
|
||||||
NumGlyphs = 0
|
NumGlyphs = 0
|
||||||
TabOrder = 2
|
TabOrder = 2
|
||||||
AnchorSideRight.Control = OKButton
|
|
||||||
Left = 249
|
|
||||||
Height = 28
|
|
||||||
Top = 267
|
|
||||||
Width = 77
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -1,32 +1,39 @@
|
|||||||
{ This is an automatically generated lazarus resource file }
|
{ This is an automatically generated lazarus resource file }
|
||||||
|
|
||||||
LazarusResources.Add('TStringsPropEditorFrm','FORMDATA',[
|
LazarusResources.Add('TStringsPropEditorFrm','FORMDATA',[
|
||||||
'TPF0'#21'TStringsPropEditorFrm'#20'StringsPropEditorFrm'#13'ActiveControl'#7
|
'TPF0'#21'TStringsPropEditorFrm'#20'StringsPropEditorFrm'#4'Left'#3'M'#1#6'He'
|
||||||
+#4'Memo'#7'Caption'#6#20'StringsPropEditorFrm'#12'ClientHeight'#3','#1#11'Cl'
|
+'ight'#3'.'#1#3'Top'#3#169#0#5'Width'#3#144#1#18'HorzScrollBar.Page'#3#143#1
|
||||||
+'ientWidth'#3#144#1#21'Constraints.MinHeight'#3#160#0#20'Constraints.MinWidt'
|
+#18'VertScrollBar.Page'#3'-'#1#13'ActiveControl'#7#4'Memo'#7'Caption'#6#20'S'
|
||||||
+'h'#3#180#0#8'OnCreate'#7#10'FormCreate'#13'PixelsPerInch'#2'p'#8'Position'#7
|
+'tringsPropEditorFrm'#21'Constraints.MinHeight'#3#160#0#20'Constraints.MinWi'
|
||||||
+#14'poScreenCenter'#18'HorzScrollBar.Page'#3#143#1#18'VertScrollBar.Page'#3
|
+'dth'#3#180#0#8'OnCreate'#7#10'FormCreate'#8'Position'#7#14'poScreenCenter'#0
|
||||||
+'+'#1#4'Left'#3'"'#1#6'Height'#3','#1#3'Top'#3#153#0#5'Width'#3#144#1#0#9'TG'
|
+#9'TGroupBox'#9'GroupBox1'#24'AnchorSideBottom.Control'#7#8'OKButton'#4'Left'
|
||||||
+'roupBox'#9'GroupBox1'#5'Align'#7#5'alTop'#7'Anchors'#11#5'akTop'#6'akLeft'#7
|
+#2#6#6'Height'#3#3#1#3'Top'#2#6#5'Width'#3#132#1#5'Align'#7#5'alTop'#7'Ancho'
|
||||||
+'akRight'#8'akBottom'#0#20'BorderSpacing.Around'#2#6#12'ClientHeight'#3#238#0
|
+'rs'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#20'BorderSpacing.Around'
|
||||||
+#11'ClientWidth'#3#128#1#8'TabOrder'#2#0#24'AnchorSideBottom.Control'#7#8'OK'
|
+#2#6#8'TabOrder'#2#0#0#6'TLabel'#11'StatusLabel'#24'AnchorSideBottom.Control'
|
||||||
+'Button'#4'Left'#2#6#6'Height'#3#255#0#3'Top'#2#6#5'Width'#3#132#1#0#6'TLabe'
|
+#7#9'GroupBox1'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#2#9#6'Heigh'
|
||||||
+'l'#11'StatusLabel'#7'Anchors'#11#6'akLeft'#8'akBottom'#0#20'BorderSpacing.A'
|
+'t'#2#17#3'Top'#3#215#0#5'Width'#2'W'#7'Anchors'#11#6'akLeft'#8'akBottom'#0
|
||||||
+'round'#2#6#7'Caption'#6#11'StatusLabel'#5'Color'#7#6'clNone'#11'ParentColor'
|
+#20'BorderSpacing.Around'#2#6#7'Caption'#6#11'StatusLabel'#5'Color'#7#6'clNo'
|
||||||
+#8#4'Left'#2#9#6'Height'#2#14#3'Top'#3#216#0#5'Width'#2'9'#0#0#5'TMemo'#4'Me'
|
+'ne'#11'ParentColor'#8#0#0#5'TMemo'#4'Memo'#24'AnchorSideBottom.Control'#7#11
|
||||||
+'mo'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#20'BorderSpac'
|
+'StatusLabel'#4'Left'#2#6#6'Height'#3#203#0#3'Top'#2#6#5'Width'#3#18#1#7'Anc'
|
||||||
+'ing.Around'#2#6#8'OnChange'#7#10'MemoChange'#10'ScrollBars'#7#10'ssAutoBoth'
|
+'hors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#20'BorderSpacing.Aroun'
|
||||||
+#8'TabOrder'#2#0#8'WordWrap'#8#4'Left'#2#6#6'Height'#3#206#0#3'Top'#2#6#5'Wi'
|
+'d'#2#6#8'OnChange'#7#10'MemoChange'#10'ScrollBars'#7#10'ssAutoBoth'#8'TabOr'
|
||||||
+'dth'#3'"'#1#0#0#7'TButton'#10'SortButton'#7'Anchors'#11#5'akTop'#7'akRight'
|
+'der'#2#0#8'WordWrap'#8#0#0#7'TButton'#10'SortButton'#4'Left'#3' '#1#6'Heigh'
|
||||||
+#0#20'BorderSpacing.Around'#2#6#25'BorderSpacing.InnerBorder'#2#4#7'Caption'
|
+'t'#2#25#3'Top'#2#6#5'Width'#2'K'#7'Anchors'#11#5'akTop'#7'akRight'#0#8'Auto'
|
||||||
+#6#4'Sort'#7'OnClick'#7#15'SortButtonClick'#8'TabOrder'#2#1#4'Left'#3'0'#1#6
|
+'Size'#9#20'BorderSpacing.Around'#2#6#25'BorderSpacing.InnerBorder'#2#4#7'Ca'
|
||||||
+'Height'#2#25#3'Top'#2#6#5'Width'#2'K'#0#0#0#7'TBitBtn'#8'OKButton'#7'Anchor'
|
+'ption'#6#4'Sort'#21'Constraints.MaxHeight'#2#25#21'Constraints.MinHeight'#2
|
||||||
+'s'#11#7'akRight'#8'akBottom'#0#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7
|
+#25#20'Constraints.MinWidth'#2'K'#7'OnClick'#7#15'SortButtonClick'#8'TabOrde'
|
||||||
+'Caption'#6#3'&OK'#7'Default'#9#4'Kind'#7#4'bkOK'#11'ModalResult'#2#1#9'NumG'
|
+'r'#2#1#0#0#0#7'TBitBtn'#8'OKButton'#23'AnchorSideRight.Control'#7#12'Cancel'
|
||||||
+'lyphs'#2#0#8'TabOrder'#2#1#4'Left'#3'R'#1#6'Height'#2#28#3'Top'#3#11#1#5'Wi'
|
+'Button'#24'AnchorSideBottom.Control'#7#5'Owner'#21'AnchorSideBottom.Side'#7
|
||||||
+'dth'#2'7'#0#0#7'TBitBtn'#12'CancelButton'#7'Anchors'#11#7'akRight'#8'akBott'
|
+#9'asrBottom'#4'Left'#3#226#0#6'Height'#2#25#3'Top'#3#15#1#5'Width'#2'K'#7'A'
|
||||||
+'om'#0#8'AutoSize'#9#19'BorderSpacing.Right'#2#6#20'BorderSpacing.Around'#2#6
|
+'nchors'#11#7'akRight'#8'akBottom'#0#8'AutoSize'#9#20'BorderSpacing.Around'#2
|
||||||
+#6'Cancel'#9#7'Caption'#6#6'Cancel'#4'Kind'#7#8'bkCancel'#11'ModalResult'#2#2
|
+#6#7'Caption'#6#3'&OK'#21'Constraints.MaxHeight'#2#25#21'Constraints.MinHeig'
|
||||||
+#9'NumGlyphs'#2#0#8'TabOrder'#2#2#23'AnchorSideRight.Control'#7#8'OKButton'#4
|
+'ht'#2#25#20'Constraints.MinWidth'#2'K'#7'Default'#9#4'Kind'#7#4'bkOK'#11'Mo'
|
||||||
+'Left'#3#249#0#6'Height'#2#28#3'Top'#3#11#1#5'Width'#2'M'#0#0#0
|
+'dalResult'#2#1#9'NumGlyphs'#2#0#8'TabOrder'#2#1#0#0#7'TBitBtn'#12'CancelBut'
|
||||||
|
+'ton'#23'AnchorSideRight.Control'#7#5'Owner'#20'AnchorSideRight.Side'#7#9'as'
|
||||||
|
+'rBottom'#24'AnchorSideBottom.Control'#7#5'Owner'#21'AnchorSideBottom.Side'#7
|
||||||
|
+#9'asrBottom'#4'Left'#3'3'#1#6'Height'#2#25#3'Top'#3#15#1#5'Width'#2'W'#7'An'
|
||||||
|
+'chors'#11#7'akRight'#8'akBottom'#0#8'AutoSize'#9#20'BorderSpacing.Around'#2
|
||||||
|
+#6#6'Cancel'#9#7'Caption'#6#6'Cancel'#21'Constraints.MaxHeight'#2#25#21'Cons'
|
||||||
|
+'traints.MinHeight'#2#25#20'Constraints.MinWidth'#2'K'#4'Kind'#7#8'bkCancel'
|
||||||
|
+#11'ModalResult'#2#2#9'NumGlyphs'#2#0#8'TabOrder'#2#2#0#0#0
|
||||||
]);
|
]);
|
||||||
|
Loading…
Reference in New Issue
Block a user