| 1 |
object Form10: TForm10 |
| 2 |
Left = 0 |
| 3 |
Top = 0 |
| 4 |
BorderStyle = bsToolWindow |
| 5 |
Caption = 'Add/Edit Hotkey' |
| 6 |
ClientHeight = 246 |
| 7 |
ClientWidth = 313 |
| 8 |
Color = clBtnFace |
| 9 |
Font.Charset = DEFAULT_CHARSET |
| 10 |
Font.Color = clWindowText |
| 11 |
Font.Height = -11 |
| 12 |
Font.Name = 'Tahoma' |
| 13 |
Font.Style = [] |
| 14 |
OldCreateOrder = False |
| 15 |
OnCloseQuery = FormCloseQuery |
| 16 |
PixelsPerInch = 96 |
| 17 |
TextHeight = 13 |
| 18 |
object label_key: TLabel |
| 19 |
Left = 8 |
| 20 |
Top = 8 |
| 21 |
Width = 81 |
| 22 |
Height = 17 |
| 23 |
AutoSize = False |
| 24 |
Caption = 'Hotkey:' |
| 25 |
end |
| 26 |
object label_group: TLabel |
| 27 |
Left = 8 |
| 28 |
Top = 32 |
| 29 |
Width = 81 |
| 30 |
Height = 17 |
| 31 |
AutoSize = False |
| 32 |
Caption = 'Target group:' |
| 33 |
end |
| 34 |
object label_target_char: TLabel |
| 35 |
Left = 8 |
| 36 |
Top = 80 |
| 37 |
Width = 113 |
| 38 |
Height = 17 |
| 39 |
AutoSize = False |
| 40 |
Caption = 'Target char x:' |
| 41 |
end |
| 42 |
object label_option: TLabel |
| 43 |
Left = 8 |
| 44 |
Top = 104 |
| 45 |
Width = 81 |
| 46 |
Height = 17 |
| 47 |
AutoSize = False |
| 48 |
Caption = 'Target option:' |
| 49 |
end |
| 50 |
object label_action: TLabel |
| 51 |
Left = 8 |
| 52 |
Top = 128 |
| 53 |
Width = 81 |
| 54 |
Height = 17 |
| 55 |
AutoSize = False |
| 56 |
Caption = 'Action to do:' |
| 57 |
end |
| 58 |
object label_value: TLabel |
| 59 |
Left = 8 |
| 60 |
Top = 152 |
| 61 |
Width = 81 |
| 62 |
Height = 17 |
| 63 |
AutoSize = False |
| 64 |
Caption = 'Value:' |
| 65 |
end |
| 66 |
object label_value2: TLabel |
| 67 |
Left = 8 |
| 68 |
Top = 176 |
| 69 |
Width = 81 |
| 70 |
Height = 17 |
| 71 |
AutoSize = False |
| 72 |
Caption = 'Value2:' |
| 73 |
end |
| 74 |
object combo_group: TComboBox |
| 75 |
Left = 96 |
| 76 |
Top = 28 |
| 77 |
Width = 209 |
| 78 |
Height = 21 |
| 79 |
Style = csDropDownList |
| 80 |
ItemHeight = 13 |
| 81 |
TabOrder = 0 |
| 82 |
OnChange = combo_groupChange |
| 83 |
end |
| 84 |
object check_charid: TRadioButton |
| 85 |
Left = 8 |
| 86 |
Top = 56 |
| 87 |
Width = 105 |
| 88 |
Height = 17 |
| 89 |
Caption = 'Target char by ID' |
| 90 |
Checked = True |
| 91 |
TabOrder = 1 |
| 92 |
TabStop = True |
| 93 |
OnClick = check_charidClick |
| 94 |
end |
| 95 |
object check_charname: TRadioButton |
| 96 |
Left = 184 |
| 97 |
Top = 56 |
| 98 |
Width = 121 |
| 99 |
Height = 17 |
| 100 |
Caption = 'Target char by name' |
| 101 |
TabOrder = 2 |
| 102 |
OnClick = check_charnameClick |
| 103 |
end |
| 104 |
object edit_char: TEdit |
| 105 |
Left = 96 |
| 106 |
Top = 75 |
| 107 |
Width = 209 |
| 108 |
Height = 21 |
| 109 |
TabOrder = 3 |
| 110 |
end |
| 111 |
object combo_option: TComboBox |
| 112 |
Left = 96 |
| 113 |
Top = 100 |
| 114 |
Width = 209 |
| 115 |
Height = 21 |
| 116 |
Style = csDropDownList |
| 117 |
ItemHeight = 13 |
| 118 |
TabOrder = 4 |
| 119 |
OnChange = combo_optionChange |
| 120 |
end |
| 121 |
object combo_action: TComboBox |
| 122 |
Left = 96 |
| 123 |
Top = 124 |
| 124 |
Width = 209 |
| 125 |
Height = 21 |
| 126 |
Style = csDropDownList |
| 127 |
ItemHeight = 13 |
| 128 |
TabOrder = 5 |
| 129 |
OnChange = combo_actionChange |
| 130 |
end |
| 131 |
object edit_value: TEdit |
| 132 |
Left = 96 |
| 133 |
Top = 148 |
| 134 |
Width = 209 |
| 135 |
Height = 21 |
| 136 |
TabOrder = 6 |
| 137 |
end |
| 138 |
object edit_value2: TEdit |
| 139 |
Left = 96 |
| 140 |
Top = 172 |
| 141 |
Width = 209 |
| 142 |
Height = 21 |
| 143 |
TabOrder = 7 |
| 144 |
end |
| 145 |
object button_add: TButton |
| 146 |
Left = 8 |
| 147 |
Top = 208 |
| 148 |
Width = 81 |
| 149 |
Height = 25 |
| 150 |
Caption = 'Add / Change' |
| 151 |
TabOrder = 8 |
| 152 |
OnClick = button_addClick |
| 153 |
end |
| 154 |
object button_cancel: TButton |
| 155 |
Left = 216 |
| 156 |
Top = 208 |
| 157 |
Width = 81 |
| 158 |
Height = 25 |
| 159 |
Caption = 'Cancel' |
| 160 |
TabOrder = 9 |
| 161 |
OnClick = button_cancelClick |
| 162 |
end |
| 163 |
object Check_Ctrl: TCheckBox |
| 164 |
Left = 96 |
| 165 |
Top = 5 |
| 166 |
Width = 49 |
| 167 |
Height = 17 |
| 168 |
Caption = 'CTRL' |
| 169 |
TabOrder = 10 |
| 170 |
end |
| 171 |
object Check_Alt: TCheckBox |
| 172 |
Left = 152 |
| 173 |
Top = 5 |
| 174 |
Width = 41 |
| 175 |
Height = 17 |
| 176 |
Caption = 'ALT' |
| 177 |
TabOrder = 11 |
| 178 |
end |
| 179 |
object combo_keys: TComboBox |
| 180 |
Left = 200 |
| 181 |
Top = 3 |
| 182 |
Width = 105 |
| 183 |
Height = 21 |
| 184 |
Style = csDropDownList |
| 185 |
ItemHeight = 13 |
| 186 |
TabOrder = 12 |
| 187 |
end |
| 188 |
end |