home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 November / CDVD1105.ISO / Software / Freeware / programare / bass / Delphi / fxtest / test.dfm < prev    next >
Encoding:
Text File  |  2005-09-15  |  2.8 KB  |  143 lines

  1. object Form1: TForm1
  2.   Left = 238
  3.   Top = 110
  4.   Width = 206
  5.   Height = 230
  6.   Caption = 'BASS FX Demo'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 16
  20.     Top = 176
  21.     Width = 25
  22.     Height = 13
  23.     Alignment = taCenter
  24.     AutoSize = False
  25.     Caption = '125'
  26.     Transparent = True
  27.   end
  28.   object Label2: TLabel
  29.     Left = 56
  30.     Top = 176
  31.     Width = 25
  32.     Height = 17
  33.     Alignment = taCenter
  34.     AutoSize = False
  35.     Caption = '1000'
  36.     Transparent = True
  37.   end
  38.   object Label3: TLabel
  39.     Left = 96
  40.     Top = 176
  41.     Width = 25
  42.     Height = 17
  43.     Alignment = taCenter
  44.     AutoSize = False
  45.     Caption = '8000'
  46.     Transparent = True
  47.   end
  48.   object Label5: TLabel
  49.     Left = 152
  50.     Top = 176
  51.     Width = 25
  52.     Height = 17
  53.     Alignment = taCenter
  54.     AutoSize = False
  55.     Caption = '0'
  56.     Transparent = True
  57.   end
  58.   object Label4: TLabel
  59.     Left = 24
  60.     Top = 56
  61.     Width = 97
  62.     Height = 17
  63.     Alignment = taCenter
  64.     AutoSize = False
  65.     Caption = 'Equalizer'
  66.     Transparent = True
  67.   end
  68.   object Label6: TLabel
  69.     Left = 140
  70.     Top = 56
  71.     Width = 49
  72.     Height = 17
  73.     Alignment = taCenter
  74.     AutoSize = False
  75.     Caption = 'Reverb'
  76.     Transparent = True
  77.   end
  78.   object Button1: TButton
  79.     Left = 16
  80.     Top = 8
  81.     Width = 169
  82.     Height = 41
  83.     Caption = 'Click here to Open and Play'
  84.     TabOrder = 0
  85.     WordWrap = True
  86.     OnClick = Button1Click
  87.   end
  88.   object TrackBar1: TTrackBar
  89.     Left = 16
  90.     Top = 72
  91.     Width = 33
  92.     Height = 105
  93.     Max = 30
  94.     Orientation = trVertical
  95.     Position = 15
  96.     TabOrder = 1
  97.     OnChange = TrackBar1Change
  98.   end
  99.   object TrackBar2: TTrackBar
  100.     Tag = 1
  101.     Left = 56
  102.     Top = 72
  103.     Width = 33
  104.     Height = 105
  105.     Max = 30
  106.     Orientation = trVertical
  107.     Position = 15
  108.     TabOrder = 2
  109.     OnChange = TrackBar2Change
  110.   end
  111.   object TrackBar3: TTrackBar
  112.     Tag = 2
  113.     Left = 96
  114.     Top = 72
  115.     Width = 33
  116.     Height = 105
  117.     Max = 30
  118.     Orientation = trVertical
  119.     Position = 15
  120.     TabOrder = 3
  121.     OnChange = TrackBar3Change
  122.   end
  123.   object TrackBar4: TTrackBar
  124.     Tag = 3
  125.     Left = 152
  126.     Top = 72
  127.     Width = 33
  128.     Height = 105
  129.     Max = 20
  130.     Orientation = trVertical
  131.     Position = 20
  132.     TabOrder = 4
  133.     OnChange = TrackBar4Change
  134.   end
  135.   object OpenDialog1: TOpenDialog
  136.     Filter = 
  137.       'Playable files|*.mo3;*.xm;*.mod;*.s3m;*.it;*.mtm;*.umx;*.mp3;*.mp2;*.mp1;*.ogg;*.wav;*.aif|All files|*' +
  138.       '.*'
  139.     Options = [ofPathMustExist, ofFileMustExist, ofEnableSizing]
  140.     Top = 72
  141.   end
  142. end
  143.