;the "Insert | Symbol..." menu command

object InsertSymbolForm: TInsertSymbolForm
  Caption = 'Símbolos y caracteres'
  ClientHeight = 381
  ClientWidth = 543
  ActiveControl = CharMap
  object PageControl: TPageControl
    Left = 9
    Top = 9
    Width = 525
    Height = 335
    object SymbolTabSheet: TTabSheet
      Caption = 'Mapa de caracteres'
      object FontLbl: TLabel
        Left = 9
        Top = 12
        Caption = '&Fuente:'
      end
      object FontCmbBx: TAdvComboBox
        Left = 52
        Top = 9
        Width = 165
        Style = csDropDownList
        DropDownCount = 20
        OnChange = FontCmbBxChange
      end
      object SubsetLbl: TLabel
        Left = 225
        Top = 12
        Caption = '&Bloque:'
      end
      object SubsetCmbBx: TComboBox
        Left = 268
        Top = 9
        Width = 240
        Style = csDropDownList
        DropDownCount = 20
        OnChange = SubsetCmbBxChange
      end
      object CharMap: TCharMap
        Left = 9
        Top = 42
        OnDblClick = CharMapDblClick
      end
      object FavLbl: TLabel
        Left = 9
        Top = 210
        Caption = 'Símbolos fa&voritos:'
      end
      object AddToFavBtn: TButton
        Left = 108
        Top = 208
        Width = 20
        Height = 18
        Hint = 'Añadir a los símbolos favoritos'
        Caption = '6'
        Font.Size = 11
        Font.Name = 'Marlett'
        Font.Style = [fsBold]
        OnClick = AddToFavBtnClick
      end
      object DelFavBtn: TButton
        Left = 132
        Top = 208
        Width = 20
        Height = 18
        Hint = 'Eliminar símbolo favorito'
        Caption = 'r'
        Font.Size = 11
        Font.Name = 'Marlett'
        Font.Style = [fsBold]
        OnClick = DelFavBtnClick
      end
      object FavCharMap: TCharMap
        Left = 9
        Top = 230
        OnDblClick = CharMapDblClick
      end
      object CodeLbl: TLabel
        Left = 9
        Top = 275
        Caption = 'Cód&igo:'
      end
      object CodeEdt: TEdit
        Left = 79
        Top = 273
        Width = 69
        OnChange = CodeEdtChange
      end
      object DecBtn: TRadioButton
        Left = 154
        Top = 268
        Caption = '&decimal'
        OnClick = RadBtnClick
      end
      object HexBtn: TRadioButton
        Left = 154
        Top = 285
        Caption = '&hexadecimal'
        OnClick = RadBtnClick
      end
      object HotKeyLbl: TLabel
        Left = 250
        Top = 275
        Caption = 'Tecla rápida:'
      end
      object HotKeyEdt: TEdit
        Left = 318
        Top = 273
        Width = 116
        Enabled = False
      end
      object HotKeyBtn: TButton
        Left = 438
        Top = 273
        Width = 66
        Height = 21
        Caption = 'Ca&mbiar...'
        OnClick = HotKeyBtnClick
      end
    end
    object SpecSymbTabSheet: TTabSheet
      Caption = 'Caracteres especiales'
      object SpecSymbLstBx: TListBox
        Left = 9
        Top = 9
        Width = 500
        Height = 294
        ItemHeight = 16
        Style = lbOwnerDrawFixed
        OnDblClick = SpecSymbLstBxDblClick
        OnDrawItem = SpecSymbLstBxDrawItem
      end
    end
  end
  object ClipBtn: TButton
    Left = 9
    Top = 352
    Width = 155
    Caption = 'Añadir a la biblioteca de c&lips'
    OnClick = ExportBtnClick
  end
  object CopyBtn: TButton
    Left = 169
    Top = 352
    Width = 125
    Caption = 'Enviar al portapa&peles'
    OnClick = ExportBtnClick
  end
  object InsertBtn: TButton
    Left = 382
    Top = 352
    Width = 74
    Caption = 'Insertar'
    Default = True
    OnClick = InsertBtnClick
  end
  object CloseBtn: TButton
    Left = 461
    Top = 352
    Width = 74
    Cancel = True
    Caption = 'Cerrar'
    OnClick = CloseBtnClick
  end
end