mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-14 14:19:08 +02:00
IDE: improved alignment of build mode combobox in Project Options dialog, issue #39757
This commit is contained in:
parent
bed8f0d9e9
commit
a6f7b28f81
@ -1,30 +1,30 @@
|
||||
object IDEOptionsDialog: TIDEOptionsDialog
|
||||
Left = 372
|
||||
Height = 500
|
||||
Height = 625
|
||||
Top = 202
|
||||
Width = 800
|
||||
Width = 1000
|
||||
ActiveControl = FilterEdit
|
||||
BorderIcons = [biSystemMenu]
|
||||
Caption = 'IDEOptionsDialog'
|
||||
ClientHeight = 500
|
||||
ClientWidth = 800
|
||||
Constraints.MinHeight = 350
|
||||
Constraints.MinWidth = 500
|
||||
ClientHeight = 625
|
||||
ClientWidth = 1000
|
||||
Constraints.MinHeight = 438
|
||||
Constraints.MinWidth = 625
|
||||
DesignTimePPI = 120
|
||||
OnShow = FormShow
|
||||
Position = poScreenCenter
|
||||
LCLVersion = '1.9.0.0'
|
||||
object ButtonPanel: TButtonPanel
|
||||
AnchorSideLeft.Control = Owner
|
||||
AnchorSideRight.Control = Owner
|
||||
AnchorSideRight.Side = asrBottom
|
||||
AnchorSideBottom.Control = Owner
|
||||
Left = 6
|
||||
Height = 34
|
||||
Top = 460
|
||||
Width = 788
|
||||
BorderSpacing.Left = 6
|
||||
BorderSpacing.Right = 6
|
||||
BorderSpacing.Bottom = 6
|
||||
Left = 8
|
||||
Height = 38
|
||||
Top = 579
|
||||
Width = 984
|
||||
BorderSpacing.Left = 8
|
||||
BorderSpacing.Right = 8
|
||||
BorderSpacing.Bottom = 8
|
||||
BorderSpacing.Around = 0
|
||||
OKButton.Name = 'OKButton'
|
||||
OKButton.DefaultCaption = True
|
||||
@ -39,23 +39,23 @@ object IDEOptionsDialog: TIDEOptionsDialog
|
||||
ShowButtons = [pbOK, pbCancel, pbHelp]
|
||||
end
|
||||
object CatTVSplitter: TSplitter
|
||||
Left = 255
|
||||
Height = 460
|
||||
Left = 319
|
||||
Height = 579
|
||||
Top = 0
|
||||
Width = 4
|
||||
Width = 5
|
||||
end
|
||||
object CategoryPanel: TPanel
|
||||
AnchorSideLeft.Control = Owner
|
||||
AnchorSideTop.Control = Owner
|
||||
Left = 0
|
||||
Height = 460
|
||||
Height = 579
|
||||
Top = 0
|
||||
Width = 255
|
||||
Width = 319
|
||||
Align = alLeft
|
||||
BevelOuter = bvNone
|
||||
ClientHeight = 460
|
||||
ClientWidth = 255
|
||||
Constraints.MinWidth = 150
|
||||
ClientHeight = 579
|
||||
ClientWidth = 319
|
||||
Constraints.MinWidth = 188
|
||||
TabOrder = 2
|
||||
object CategoryTree: TTreeView
|
||||
AnchorSideLeft.Control = FilterEdit
|
||||
@ -64,12 +64,12 @@ object IDEOptionsDialog: TIDEOptionsDialog
|
||||
AnchorSideRight.Control = CategoryPanel
|
||||
AnchorSideRight.Side = asrBottom
|
||||
AnchorSideBottom.Control = SettingsPanel
|
||||
Left = 6
|
||||
Height = 417
|
||||
Top = 37
|
||||
Width = 249
|
||||
Left = 8
|
||||
Height = 527
|
||||
Top = 44
|
||||
Width = 311
|
||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||
BorderSpacing.Top = 6
|
||||
BorderSpacing.Top = 8
|
||||
ReadOnly = True
|
||||
ScrollBars = ssAutoBoth
|
||||
TabOrder = 0
|
||||
@ -83,15 +83,15 @@ object IDEOptionsDialog: TIDEOptionsDialog
|
||||
AnchorSideLeft.Control = CategoryPanel
|
||||
AnchorSideTop.Control = CategoryPanel
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 6
|
||||
Height = 25
|
||||
Top = 6
|
||||
Width = 249
|
||||
Left = 8
|
||||
Height = 28
|
||||
Top = 8
|
||||
Width = 311
|
||||
OnFilterItem = FilterEditFilterItem
|
||||
ButtonWidth = 23
|
||||
ButtonWidth = 29
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
BorderSpacing.Left = 6
|
||||
BorderSpacing.Top = 6
|
||||
BorderSpacing.Left = 8
|
||||
BorderSpacing.Top = 8
|
||||
NumGlyphs = 1
|
||||
MaxLength = 0
|
||||
TabOrder = 1
|
||||
@ -99,13 +99,13 @@ object IDEOptionsDialog: TIDEOptionsDialog
|
||||
end
|
||||
object SettingsPanel: TPanel
|
||||
Left = 0
|
||||
Height = 6
|
||||
Top = 454
|
||||
Width = 255
|
||||
Height = 8
|
||||
Top = 571
|
||||
Width = 319
|
||||
Align = alBottom
|
||||
AutoSize = True
|
||||
BevelOuter = bvNone
|
||||
Constraints.MinHeight = 6
|
||||
Constraints.MinHeight = 8
|
||||
TabOrder = 2
|
||||
end
|
||||
end
|
||||
@ -115,26 +115,26 @@ object IDEOptionsDialog: TIDEOptionsDialog
|
||||
AnchorSideTop.Control = Owner
|
||||
AnchorSideRight.Control = EditorsPanel
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 259
|
||||
Height = 40
|
||||
Left = 324
|
||||
Height = 50
|
||||
Top = 0
|
||||
Width = 535
|
||||
Width = 668
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
BevelOuter = bvNone
|
||||
ClientHeight = 40
|
||||
ClientWidth = 535
|
||||
ClientHeight = 50
|
||||
ClientWidth = 668
|
||||
TabOrder = 3
|
||||
object BuildModeComboBox: TComboBox
|
||||
AnchorSideLeft.Control = BuildModesLabel
|
||||
AnchorSideLeft.Side = asrBottom
|
||||
AnchorSideTop.Control = BuildModesLabel
|
||||
AnchorSideTop.Side = asrCenter
|
||||
Left = 125
|
||||
Height = 35
|
||||
Top = -1
|
||||
Width = 175
|
||||
BorderSpacing.Left = 6
|
||||
ItemHeight = 0
|
||||
AnchorSideTop.Control = BuildModeSelectPanel
|
||||
Left = 131
|
||||
Height = 28
|
||||
Top = 8
|
||||
Width = 219
|
||||
BorderSpacing.Left = 8
|
||||
BorderSpacing.Top = 8
|
||||
ItemHeight = 20
|
||||
OnSelect = BuildModeComboBoxSelect
|
||||
Style = csDropDownList
|
||||
TabOrder = 0
|
||||
@ -145,10 +145,10 @@ object IDEOptionsDialog: TIDEOptionsDialog
|
||||
AnchorSideTop.Control = BuildModeComboBox
|
||||
AnchorSideBottom.Control = BuildModeComboBox
|
||||
AnchorSideBottom.Side = asrBottom
|
||||
Left = 301
|
||||
Height = 35
|
||||
Top = -1
|
||||
Width = 23
|
||||
Left = 351
|
||||
Height = 28
|
||||
Top = 8
|
||||
Width = 29
|
||||
Anchors = [akTop, akLeft, akBottom]
|
||||
BorderSpacing.Left = 1
|
||||
Caption = '...'
|
||||
@ -156,11 +156,16 @@ object IDEOptionsDialog: TIDEOptionsDialog
|
||||
TabOrder = 1
|
||||
end
|
||||
object BuildModesLabel: TLabel
|
||||
Left = 12
|
||||
Height = 19
|
||||
Top = 7
|
||||
Width = 107
|
||||
AnchorSideLeft.Control = BuildModeSelectPanel
|
||||
AnchorSideTop.Control = BuildModeComboBox
|
||||
AnchorSideTop.Side = asrCenter
|
||||
Left = 8
|
||||
Height = 20
|
||||
Top = 12
|
||||
Width = 115
|
||||
BorderSpacing.Left = 8
|
||||
Caption = 'BuildModesLabel'
|
||||
Color = clDefault
|
||||
ParentColor = False
|
||||
end
|
||||
end
|
||||
@ -172,16 +177,16 @@ object IDEOptionsDialog: TIDEOptionsDialog
|
||||
AnchorSideRight.Control = Owner
|
||||
AnchorSideRight.Side = asrBottom
|
||||
AnchorSideBottom.Control = ButtonPanel
|
||||
Left = 259
|
||||
Height = 420
|
||||
Top = 40
|
||||
Width = 535
|
||||
Left = 324
|
||||
Height = 529
|
||||
Top = 50
|
||||
Width = 668
|
||||
HorzScrollBar.Page = 1
|
||||
HorzScrollBar.Tracking = True
|
||||
VertScrollBar.Page = 1
|
||||
VertScrollBar.Tracking = True
|
||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||
BorderSpacing.Right = 6
|
||||
BorderSpacing.Right = 8
|
||||
BorderStyle = bsNone
|
||||
TabOrder = 4
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user