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

  1. inherited CueForm: TCueForm
  2.   Caption = 'Cue Points'
  3.   ClientHeight = 249
  4.   ClientWidth = 376
  5.   PixelsPerInch = 96
  6.   TextHeight = 13
  7.   object CueListLabel: TStaticText [0]
  8.     Left = 8
  9.     Top = 5
  10.     Width = 47
  11.     Height = 17
  12.     Caption = '&Cue list:'
  13.     FocusControl = List
  14.     TabOrder = 10
  15.   end
  16.   inherited ButtonCancel: TButton [1]
  17.     Left = 294
  18.     Top = 74
  19.     Anchors = [akTop, akRight]
  20.     TabOrder = 5
  21.     Visible = False
  22.   end
  23.   inherited ButtonOk: TButton [2]
  24.     Left = 294
  25.     Top = 10
  26.     Anchors = [akTop, akRight]
  27.     Caption = 'Close'
  28.     TabOrder = 4
  29.   end
  30.   inherited ButtonHelp: THelpButton
  31.     Left = 294
  32.     Top = 42
  33.     Anchors = [akTop, akRight]
  34.     TabOrder = 6
  35.     HelpKey = 'tool_cuepoints'
  36.   end
  37.   object List: TListView
  38.     Left = 8
  39.     Top = 22
  40.     Width = 275
  41.     Height = 191
  42.     Columns = <
  43.       item
  44.         Caption = 'Position'
  45.         Width = 100
  46.       end
  47.       item
  48.         AutoSize = True
  49.         Caption = 'Name'
  50.       end>
  51.     HideSelection = False
  52.     ReadOnly = True
  53.     RowSelect = True
  54.     PopupMenu = ListMenu
  55.     SortType = stText
  56.     TabOrder = 0
  57.     ViewStyle = vsReport
  58.     OnColumnClick = ListColumnClick
  59.     OnCompare = ListCompare
  60.     OnDblClick = ListDblClick
  61.   end
  62.   object NewButton: TButton
  63.     Left = 21
  64.     Top = 220
  65.     Width = 75
  66.     Height = 25
  67.     Action = New
  68.     Anchors = [akLeft, akBottom]
  69.     Caption = '&New...'
  70.     TabOrder = 1
  71.   end
  72.   object EditButton: TButton
  73.     Left = 106
  74.     Top = 220
  75.     Width = 75
  76.     Height = 25
  77.     Action = Edit
  78.     Anchors = [akLeft, akBottom]
  79.     Caption = '&Edit...'
  80.     TabOrder = 2
  81.   end
  82.   object DeleteButton: TButton
  83.     Left = 191
  84.     Top = 220
  85.     Width = 75
  86.     Height = 25
  87.     Action = Delete
  88.     Anchors = [akLeft, akBottom]
  89.     Caption = '&Delete'
  90.     TabOrder = 3
  91.   end
  92.   object SplitButton: TButton
  93.     Left = 293
  94.     Top = 144
  95.     Width = 75
  96.     Height = 25
  97.     Action = Split
  98.     Anchors = [akTop, akRight]
  99.     TabOrder = 7
  100.   end
  101.   object SilenceButton: TButton
  102.     Left = 293
  103.     Top = 176
  104.     Width = 75
  105.     Height = 25
  106.     Action = Auto
  107.     Anchors = [akTop, akRight]
  108.     TabOrder = 8
  109.   end
  110.   object CopyButton: TButton
  111.     Left = 294
  112.     Top = 112
  113.     Width = 75
  114.     Height = 25
  115.     Action = Copy
  116.     TabOrder = 9
  117.   end
  118.   object ActionList: TActionList
  119.     Left = 296
  120.     Top = 213
  121.     object New: TAction
  122.       Caption = 'New...'
  123.       OnExecute = NewExecute
  124.     end
  125.     object Edit: TAction
  126.       Caption = 'Edit...'
  127.       OnExecute = EditExecute
  128.       OnUpdate = CueSelectedEnable
  129.     end
  130.     object Delete: TAction
  131.       Caption = 'Delete'
  132.       OnExecute = DeleteExecute
  133.       OnUpdate = CueSelectedEnable
  134.     end
  135.     object Split: TAction
  136.       Caption = 'Split File...'
  137.       OnExecute = SplitExecute
  138.       OnUpdate = CueExistsEnable
  139.     end
  140.     object Auto: TAction
  141.       Caption = 'Auto Cue...'
  142.       OnExecute = AutoExecute
  143.     end
  144.     object SetStart: TAction
  145.       Caption = 'Set Start Marker'
  146.       OnExecute = SetStartExecute
  147.       OnUpdate = CueBeforeFinishEnable
  148.     end
  149.     object SetFinish: TAction
  150.       Caption = 'Set Finish Marker'
  151.       OnExecute = SetFinishExecute
  152.       OnUpdate = CueBeforeStartEnable
  153.     end
  154.     object MoveToStart: TAction
  155.       Caption = 'Move To Start Marker'
  156.       OnExecute = MoveToStartExecute
  157.       OnUpdate = CueSelectedEnable
  158.     end
  159.     object MoveToFinish: TAction
  160.       Caption = 'Move To Finish Marker'
  161.       OnExecute = MoveToFinishExecute
  162.       OnUpdate = CueSelectedEnable
  163.     end
  164.     object Copy: TAction
  165.       Caption = 'Copy All'
  166.       OnExecute = CopyExecute
  167.       OnUpdate = CueExistsEnable
  168.     end
  169.   end
  170.   object ListMenu: TPopupMenu
  171.     Left = 330
  172.     Top = 213
  173.     object Delete1: TMenuItem
  174.       Action = Edit
  175.     end
  176.     object Delete2: TMenuItem
  177.       Action = Delete
  178.     end
  179.     object SetFinishMarker1: TMenuItem
  180.       Action = SetStart
  181.     end
  182.     object SetFinishMarker2: TMenuItem
  183.       Action = SetFinish
  184.     end
  185.     object MoveToFinishMarker1: TMenuItem
  186.       Action = MoveToStart
  187.     end
  188.     object MoveToFinishMarker2: TMenuItem
  189.       Action = MoveToFinish
  190.     end
  191.   end
  192. end
  193.