;the "Spotlight settings" command of the "Spotlight" toolbar

object SpotlightForm: TSpotlightForm
  Caption = 'Configuración de Foco'
  ClientHeight = 401
  ClientWidth = 622
  OnActivate = FormActivate
  object Lbl: TLabel
    Left = 15
    Top = 15
    Caption = 'Vista previa:'
  end
  object PreviewImg: TImage
    Left = 15
    Top = 35
    Width = 300
    Height = 350
  end
  object Lbl2: TLabel
    Left = 342
    Top = 33
    Caption = 'Foco'
  end
  object LineBtn: TRadioButton
    Left = 404
    Top = 32
    Caption = 'línea &actual'
    OnClick = ControlChange
  end
  object ParBtn: TRadioButton
    Left = 496
    Top = 32
    Caption = 'párrafo &actual'
    OnClick = ControlChange
  end
  object BlurBox: TCheckBox
    Left = 342
    Top = 67
    Caption = '&Desenfoque fuera del foco'
    OnClick = ControlChange
  end
  object DimBox: TCheckBox
    Left = 342
    Top = 102
    Caption = '&Oscurecimiento fuera del foco:'
    OnClick = ControlChange
  end
  object DimBox2: TComboBox
    Left = 512
    Top = 99
    Width = 95
    Style = csDropDownList
    Items.Strings = (
      'ligero'
      'moderado'
      'fuerte'
      'intenso')
    OnClick = ControlChange
  end
  object CenterBox: TCheckBox
    Left = 342
    Top = 137
    Caption = '&Centrar foco verticalmente'
    OnClick = ControlChange
  end
  object HBox: TCheckBox
    Left = 342
    Top = 172
    Caption = 'El foco debe tener al menos'
    OnClick = ControlChange
  end
  object HEdit: TUpDownEdit
    Left = 500
    Top = 170
    Width = 35
    SepDigits = 0
    OnValChange = ControlChange
    Increment = 2
  end
  object Lbl3: TLabel
    Left = 562
    Top = 173
    Width = 70
    Height = 30
    AutoSize = False
    Caption = 'píxeles'#13'de altura'
  end
  object CursorBox: TCheckBox
    Left = 342
    Top = 207
    Caption = '&Ocultar el cursor de texto'
    OnClick = ControlChange
  end
end