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
|
object PluginF: TPluginF
Left = 290
Top = 286
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Install Plugin'
ClientHeight = 146
ClientWidth = 320
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Arial'
Font.Style = []
Position = poOwnerFormCenter
OnShow = FormShow
TextHeight = 14
object InfoLabel: TLabel
Left = 5
Top = 5
Width = 340
Height = 15
AutoSize = False
Caption = 'You need the following plugin to use this feature:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
end
object NameLabel: TLabel
Left = 5
Top = 20
Width = 340
Height = 15
AutoSize = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
end
object AskLabel: TLabel
Left = 5
Top = 40
Width = 340
Height = 15
AutoSize = False
Caption = 'Would you like to download and install this plugin?'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
end
object DownloadLabel: TLabel
Left = 5
Top = 60
Width = 340
Height = 15
AutoSize = False
Caption = 'Downloading installer...'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
Visible = False
end
object InstallLabel: TLabel
Left = 5
Top = 75
Width = 340
Height = 15
AutoSize = False
Caption = 'Running installer...'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
Visible = False
end
object Cancel: TButton
Left = 62
Top = 112
Width = 122
Height = 26
Cancel = True
Caption = 'Cancel'
TabOrder = 1
OnClick = CancelClick
end
object Install: TButton
Left = 190
Top = 112
Width = 122
Height = 26
Caption = 'Install'
Default = True
TabOrder = 0
OnClick = InstallClick
end
end
|