1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
  
     | 
    
      object Preferences_OutputF: TPreferences_OutputF
  Left = 275
  Top = 145
  BorderIcons = []
  Caption = 'Output'
  ClientHeight = 502
  ClientWidth = 676
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Arial'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  PixelsPerInch = 96
  TextHeight = 14
  object Liste: TComboBox
    Left = 9
    Top = 9
    Width = 216
    Height = 22
    ItemIndex = 0
    TabOrder = 0
    Text = 'General'
    OnChange = ListeChange
    Items.Strings = (
      'General'
      'Video'
      'Audio'
      'Text'
      'Chapters')
  end
  object Memo: TMemo
    Left = 0
    Top = 34
    Width = 716
    Height = 458
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clWindowText
    Font.Height = -15
    Font.Name = 'System'
    Font.Pitch = fpFixed
    Font.Style = []
    Lines.Strings = (
      'Memo')
    ParentFont = False
    TabOrder = 1
  end
  object OK: TButton
    Left = 638
    Top = 0
    Width = 80
    Height = 27
    Caption = 'OK'
    ModalResult = 1
    TabOrder = 2
    OnClick = OKClick
  end
  object Infos: TComboBox
    Left = 0
    Top = 500
    Width = 260
    Height = 22
    Style = csDropDownList
    TabOrder = 3
    OnChange = InfosChange
  end
  object Button1: TButton
    Left = 258
    Top = 500
    Width = 53
    Height = 21
    Caption = 'Repeat'
    TabOrder = 4
    OnClick = InfosChange
  end
  object Cancel: TButton
    Left = 560
    Top = 0
    Width = 81
    Height = 27
    Caption = 'Cancel'
    ModalResult = 2
    TabOrder = 5
  end
end
 
     |