mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
139 lines
3.5 KiB
Plaintext
139 lines
3.5 KiB
Plaintext
object frmColumnSelection: TfrmColumnSelection
|
|
Left = 0
|
|
Height = 304
|
|
Top = 0
|
|
Width = 250
|
|
AutoSize = True
|
|
BorderStyle = bsSizeToolWin
|
|
Caption = 'Select columns'
|
|
ClientHeight = 304
|
|
ClientWidth = 250
|
|
Color = clBtnFace
|
|
Constraints.MinHeight = 188
|
|
Constraints.MinWidth = 250
|
|
DesignTimePPI = 120
|
|
OnClose = FormClose
|
|
OnCreate = FormCreate
|
|
OnDeactivate = FormDeactivate
|
|
OnDestroy = FormDestroy
|
|
OnShow = FormShow
|
|
object btnCancel: TButton
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
AnchorSideBottom.Control = Owner
|
|
AnchorSideBottom.Side = asrBottom
|
|
Left = 144
|
|
Height = 30
|
|
Top = 268
|
|
Width = 100
|
|
Anchors = [akRight, akBottom]
|
|
AutoSize = True
|
|
BorderSpacing.Around = 6
|
|
Cancel = True
|
|
Caption = 'Cancel'
|
|
Constraints.MinWidth = 100
|
|
ModalResult = 2
|
|
TabOrder = 6
|
|
OnClick = btnCancelClick
|
|
end
|
|
object btnOK: TButton
|
|
AnchorSideRight.Control = btnCancel
|
|
AnchorSideBottom.Control = Owner
|
|
AnchorSideBottom.Side = asrBottom
|
|
Left = 38
|
|
Height = 30
|
|
Top = 268
|
|
Width = 100
|
|
Anchors = [akRight, akBottom]
|
|
AutoSize = True
|
|
BorderSpacing.Around = 6
|
|
Caption = 'OK'
|
|
Constraints.MinWidth = 100
|
|
Default = True
|
|
TabOrder = 5
|
|
OnClick = btnOKClick
|
|
end
|
|
object chkSort: TCheckBox
|
|
AnchorSideLeft.Control = Owner
|
|
AnchorSideTop.Control = chklistColumns
|
|
AnchorSideTop.Side = asrBottom
|
|
AnchorSideBottom.Control = chkShowRowId
|
|
Left = 6
|
|
Height = 24
|
|
Top = 208
|
|
Width = 145
|
|
Anchors = [akLeft, akBottom]
|
|
BorderSpacing.Around = 6
|
|
Caption = 'Sort alphabetically'
|
|
TabOrder = 3
|
|
OnClick = PopulateList
|
|
end
|
|
object chkSelectAll: TCheckBox
|
|
AnchorSideLeft.Control = Owner
|
|
AnchorSideTop.Control = Owner
|
|
Left = 6
|
|
Height = 24
|
|
Hint = 'Select / Deselect all'
|
|
Top = 6
|
|
Width = 39
|
|
BorderSpacing.Around = 6
|
|
Caption = 'All'
|
|
TabOrder = 0
|
|
OnClick = chkSelectAllClick
|
|
end
|
|
object chklistColumns: TCheckListBox
|
|
AnchorSideLeft.Control = Owner
|
|
AnchorSideTop.Control = editFilter
|
|
AnchorSideTop.Side = asrBottom
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
AnchorSideBottom.Control = chkSort
|
|
Left = 6
|
|
Height = 162
|
|
Top = 40
|
|
Width = 238
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
|
BorderSpacing.Around = 6
|
|
ItemHeight = 0
|
|
TabOrder = 2
|
|
OnClickCheck = chklistColumnsClickCheck
|
|
end
|
|
object editFilter: TEditButton
|
|
AnchorSideLeft.Control = chkSelectAll
|
|
AnchorSideLeft.Side = asrBottom
|
|
AnchorSideTop.Control = Owner
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
Left = 51
|
|
Height = 28
|
|
Top = 6
|
|
Width = 193
|
|
Anchors = [akTop, akLeft, akRight]
|
|
BorderSpacing.Around = 6
|
|
ButtonWidth = 29
|
|
Images = MainForm.ImageListMain
|
|
ImageIndex = 146
|
|
MaxLength = 0
|
|
NumGlyphs = 1
|
|
PasswordChar = #0
|
|
TabOrder = 1
|
|
TextHint = 'Filter'
|
|
OnButtonClick = editFilterButtonClick
|
|
OnChange = PopulateList
|
|
end
|
|
object chkShowRowId: TCheckBox
|
|
AnchorSideLeft.Control = Owner
|
|
AnchorSideTop.Control = chkSort
|
|
AnchorSideTop.Side = asrBottom
|
|
AnchorSideBottom.Control = btnOK
|
|
Left = 6
|
|
Height = 24
|
|
Top = 238
|
|
Width = 195
|
|
Anchors = [akLeft, akBottom]
|
|
BorderSpacing.Around = 6
|
|
Caption = 'Show static row id column'
|
|
TabOrder = 4
|
|
end
|
|
end
|