form_FM.dfm
上传用户:gelin96
上传日期:2017-01-08
资源大小:20993k
文件大小:11k
源码类别:

MTK

开发平台:

C++ Builder

  1. object frmFM: TfrmFM
  2.   Left = 197
  3.   Top = 169
  4.   Width = 696
  5.   Height = 550
  6.   Caption = 'FM Radio Tool'
  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.   OnActivate = FormActivate
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Panel1: TPanel
  18.     Left = 368
  19.     Top = 32
  20.     Width = 305
  21.     Height = 57
  22.     BevelOuter = bvLowered
  23.     TabOrder = 0
  24.     object Label2: TLabel
  25.       Left = 32
  26.       Top = 8
  27.       Width = 53
  28.       Height = 13
  29.       Caption = 'Frequency '
  30.     end
  31.     object Label3: TLabel
  32.       Left = 112
  33.       Top = 24
  34.       Width = 22
  35.       Height = 13
  36.       Caption = 'MHz'
  37.     end
  38.     object m_edtFreq: TEdit
  39.       Left = 16
  40.       Top = 24
  41.       Width = 89
  42.       Height = 21
  43.       TabOrder = 0
  44.       Text = '90.7'
  45.       OnExit = edtFreqCheck
  46.     end
  47.     object m_btnSetFreq: TButton
  48.       Left = 208
  49.       Top = 16
  50.       Width = 75
  51.       Height = 25
  52.       Caption = 'Set'
  53.       TabOrder = 1
  54.       OnClick = m_btnSetFreqClick
  55.     end
  56.   end
  57.   object Panel2: TPanel
  58.     Left = 368
  59.     Top = 8
  60.     Width = 153
  61.     Height = 25
  62.     BevelOuter = bvLowered
  63.     Caption = 'Frequency Setting'
  64.     Font.Charset = DEFAULT_CHARSET
  65.     Font.Color = clBlue
  66.     Font.Height = -11
  67.     Font.Name = 'MS Sans Serif'
  68.     Font.Style = [fsBold]
  69.     ParentFont = False
  70.     TabOrder = 1
  71.   end
  72.   object Panel3: TPanel
  73.     Left = 8
  74.     Top = 96
  75.     Width = 153
  76.     Height = 25
  77.     BevelOuter = bvLowered
  78.     Caption = 'Audio Setting'
  79.     Font.Charset = DEFAULT_CHARSET
  80.     Font.Color = clBlue
  81.     Font.Height = -11
  82.     Font.Name = 'MS Sans Serif'
  83.     Font.Style = [fsBold]
  84.     ParentFont = False
  85.     TabOrder = 2
  86.   end
  87.   object Panel4: TPanel
  88.     Left = 8
  89.     Top = 120
  90.     Width = 673
  91.     Height = 81
  92.     BevelOuter = bvLowered
  93.     TabOrder = 3
  94.     object Label6: TLabel
  95.       Left = 144
  96.       Top = 40
  97.       Width = 85
  98.       Height = 13
  99.       Caption = 'Stereo blend level'
  100.     end
  101.     object Label4: TLabel
  102.       Left = 440
  103.       Top = 40
  104.       Width = 27
  105.       Height = 13
  106.       Caption = 'Mode'
  107.     end
  108.     object m_cbSoftMute: TCheckBox
  109.       Left = 8
  110.       Top = 16
  111.       Width = 105
  112.       Height = 17
  113.       Caption = 'Soft mute enable'
  114.       TabOrder = 0
  115.     end
  116.     object m_cbStereoBlend: TCheckBox
  117.       Left = 128
  118.       Top = 16
  119.       Width = 121
  120.       Height = 17
  121.       Caption = 'Stereo blend enable'
  122.       Checked = True
  123.       State = cbChecked
  124.       TabOrder = 1
  125.     end
  126.     object m_cbStereoBlendLevel: TComboBox
  127.       Left = 144
  128.       Top = 56
  129.       Width = 81
  130.       Height = 21
  131.       ItemHeight = 13
  132.       ItemIndex = 0
  133.       TabOrder = 2
  134.       Text = '1'
  135.       Items.Strings = (
  136.         '1'
  137.         '2'
  138.         '3')
  139.     end
  140.     object m_cbMode: TComboBox
  141.       Left = 416
  142.       Top = 56
  143.       Width = 81
  144.       Height = 21
  145.       ItemHeight = 13
  146.       ItemIndex = 1
  147.       TabOrder = 3
  148.       Text = 'Stereo'
  149.       OnChange = m_cbModeChange
  150.       Items.Strings = (
  151.         'Mono'
  152.         'Stereo')
  153.     end
  154.     object m_btnSetAudio: TButton
  155.       Left = 552
  156.       Top = 32
  157.       Width = 75
  158.       Height = 25
  159.       Caption = 'Set'
  160.       TabOrder = 4
  161.       OnClick = m_btnSetAudioClick
  162.     end
  163.   end
  164.   object Panel5: TPanel
  165.     Left = 8
  166.     Top = 208
  167.     Width = 153
  168.     Height = 25
  169.     BevelOuter = bvLowered
  170.     Caption = 'Register Read/Write'
  171.     Font.Charset = DEFAULT_CHARSET
  172.     Font.Color = clBlue
  173.     Font.Height = -11
  174.     Font.Name = 'MS Sans Serif'
  175.     Font.Style = [fsBold]
  176.     ParentFont = False
  177.     TabOrder = 4
  178.   end
  179.   object Panel6: TPanel
  180.     Left = 8
  181.     Top = 232
  182.     Width = 673
  183.     Height = 81
  184.     BevelOuter = bvLowered
  185.     TabOrder = 5
  186.     object Label8: TLabel
  187.       Left = 24
  188.       Top = 24
  189.       Width = 38
  190.       Height = 13
  191.       Caption = 'Address'
  192.     end
  193.     object Label9: TLabel
  194.       Left = 96
  195.       Top = 24
  196.       Width = 67
  197.       Height = 13
  198.       Caption = 'Data (Word 1)'
  199.     end
  200.     object Label17: TLabel
  201.       Left = 184
  202.       Top = 24
  203.       Width = 67
  204.       Height = 13
  205.       Caption = 'Data (Word 0)'
  206.     end
  207.     object m_edtAddr: TEdit
  208.       Left = 8
  209.       Top = 40
  210.       Width = 65
  211.       Height = 21
  212.       TabOrder = 0
  213.       Text = '0'
  214.     end
  215.     object m_edtWord1: TEdit
  216.       Left = 96
  217.       Top = 40
  218.       Width = 65
  219.       Height = 21
  220.       TabOrder = 1
  221.       Text = '0'
  222.     end
  223.     object m_btnRead: TButton
  224.       Left = 320
  225.       Top = 40
  226.       Width = 75
  227.       Height = 25
  228.       Caption = 'Read'
  229.       TabOrder = 2
  230.       OnClick = m_btnReadClick
  231.     end
  232.     object m_btnWrite: TButton
  233.       Left = 408
  234.       Top = 40
  235.       Width = 75
  236.       Height = 25
  237.       Caption = 'Write'
  238.       TabOrder = 3
  239.       OnClick = m_btnWriteClick
  240.     end
  241.     object m_edtWord0: TEdit
  242.       Left = 184
  243.       Top = 40
  244.       Width = 65
  245.       Height = 21
  246.       TabOrder = 4
  247.       Text = '0'
  248.     end
  249.   end
  250.   object Panel7: TPanel
  251.     Left = 8
  252.     Top = 320
  253.     Width = 153
  254.     Height = 25
  255.     BevelOuter = bvLowered
  256.     Caption = 'Status'
  257.     Font.Charset = DEFAULT_CHARSET
  258.     Font.Color = clBlue
  259.     Font.Height = -11
  260.     Font.Name = 'MS Sans Serif'
  261.     Font.Style = [fsBold]
  262.     ParentFont = False
  263.     TabOrder = 6
  264.   end
  265.   object m_sbFM: TStatusBar
  266.     Left = 0
  267.     Top = 496
  268.     Width = 688
  269.     Height = 27
  270.     Panels = <
  271.       item
  272.         Width = 50
  273.       end>
  274.     SimplePanel = False
  275.   end
  276.   object Panel8: TPanel
  277.     Left = 8
  278.     Top = 344
  279.     Width = 673
  280.     Height = 57
  281.     BevelOuter = bvLowered
  282.     TabOrder = 8
  283.     object Label10: TLabel
  284.       Left = 32
  285.       Top = 8
  286.       Width = 25
  287.       Height = 13
  288.       Caption = 'RSSI'
  289.     end
  290.     object Label11: TLabel
  291.       Left = 112
  292.       Top = 8
  293.       Width = 49
  294.       Height = 13
  295.       Caption = 'IF Counter'
  296.     end
  297.     object Label15: TLabel
  298.       Left = 208
  299.       Top = 8
  300.       Width = 41
  301.       Height = 13
  302.       Caption = 'H/L side'
  303.     end
  304.     object Label16: TLabel
  305.       Left = 296
  306.       Top = 8
  307.       Width = 62
  308.       Height = 13
  309.       Caption = 'Stereo/mono'
  310.     end
  311.     object m_btnGet: TButton
  312.       Left = 424
  313.       Top = 16
  314.       Width = 75
  315.       Height = 25
  316.       Caption = 'Get'
  317.       TabOrder = 0
  318.       OnClick = m_btnGetClick
  319.     end
  320.     object m_stRssi: TStaticText
  321.       Left = 16
  322.       Top = 24
  323.       Width = 58
  324.       Height = 17
  325.       Alignment = taCenter
  326.       AutoSize = False
  327.       BorderStyle = sbsSingle
  328.       Color = clSkyBlue
  329.       ParentColor = False
  330.       TabOrder = 1
  331.     end
  332.     object m_stIfCounter: TStaticText
  333.       Left = 109
  334.       Top = 24
  335.       Width = 58
  336.       Height = 17
  337.       Alignment = taCenter
  338.       AutoSize = False
  339.       BorderStyle = sbsSingle
  340.       Color = clSkyBlue
  341.       ParentColor = False
  342.       TabOrder = 2
  343.     end
  344.     object m_stHLSide: TStaticText
  345.       Left = 202
  346.       Top = 24
  347.       Width = 58
  348.       Height = 17
  349.       Alignment = taCenter
  350.       AutoSize = False
  351.       BorderStyle = sbsSingle
  352.       Color = clSkyBlue
  353.       ParentColor = False
  354.       TabOrder = 3
  355.     end
  356.     object m_stStereoMono: TStaticText
  357.       Left = 296
  358.       Top = 24
  359.       Width = 58
  360.       Height = 17
  361.       Alignment = taCenter
  362.       AutoSize = False
  363.       BorderStyle = sbsSingle
  364.       Color = clSkyBlue
  365.       ParentColor = False
  366.       TabOrder = 4
  367.     end
  368.   end
  369.   object Panel9: TPanel
  370.     Left = 8
  371.     Top = 408
  372.     Width = 153
  373.     Height = 25
  374.     BevelOuter = bvLowered
  375.     Caption = 'Station Search'
  376.     Font.Charset = DEFAULT_CHARSET
  377.     Font.Color = clBlue
  378.     Font.Height = -11
  379.     Font.Name = 'MS Sans Serif'
  380.     Font.Style = [fsBold]
  381.     ParentFont = False
  382.     TabOrder = 9
  383.     Visible = False
  384.   end
  385.   object Panel10: TPanel
  386.     Left = 8
  387.     Top = 432
  388.     Width = 673
  389.     Height = 57
  390.     BevelOuter = bvLowered
  391.     TabOrder = 10
  392.     Visible = False
  393.     object Label12: TLabel
  394.       Left = 20
  395.       Top = 8
  396.       Width = 71
  397.       Height = 13
  398.       Caption = 'RSSI threshold'
  399.     end
  400.     object Label1: TLabel
  401.       Left = 112
  402.       Top = 8
  403.       Width = 74
  404.       Height = 13
  405.       Caption = 'IF counter delta'
  406.     end
  407.     object Label13: TLabel
  408.       Left = 552
  409.       Top = 8
  410.       Width = 33
  411.       Height = 13
  412.       Caption = 'Station'
  413.     end
  414.     object Label14: TLabel
  415.       Left = 616
  416.       Top = 24
  417.       Width = 22
  418.       Height = 13
  419.       Caption = 'MHz'
  420.     end
  421.     object m_btnSearchNextStation: TButton
  422.       Left = 216
  423.       Top = 24
  424.       Width = 129
  425.       Height = 25
  426.       Caption = 'Search next station'
  427.       TabOrder = 0
  428.       OnClick = m_btnSearchNextStationClick
  429.     end
  430.     object m_btnSearchPreStation: TButton
  431.       Left = 360
  432.       Top = 24
  433.       Width = 129
  434.       Height = 25
  435.       Caption = 'Search previous station'
  436.       TabOrder = 1
  437.       OnClick = m_btnSearchPreStationClick
  438.     end
  439.     object m_edtStation: TEdit
  440.       Left = 528
  441.       Top = 24
  442.       Width = 81
  443.       Height = 21
  444.       TabOrder = 2
  445.       Text = '90.7'
  446.     end
  447.     object m_cbRssiThreshold: TComboBox
  448.       Left = 16
  449.       Top = 24
  450.       Width = 73
  451.       Height = 21
  452.       ItemHeight = 13
  453.       ItemIndex = 0
  454.       TabOrder = 3
  455.       Text = 'Level 1'
  456.       Items.Strings = (
  457.         'Level 1'
  458.         'Level 2'
  459.         'Level 3'
  460.         'Level 4'
  461.         'Level 5'
  462.         'Level 6')
  463.     end
  464.     object m_cbIfCounterDelta: TComboBox
  465.       Left = 112
  466.       Top = 24
  467.       Width = 73
  468.       Height = 21
  469.       ItemHeight = 13
  470.       ItemIndex = 4
  471.       TabOrder = 4
  472.       Text = '30'
  473.       Items.Strings = (
  474.         '10'
  475.         '15'
  476.         '20'
  477.         '25'
  478.         '30')
  479.     end
  480.   end
  481.   object lblHint: TStaticText
  482.     Left = 384
  483.     Top = 0
  484.     Width = 33
  485.     Height = 17
  486.     BorderStyle = sbsSingle
  487.     Caption = 'lblHint'
  488.     Color = clYellow
  489.     ParentColor = False
  490.     TabOrder = 11
  491.     Visible = False
  492.   end
  493.   object Panel11: TPanel
  494.     Left = 8
  495.     Top = 8
  496.     Width = 153
  497.     Height = 25
  498.     BevelOuter = bvLowered
  499.     Caption = 'Reset '
  500.     Font.Charset = DEFAULT_CHARSET
  501.     Font.Color = clBlue
  502.     Font.Height = -11
  503.     Font.Name = 'MS Sans Serif'
  504.     Font.Style = [fsBold]
  505.     ParentFont = False
  506.     TabOrder = 12
  507.   end
  508.   object Panel12: TPanel
  509.     Left = 8
  510.     Top = 32
  511.     Width = 305
  512.     Height = 57
  513.     BevelOuter = bvLowered
  514.     TabOrder = 13
  515.     object m_btnReset: TButton
  516.       Left = 64
  517.       Top = 16
  518.       Width = 75
  519.       Height = 25
  520.       Caption = 'Reset'
  521.       TabOrder = 0
  522.       OnClick = m_btnResetClick
  523.     end
  524.   end
  525.   object HintTimer: TTimer
  526.     Enabled = False
  527.     Interval = 4000
  528.     OnTimer = HintTimerTimer
  529.     Left = 432
  530.   end
  531. end