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
|
object ChangeClassDlg: TChangeClassDlg
Left = 291
Height = 350
Top = 163
Width = 470
ActiveControl = NewClassComboBox
BorderIcons = [biSystemMenu, biMinimize]
Caption = 'ChangeClassDlg'
ClientHeight = 350
ClientWidth = 470
OnCreate = ChangeClassDlgCreate
Position = poScreenCenter
LCLVersion = '1.5'
object OldGroupBox: TGroupBox
Left = 6
Height = 304
Top = 6
Width = 228
Align = alClient
BorderSpacing.Around = 6
Caption = 'OldGroupBox'
ClientHeight = 287
ClientWidth = 224
TabOrder = 0
object OldClassLabel: TLabel
AnchorSideLeft.Control = OldGroupBox
AnchorSideTop.Control = OldGroupBox
Left = 6
Height = 15
Top = 6
Width = 83
BorderSpacing.Around = 6
Caption = 'OldClassLabel'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object OldAncestorsListBox: TListBox
AnchorSideLeft.Control = OldGroupBox
AnchorSideTop.Control = OldClassLabel
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = OldGroupBox
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = OldGroupBox
AnchorSideBottom.Side = asrBottom
Left = 6
Height = 254
Top = 27
Width = 212
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Around = 6
ClickOnSelChange = False
ItemHeight = 0
ScrollWidth = 210
TabOrder = 0
TopIndex = -1
end
end
object NewGroupBox: TGroupBox
Left = 240
Height = 304
Top = 6
Width = 224
Align = alRight
BorderSpacing.Around = 6
Caption = 'NewGroupBox'
ClientHeight = 287
ClientWidth = 220
TabOrder = 1
object NewClassComboBox: TComboBox
AnchorSideLeft.Control = NewGroupBox
AnchorSideTop.Control = NewGroupBox
AnchorSideRight.Control = NewGroupBox
AnchorSideRight.Side = asrBottom
Left = 6
Height = 27
Top = 2
Width = 208
Anchors = [akTop, akLeft, akRight]
AutoComplete = True
AutoCompleteText = [cbactEnabled, cbactEndOfLineComplete, cbactSearchAscending]
BorderSpacing.Left = 6
BorderSpacing.Top = 2
BorderSpacing.Right = 6
ItemHeight = 0
OnEditingDone = NewClassComboBoxEditingDone
OnKeyUp = NewClassComboBoxKeyUp
TabOrder = 0
Text = 'NewClassComboBox'
end
object NewAncestorsListBox: TListBox
AnchorSideLeft.Control = NewGroupBox
AnchorSideTop.Control = NewClassComboBox
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = NewGroupBox
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = NewGroupBox
AnchorSideBottom.Side = asrBottom
Left = 6
Height = 249
Top = 32
Width = 208
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Left = 6
BorderSpacing.Top = 3
BorderSpacing.Right = 6
BorderSpacing.Bottom = 6
ClickOnSelChange = False
ItemHeight = 0
ScrollWidth = 206
TabOrder = 1
TopIndex = -1
end
end
object BtnPanel: TButtonPanel
Left = 6
Height = 28
Top = 316
Width = 458
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 = 2
ShowButtons = [pbOK, pbCancel]
ShowBevel = False
end
end
|