home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 October / Chip_2004-10_cd1.bin / tema / goldwave / gwave506.exe / GoldWave.exe / 0 / RCDATA / TBATCHFORM / TBATCHFORM.txt
Text File  |  2003-10-10  |  13KB  |  442 lines

  1. inherited BatchForm: TBatchForm
  2.   Left = 246
  3.   Top = 167
  4.   Caption = 'Batch Processing'
  5.   ClientHeight = 381
  6.   ClientWidth = 462
  7.   PixelsPerInch = 96
  8.   TextHeight = 13
  9.   inherited ButtonOk: TButton
  10.     Left = 217
  11.     Top = 351
  12.     Enabled = False
  13.     TabOrder = 8
  14.     Visible = False
  15.   end
  16.   inherited ButtonCancel: TButton
  17.     Left = 297
  18.     Top = 351
  19.     TabOrder = 9
  20.   end
  21.   inherited ButtonHelp: THelpButton
  22.     Left = 377
  23.     Top = 351
  24.     TabOrder = 10
  25.     HelpKey = 'file_batch'
  26.   end
  27.   object PageControl: TPageControl
  28.     Left = 6
  29.     Top = 182
  30.     Width = 449
  31.     Height = 161
  32.     ActivePage = Process
  33.     TabOrder = 6
  34.     OnChanging = PageControlChanging
  35.     object Convert: TTabSheet
  36.       Caption = 'Convert'
  37.       inline FormatFrame: TFormatSelectFrame
  38.         Left = 8
  39.         Top = 32
  40.         Width = 422
  41.         TabOrder = 1
  42.         inherited SaveType: TComboBox
  43.           Width = 347
  44.         end
  45.         inherited Attributes: TComboBox
  46.           Width = 347
  47.         end
  48.       end
  49.       object ConvertAll: TCheckBox
  50.         Left = 80
  51.         Top = 13
  52.         Width = 152
  53.         Height = 17
  54.         Action = ConvertAction
  55.         TabOrder = 0
  56.       end
  57.       object RateBox: TCheckBox
  58.         Left = 80
  59.         Top = 94
  60.         Width = 70
  61.         Height = 17
  62.         Caption = 'Rate (Hz):'
  63.         TabOrder = 2
  64.       end
  65.       object Rate: TNumBox
  66.         Left = 149
  67.         Top = 92
  68.         Width = 73
  69.         Height = 21
  70.         TabStop = True
  71.         Value = 44100
  72.         Min = 1000
  73.         Max = 192000
  74.         PageChange = 100
  75.         LineChange = 100
  76.         Label = 'Rate'
  77.         Buddy = RateBuddy
  78.         DropDownCount = 12
  79.         Items.Strings = (
  80.           '5500'
  81.           '6000'
  82.           '7333'
  83.           '8000'
  84.           '11025'
  85.           '16000'
  86.           '22050'
  87.           '32000'
  88.           '44100'
  89.           '48000'
  90.           '88200'
  91.           '96000'
  92.           '192000')
  93.         TabOrder = 3
  94.         Text = '44100'
  95.         MaxLength = 7
  96.       end
  97.       object RateBuddy: TBuddyUpDown
  98.         Left = 222
  99.         Top = 92
  100.         Width = 15
  101.         Height = 21
  102.         Associate = Rate
  103.         Increment = 100
  104.         TabOrder = 4
  105.       end
  106.     end
  107.     object Process: TTabSheet
  108.       Caption = 'Process'
  109.       ImageIndex = 1
  110.       object AddEffect: TButton
  111.         Left = 359
  112.         Top = 7
  113.         Width = 75
  114.         Height = 25
  115.         Anchors = [akTop, akRight]
  116.         Caption = 'Add Effect...'
  117.         TabOrder = 1
  118.         OnClick = AddEffectClick
  119.       end
  120.       object RemoveEffect: TButton
  121.         Left = 359
  122.         Top = 71
  123.         Width = 75
  124.         Height = 25
  125.         Action = RemoveEffectAction
  126.         Anchors = [akTop, akRight]
  127.         TabOrder = 3
  128.       end
  129.       object EffectList: TListView
  130.         Left = 6
  131.         Top = 8
  132.         Width = 345
  133.         Height = 119
  134.         Columns = <
  135.           item
  136.             Caption = 'Effect or Chain'
  137.             Width = 180
  138.           end
  139.           item
  140.             AutoSize = True
  141.             Caption = 'Effect Preset'
  142.             MinWidth = 100
  143.           end>
  144.         ColumnClick = False
  145.         HideSelection = False
  146.         ReadOnly = True
  147.         RowSelect = True
  148.         SmallImages = EffectImageList
  149.         TabOrder = 0
  150.         ViewStyle = vsReport
  151.       end
  152.       object AddChain: TButton
  153.         Left = 359
  154.         Top = 39
  155.         Width = 75
  156.         Height = 25
  157.         Anchors = [akTop, akRight]
  158.         Caption = 'Add Chain...'
  159.         TabOrder = 2
  160.         OnClick = AddChainClick
  161.       end
  162.       object RemoveAllEffects: TButton
  163.         Left = 359
  164.         Top = 103
  165.         Width = 75
  166.         Height = 25
  167.         Action = RemoveAllEffectAction
  168.         Anchors = [akTop, akRight]
  169.         TabOrder = 4
  170.       end
  171.     end
  172.     object Folder: TTabSheet
  173.       Caption = 'Folder'
  174.       ImageIndex = 2
  175.       object OriginalFolders: TRadioButton
  176.         Left = 28
  177.         Top = 18
  178.         Width = 193
  179.         Height = 17
  180.         Caption = 'Store all files in their original folders'
  181.         Checked = True
  182.         TabOrder = 0
  183.         TabStop = True
  184.         OnClick = FolderModeChange
  185.       end
  186.       object CommonFolder: TRadioButton
  187.         Left = 28
  188.         Top = 36
  189.         Width = 193
  190.         Height = 17
  191.         Caption = 'Store all files in this folder:'
  192.         TabOrder = 1
  193.         OnClick = FolderModeChange
  194.       end
  195.       inline FolderFrame: TFolderFrame
  196.         Left = 46
  197.         Top = 54
  198.         TabOrder = 2
  199.       end
  200.       object Overwrite: TCheckBox
  201.         Left = 28
  202.         Top = 89
  203.         Width = 137
  204.         Height = 17
  205.         Caption = 'Overwrite existing files'
  206.         TabOrder = 3
  207.       end
  208.     end
  209.     object Information: TTabSheet
  210.       Caption = 'Information'
  211.       ImageIndex = 3
  212.       object RetainInfo: TRadioButton
  213.         Left = 28
  214.         Top = 18
  215.         Width = 213
  216.         Height = 17
  217.         Caption = 'Retain information currently in each file'
  218.         Checked = True
  219.         TabOrder = 0
  220.         TabStop = True
  221.       end
  222.       object ReplaceInfo: TRadioButton
  223.         Left = 28
  224.         Top = 36
  225.         Width = 237
  226.         Height = 17
  227.         Caption = 'Replace information in all files'
  228.         TabOrder = 1
  229.       end
  230.       object SetInfo: TButton
  231.         Left = 47
  232.         Top = 58
  233.         Width = 75
  234.         Height = 25
  235.         Action = SetInfoAction
  236.         TabOrder = 2
  237.       end
  238.     end
  239.   end
  240.   object FileList: TListView
  241.     Left = 6
  242.     Top = 23
  243.     Width = 365
  244.     Height = 152
  245.     Columns = <
  246.       item
  247.         Caption = 'Name'
  248.         Width = -1
  249.         WidthType = (
  250.           -1)
  251.       end>
  252.     ColumnClick = False
  253.     HideSelection = False
  254.     ReadOnly = True
  255.     ShowColumnHeaders = False
  256.     TabOrder = 1
  257.     ViewStyle = vsReport
  258.   end
  259.   object AddFiles: TButton
  260.     Left = 380
  261.     Top = 23
  262.     Width = 75
  263.     Height = 25
  264.     Anchors = [akTop, akRight]
  265.     Caption = 'Add Files...'
  266.     TabOrder = 2
  267.     OnClick = AddFilesClick
  268.   end
  269.   object AddFolder: TButton
  270.     Left = 380
  271.     Top = 54
  272.     Width = 75
  273.     Height = 25
  274.     Anchors = [akTop, akRight]
  275.     Caption = 'Add Folder...'
  276.     TabOrder = 3
  277.     OnClick = AddFolderClick
  278.   end
  279.   object RemoveFile: TButton
  280.     Left = 380
  281.     Top = 119
  282.     Width = 75
  283.     Height = 25
  284.     Action = RemoveFileAction
  285.     Anchors = [akTop, akRight]
  286.     TabOrder = 4
  287.   end
  288.   object FilesLabel: TStaticText
  289.     Left = 6
  290.     Top = 6
  291.     Width = 135
  292.     Height = 17
  293.     Caption = 'Files and folders to process:'
  294.     TabOrder = 0
  295.   end
  296.   object RemoveAllFiles: TButton
  297.     Left = 380
  298.     Top = 150
  299.     Width = 75
  300.     Height = 25
  301.     Action = RemoveAllFileAction
  302.     Anchors = [akTop, akRight]
  303.     TabOrder = 5
  304.   end
  305.   object Begin: TButton
  306.     Left = 217
  307.     Top = 351
  308.     Width = 75
  309.     Height = 25
  310.     Action = BeginAction
  311.     Anchors = [akRight, akBottom]
  312.     Default = True
  313.     TabOrder = 7
  314.   end
  315.   object OpenDialog: TOpenDialog
  316.     DefaultExt = '*.wav'
  317.     Filter = 'All (*.*)|*.*'
  318.     Options = [ofHideReadOnly, ofAllowMultiSelect, ofPathMustExist, ofFileMustExist, ofEnableSizing]
  319.     Title = 'Add Files'
  320.     Left = 7
  321.     Top = 349
  322.   end
  323.   object ActionList: TActionList
  324.     Left = 41
  325.     Top = 349
  326.     object RemoveFileAction: TAction
  327.       Caption = 'Remove'
  328.       OnExecute = RemoveFileExecute
  329.       OnUpdate = RemoveFileEnable
  330.     end
  331.     object RemoveAllFileAction: TAction
  332.       Caption = 'Remove All'
  333.       OnExecute = RemoveAllFileExecute
  334.       OnUpdate = RemoveAllFileEnable
  335.     end
  336.     object RemoveEffectAction: TAction
  337.       Caption = 'Remove'
  338.       OnExecute = RemoveEffectExecute
  339.       OnUpdate = RemoveEffectEnable
  340.     end
  341.     object RemoveAllEffectAction: TAction
  342.       Caption = 'Remove All'
  343.       OnExecute = RemoveAllEffectExecute
  344.       OnUpdate = RemoveAllEffectEnable
  345.     end
  346.     object SetInfoAction: TAction
  347.       Caption = 'Set Info...'
  348.       OnExecute = SetInfoExecute
  349.       OnUpdate = SetInfoEnable
  350.     end
  351.     object BeginAction: TAction
  352.       Caption = 'Begin'
  353.       OnExecute = BeginExecute
  354.       OnUpdate = BeginUpdate
  355.     end
  356.     object ConvertAction: TAction
  357.       Caption = 'Convert files to this format:'
  358.       OnUpdate = ConvertActionUpdate
  359.     end
  360.   end
  361.   object EffectImageList: TImageList
  362.     DrawingStyle = dsTransparent
  363.     Left = 77
  364.     Top = 350
  365.     Bitmap = {
  366.       494C010102000400040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  367.       0000000000003600000028000000400000001000000001001000000000000008
  368.       0000000000000000000000000000000000000000000000000000000000000000
  369.       0000000000000000000000000000000000000000000000000000000000000000
  370.       1042104200000000000000000000000000000000000000000000000000000000
  371.       0000000000000000000000000000000000000000000000000000000000000000
  372.       0000000000000000000000000000000000000000000000000000000000000000
  373.       0000000000000000000000000000000000000000000000000000000000001042
  374.       E07FE07F10420000000000000000000000000000000000000000000000000000
  375.       0000000000000000000000000000000000000000000000000000000000000000
  376.       0000000000000000000000000000000000000000104210421042000000000000
  377.       104210420000000000000000104210421042000000000000000000001042E07F
  378.       E07FE07FE07F1042000000000000000000000000000000000000000000000000
  379.       0000000000000000000000000000000000000000000000000000000000000000
  380.       0000000000000000000000000000000000000000E07FE07F1042000000000000
  381.       E07FE07F1042000000000000E07FE07F104200000000000000000000E07FE07F
  382.       E07FE07FE07FE07F104200000000000000000000000000000000000000000000
  383.       0000000000000000000000000000000000000000000000000000000000000000
  384.       0000000000000000000000000000000000000000E07FE07F1042000000000000
  385.       0000E07FE07F10420000E07FE07F104200000000000000000000000000000000
  386.       E07FE07F10420000000000000000000000000000000000000000000000000000
  387.       0000000000000000000000000000000000000000000000000000000000000000
  388.       0000000000000000000000000000000000000000E07FE07F1042000000000000
  389.       00000000E07FE07FE07FE07F1042000000000000000000001042104210421042
  390.       E07FE07F10421042104210421042000000000000000000000000000000000000
  391.       0000000000000000000000000000000000000000000000000000000000000000
  392.       0000000000000000000000000000000000000000E07FE07F1042000000000000
  393.       000000000000E07FE07F1042000000000000000000000000E07FE07FE07FE07F
  394.       10001000E07FE07FE07FE07F1042000000000000000000000000000000000000
  395.       0000000000000000000000000000000000000000000000000000000000000000
  396.       0000000000000000000000000000000000000000E07FE07F1042104210421042
  397.       00000000E07FE07FE07FE07F104200000000000000000000E07FE07FE07FE07F
  398.       E07FE07FE07FE07FE07FE07F1042000000000000000000000000000000000000
  399.       0000000000000000000000000000000000000000000000000000000000000000
  400.       0000000000000000000000000000000000000000E07FE07FE07FE07FE07F1042
  401.       0000E07FE07F10420000E07FE07F10420000000000000000E07FE07FE07FE07F
  402.       10001000E07FE07FE07FE07F1042000000000000000000000000000000000000
  403.       0000000000000000000000000000000000000000000000000000000000000000
  404.       0000000000000000000000000000000000000000E07FE07FE07FE07FE07F1042
  405.       E07FE07F1042000000000000E07FE07F1042000000000000E07FE07FE07FE07F
  406.       10001000E07FE07FE07FE07F1042000000000000000000000000000000000000
  407.       0000000000000000000000000000000000000000000000000000000000000000
  408.       0000000000000000000000000000000000000000E07FE07F1042000000000000
  409.       000000000000000000000000000000000000000000000000E07FE07FE07FE07F
  410.       004210001000E07FE07FE07F1042000000000000000000000000000000000000
  411.       0000000000000000000000000000000000000000000000000000000000000000
  412.       0000000000000000000000000000000000000000E07FE07F1042104210421042
  413.       104210420000000000000000000000000000000000000000E07FE07FE07FE07F
  414.       E07FE07F10001000E07FE07F1042000000000000000000000000000000000000
  415.       0000000000000000000000000000000000000000000000000000000000000000
  416.       0000000000000000000000000000000000000000E07FE07FE07FE07FE07FE07F
  417.       E07F10420000000000000000000000000000000000000000E07FE07F10001000
  418.       E07FE07F10001000E07FE07F1042000000000000000000000000000000000000
  419.       0000000000000000000000000000000000000000000000000000000000000000
  420.       0000000000000000000000000000000000000000E07FE07FE07FE07FE07FE07F
  421.       E07F10420000000000000000000000000000000000000000E07FE07FE07F1000
  422.       100010001000E07FE07FE07F1042000000000000000000000000000000000000
  423.       0000000000000000000000000000000000000000000000000000000000000000
  424.       0000000000000000000000000000000000000000000000000000000000000000
  425.       000000000000000000000000000000000000000000000000E07FE07FE07FE07F
  426.       E07FE07FE07FE07FE07FE07F1042000000000000000000000000000000000000
  427.       0000000000000000000000000000000000000000000000000000000000000000
  428.       0000000000000000000000000000000000000000000000000000000000000000
  429.       0000000000000000000000000000000000000000000000000000000000000000
  430.       E07FE07F10420000000000000000000000000000000000000000000000000000
  431.       0000000000000000000000000000000000000000000000000000000000000000
  432.       000000000000000000000000000000000000424D3E000000000000003E000000
  433.       2800000040000000100000000100010000000000800000000000000000000000
  434.       000000000000000000000000FFFFFF00FFFFFE7F00000000FFFFFC3F00000000
  435.       8E78F81F000000008E38F80F000000008F11FE3F000000008F83E00300000000
  436.       8FC7E003000000008183E003000000008111E003000000008038E00300000000
  437.       8FFFE00300000000807FE00300000000807FE00300000000807FE00300000000
  438.       FFFFE00300000000FFFFFE3F0000000000000000000000000000000000000000
  439.       000000000000}
  440.   end
  441. end
  442.