mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 11:17:57 +08:00

Some GUI controls on the dialog had to be moved around as well as some lines of code so everything works well with the automatic dialog closing.
123 lines
2.7 KiB
Plaintext
123 lines
2.7 KiB
Plaintext
object frmUpdateCheck: TfrmUpdateCheck
|
|
Left = 0
|
|
Top = 0
|
|
BorderStyle = bsDialog
|
|
Caption = 'Check for updates ...'
|
|
ClientHeight = 273
|
|
ClientWidth = 384
|
|
Color = clBtnFace
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'Tahoma'
|
|
Font.Style = []
|
|
OldCreateOrder = False
|
|
Position = poMainFormCenter
|
|
OnCreate = FormCreate
|
|
OnShow = FormShow
|
|
DesignSize = (
|
|
384
|
|
273)
|
|
PixelsPerInch = 96
|
|
TextHeight = 13
|
|
object lblStatus: TLabel
|
|
Left = 8
|
|
Top = 240
|
|
Width = 256
|
|
Height = 28
|
|
Anchors = [akLeft, akRight, akBottom]
|
|
AutoSize = False
|
|
Caption = 'lblStatus'
|
|
Layout = tlCenter
|
|
WordWrap = True
|
|
end
|
|
object btnCancel: TButton
|
|
Left = 270
|
|
Top = 240
|
|
Width = 106
|
|
Height = 25
|
|
Anchors = [akRight, akBottom]
|
|
Cancel = True
|
|
Caption = 'Cancel'
|
|
Default = True
|
|
ModalResult = 2
|
|
TabOrder = 0
|
|
end
|
|
object groupBuild: TGroupBox
|
|
Left = 8
|
|
Top = 123
|
|
Width = 368
|
|
Height = 110
|
|
Anchors = [akLeft, akTop, akRight, akBottom]
|
|
Caption = 'Nightly build'
|
|
Enabled = False
|
|
TabOrder = 1
|
|
DesignSize = (
|
|
368
|
|
110)
|
|
object btnBuild: TButton
|
|
Left = 6
|
|
Top = 78
|
|
Width = 355
|
|
Height = 25
|
|
Anchors = [akLeft, akRight, akBottom]
|
|
Caption = 'Download nightly build'
|
|
ModalResult = 1
|
|
TabOrder = 0
|
|
OnClick = btnBuildClick
|
|
end
|
|
object memoBuild: TMemo
|
|
Left = 6
|
|
Top = 16
|
|
Width = 355
|
|
Height = 60
|
|
Anchors = [akLeft, akTop, akRight, akBottom]
|
|
BorderStyle = bsNone
|
|
Color = clBtnFace
|
|
Lines.Strings = (
|
|
'memoBuild')
|
|
ReadOnly = True
|
|
ScrollBars = ssVertical
|
|
TabOrder = 1
|
|
end
|
|
end
|
|
object groupRelease: TGroupBox
|
|
Left = 8
|
|
Top = 8
|
|
Width = 368
|
|
Height = 110
|
|
Anchors = [akLeft, akTop, akRight]
|
|
Caption = 'Official release'
|
|
Enabled = False
|
|
TabOrder = 2
|
|
DesignSize = (
|
|
368
|
|
110)
|
|
object btnRelease: TButton
|
|
Left = 6
|
|
Top = 78
|
|
Width = 355
|
|
Height = 25
|
|
Anchors = [akLeft, akRight, akBottom]
|
|
Caption = 'Download new release'
|
|
ModalResult = 1
|
|
TabOrder = 0
|
|
OnClick = btnReleaseClick
|
|
end
|
|
object memoRelease: TMemo
|
|
Left = 6
|
|
Top = 16
|
|
Width = 355
|
|
Height = 60
|
|
Anchors = [akLeft, akTop, akRight, akBottom]
|
|
BorderStyle = bsNone
|
|
Color = clBtnFace
|
|
Lines.Strings = (
|
|
'memoRelease')
|
|
ReadOnly = True
|
|
ScrollBars = ssVertical
|
|
TabOrder = 1
|
|
end
|
|
end
|
|
end
|