;the "Insert | Table of Contents..." menu command, the "Entries..." button

object TOCEntryForm: TTOCEntryForm
  Caption = 'Entradas de Tabla de Contenidos'
  ClientHeight = 432
  ClientWidth = 321
  object ComposeLbl: TLabel
    Left = 15
    Top = 15
    Caption = 'Componer tabla de contenidos desde:'
  end
  object OutlStyleRadBtn: TRadioButton
    Left = 15
    Top = 48
    Caption = 'estilos de esquema (Titulo 1, Titulo 2, etc)'
    Font.Style = [fsBold]
    OnClick = ControlChange
  end
  object CollectLevLbl: TLabel
    Left = 50
    Top = 77
    Caption = 'Recolectar niveles:'
  end
  object CollectLevCmbBx: TComboBox
    Left = 150
    Top = 73
    Width = 55
    Style = csDropDownList
    Items.Strings = (
      '1'
      '2'
      '3'
      '4'
      '5'
      '6'
      '7'
      '8'
      '9')
  end
  object DirChkBx: TCheckBox
    Left = 50
    Top = 103
    Caption = 'incluir niveles de esquema directo'
  end
  object CustomRadBtn: TRadioButton
    Left = 15
    Top = 142
    Caption = 'estilos personalizados:'
    Font.Style = [fsBold]
    OnClick = ControlChange
  end
  object LevelLbl: TLabel
    Left = 230
    Top = 142
    Caption = 'Nivel TOC:'
  end
  object StyleLstBx: TListBox
    Left = 15
    Top = 163
    Width = 293
    Style = lbOwnerDrawFixed
    OnDrawItem = StyleLstBxDrawItem
  end
  object BookmarkLbl: TLabel
    Left = 15
    Top = 337
    Caption = 'Recolectar entradas del fragmento marcado con marcador:'
  end
  object BookmarkCmbBx: TComboBox
    Left = 15
    Top = 355
    Width = 293
  end
end