mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
222 lines
6.6 KiB
Plaintext
222 lines
6.6 KiB
Plaintext
object CopyTableForm: TCopyTableForm
|
|
Left = 393
|
|
Height = 380
|
|
Top = 115
|
|
Width = 455
|
|
AutoSize = True
|
|
Caption = 'Copy Table...'
|
|
ClientHeight = 380
|
|
ClientWidth = 455
|
|
Color = clBtnFace
|
|
DesignTimePPI = 120
|
|
Position = poMainFormCenter
|
|
OnClose = FormClose
|
|
OnCreate = FormCreate
|
|
OnDestroy = FormDestroy
|
|
OnResize = FormResize
|
|
OnShow = FormShow
|
|
object lblNewTablename: TLabel
|
|
AnchorSideLeft.Control = Owner
|
|
AnchorSideTop.Control = Owner
|
|
Left = 6
|
|
Height = 20
|
|
Top = 6
|
|
Width = 179
|
|
BorderSpacing.Left = 6
|
|
BorderSpacing.Top = 6
|
|
Caption = 'Copy "%s" to new db.table:'
|
|
end
|
|
object lblItems: TLabel
|
|
AnchorSideLeft.Control = comboDatabase
|
|
AnchorSideTop.Control = editNewTablename
|
|
AnchorSideTop.Side = asrBottom
|
|
Left = 6
|
|
Height = 20
|
|
Top = 66
|
|
Width = 211
|
|
BorderSpacing.Top = 6
|
|
Caption = 'Elements to create in new table:'
|
|
end
|
|
object lblWhere: TLabel
|
|
AnchorSideLeft.Control = TreeElements
|
|
AnchorSideTop.Side = asrBottom
|
|
AnchorSideBottom.Control = MemoFilter
|
|
Left = 6
|
|
Height = 20
|
|
Top = 220
|
|
Width = 212
|
|
Anchors = [akLeft, akBottom]
|
|
BorderSpacing.Bottom = 6
|
|
Caption = 'WHERE clause for data copying:'
|
|
end
|
|
object editNewTablename: TEdit
|
|
AnchorSideLeft.Control = comboDatabase
|
|
AnchorSideLeft.Side = asrBottom
|
|
AnchorSideTop.Control = lblNewTablename
|
|
AnchorSideTop.Side = asrBottom
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
Left = 193
|
|
Height = 28
|
|
Top = 32
|
|
Width = 256
|
|
Anchors = [akTop, akLeft, akRight]
|
|
BorderSpacing.Left = 6
|
|
BorderSpacing.Top = 6
|
|
BorderSpacing.Right = 6
|
|
TabOrder = 1
|
|
OnChange = editNewTablenameChange
|
|
end
|
|
object btnCancel: TButton
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
AnchorSideBottom.Control = Owner
|
|
AnchorSideBottom.Side = asrBottom
|
|
Left = 345
|
|
Height = 31
|
|
Top = 343
|
|
Width = 104
|
|
Anchors = [akRight, akBottom]
|
|
BorderSpacing.Right = 6
|
|
BorderSpacing.Bottom = 6
|
|
Cancel = True
|
|
Caption = 'Cancel'
|
|
ModalResult = 2
|
|
TabOrder = 5
|
|
end
|
|
object comboDatabase: TComboBox
|
|
AnchorSideLeft.Control = lblNewTablename
|
|
AnchorSideTop.Control = lblNewTablename
|
|
AnchorSideTop.Side = asrBottom
|
|
Left = 6
|
|
Height = 28
|
|
Top = 32
|
|
Width = 181
|
|
BorderSpacing.Top = 6
|
|
ItemHeight = 20
|
|
Style = csDropDownList
|
|
TabOrder = 0
|
|
end
|
|
object btnOK: TButton
|
|
AnchorSideRight.Control = btnCancel
|
|
AnchorSideBottom.Control = Owner
|
|
AnchorSideBottom.Side = asrBottom
|
|
Left = 235
|
|
Height = 31
|
|
Top = 343
|
|
Width = 104
|
|
Anchors = [akRight, akBottom]
|
|
BorderSpacing.Right = 6
|
|
BorderSpacing.Bottom = 6
|
|
Caption = 'OK'
|
|
Default = True
|
|
ModalResult = 1
|
|
TabOrder = 4
|
|
OnClick = btnOKClick
|
|
end
|
|
object TreeElements: TLazVirtualStringTree
|
|
AnchorSideLeft.Control = comboDatabase
|
|
AnchorSideTop.Control = lblItems
|
|
AnchorSideTop.Side = asrBottom
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
AnchorSideBottom.Control = btnRecentFilters
|
|
Left = 6
|
|
Height = 112
|
|
Top = 92
|
|
Width = 443
|
|
Anchors = [akTop, akLeft, akRight, akBottom]
|
|
BorderSpacing.Top = 6
|
|
BorderSpacing.Right = 6
|
|
BorderSpacing.Bottom = 6
|
|
Header.AutoSizeIndex = 0
|
|
Header.Columns = <>
|
|
Header.MainColumn = -1
|
|
Images = MainForm.ImageListMain
|
|
TabOrder = 2
|
|
TreeOptions.AutoOptions = [toAutoDropExpand, toAutoScroll, toAutoScrollOnExpand, toAutoTristateTracking, toAutoDeleteMovedNodes, toAutoChangeScale]
|
|
TreeOptions.MiscOptions = [toAcceptOLEDrop, toCheckSupport, toFullRepaintOnResize, toInitOnSave, toToggleOnDblClick, toWheelPanning, toEditOnClick]
|
|
TreeOptions.PaintOptions = [toHotTrack, toShowButtons, toShowDropmark, toShowRoot, toShowTreeLines, toThemeAware, toUseBlendedImages, toUseExplorerTheme, toHideTreeLinesIfThemed]
|
|
OnChecked = TreeElementsChecked
|
|
OnGetText = TreeElementsGetText
|
|
OnGetImageIndex = TreeElementsGetImageIndex
|
|
OnInitChildren = TreeElementsInitChildren
|
|
OnInitNode = TreeElementsInitNode
|
|
end
|
|
inline MemoFilter: TSynEdit
|
|
AnchorSideLeft.Control = TreeElements
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
AnchorSideBottom.Control = btnOK
|
|
Left = 6
|
|
Height = 91
|
|
Top = 246
|
|
Width = 443
|
|
BorderSpacing.Right = 6
|
|
BorderSpacing.Bottom = 6
|
|
Anchors = [akLeft, akRight, akBottom]
|
|
Font.Color = clGrayText
|
|
Font.Height = -16
|
|
Font.Name = 'Courier New'
|
|
Font.Pitch = fpFixed
|
|
Font.Quality = fqNonAntialiased
|
|
ParentColor = False
|
|
ParentFont = False
|
|
TabOrder = 3
|
|
Gutter.Width = 0
|
|
Gutter.MouseActions = <>
|
|
RightGutter.Width = 0
|
|
RightGutter.MouseActions = <>
|
|
Highlighter = MainForm.SynSQLSynUsed
|
|
Keystrokes = <>
|
|
MouseActions = <>
|
|
MouseTextActions = <>
|
|
MouseSelActions = <>
|
|
Options = [eoAutoIndent, eoGroupUndo, eoKeepCaretX, eoShowScrollHint, eoSmartTabs, eoTabIndent, eoDragDropEditing]
|
|
MouseOptions = [emDragDropEditing]
|
|
VisibleSpecialChars = [vscSpace, vscTabAtLast]
|
|
SelectedColor.BackPriority = 50
|
|
SelectedColor.ForePriority = 50
|
|
SelectedColor.FramePriority = 50
|
|
SelectedColor.BoldPriority = 50
|
|
SelectedColor.ItalicPriority = 50
|
|
SelectedColor.UnderlinePriority = 50
|
|
SelectedColor.StrikeOutPriority = 50
|
|
BracketHighlightStyle = sbhsBoth
|
|
BracketMatchColor.Background = clNone
|
|
BracketMatchColor.Foreground = clNone
|
|
BracketMatchColor.Style = [fsBold]
|
|
FoldedCodeColor.Background = clNone
|
|
FoldedCodeColor.Foreground = clGray
|
|
FoldedCodeColor.FrameColor = clGray
|
|
MouseLinkColor.Background = clNone
|
|
MouseLinkColor.Foreground = clBlue
|
|
LineHighlightColor.Background = clNone
|
|
LineHighlightColor.Foreground = clNone
|
|
inline SynLeftGutterPartList1: TSynGutterPartList
|
|
end
|
|
end
|
|
object btnRecentFilters: TSpeedButton
|
|
AnchorSideTop.Side = asrBottom
|
|
AnchorSideRight.Control = Owner
|
|
AnchorSideRight.Side = asrBottom
|
|
AnchorSideBottom.Control = MemoFilter
|
|
Left = 333
|
|
Height = 30
|
|
Top = 210
|
|
Width = 116
|
|
Anchors = [akRight, akBottom]
|
|
AutoSize = True
|
|
BorderSpacing.Right = 6
|
|
BorderSpacing.Bottom = 6
|
|
Caption = 'Recent filters'
|
|
Images = MainForm.ImageListMain
|
|
ImageIndex = 108
|
|
OnClick = btnRecentFiltersClick
|
|
end
|
|
object popupRecentFilters: TPopupMenu
|
|
Left = 260
|
|
Top = 200
|
|
end
|
|
end
|