;the "Tools | Customize | Hot Keys..." menu command

object HotKeysForm: THotKeysForm
  Caption = 'Teclas rápidas'
  ClientHeight = 395
  ClientWidth = 515
  object CatLbl: TLabel
    Left = 9
    Top = 9
    Caption = 'Categorías:'
  end
  object CatLstBx: TListBox
    Left = 9
    Top = 26
    Width = 164
    Style = lbOwnerDrawVariable
    OnClick = CatLstBxClick
    OnMeasureItem = CatLstBxMeasureItem
    OnDrawItem = CatLstBxDrawItem
  end
  object CmdLbl: TLabel
    Left = 185
    Top = 9
    Caption = 'Comandos:'
  end
  object CmdLstBx: TListBox
    Left = 185
    Top = 26
    Width = 321
    Style = lbOwnerDrawFixed
    OnClick = CmdLstBxClick
    OnDrawItem = CmdLstBxDrawItem
    OnMouseMove = CmdLstBxMouseMove
  end
  object AssignedLbl: TLabel
    Left = 9
    Top = 255
    Caption = 'Teclas rápidas asignadas:'
  end
  object AssignedLstBx: TListBox
    Left = 9
    Top = 273
    Width = 164
    Height = 50
  end
  object RmvBtn: TButton
    Left = 9
    Top = 324
    Width = 164
    Height = 21
    Caption = 'Eliminar'
    OnClick = RmvBtnClick
  end
  object NewLbl: TLabel
    Left = 185
    Top = 255
    Caption = 'Nueva tecla rápida:'
  end
  object HotKey: THotKey
    Left = 185
    Top = 273
    Width = 131
  end
  object ChooseBtn: TButton
    Left = 319
    Top = 273
    Width = 21
    Height = 21
    Hint = 'Elija de la lista de teclas rápidas no utilizadas'
    Caption = '...'
    OnClick = ChooseBtnClick
  end
  object AssignBtn: TButton
    Left = 185
    Top = 324
    Width = 155
    Height = 21
    Caption = 'Asignar'
    OnClick = AssignBtnClick
  end
  object OriginalLbl: TLabel
    Left = 352
    Top = 255
    Caption = 'Teclas rápidas originales:'
  end
  object OriginalLstBx: TListBox
    Left = 352
    Top = 273
    Width = 154
    Height = 50
  end
  object RestoreBtn: TButton
    Left = 352
    Top = 324
    Width = 154
    Height = 21
    Caption = 'Restaurar teclas originales'
    OnClick = RestoreBtnClick
  end
  object RestoreAllBtn: TButton
    Left = 9
    Top = 365
    Width = 101
    Caption = 'Restaurar todas...'
    OnClick = RestoreAllBtnClick
  end
  object HotKeyListBtn: TButton
    Left = 118
    Top = 365
    Width = 226
    Caption = 'Mostrar todas las teclas rápidas asignadas...'
    OnClick = HotKeyListBtnClick
  end
end