Editor.dfm
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:4k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. object FormEditor: TFormEditor
  2.   Left = 281
  3.   Top = 269
  4.   BorderStyle = bsDialog
  5.   Caption = 'Filter Editor'
  6.   ClientHeight = 237
  7.   ClientWidth = 421
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poScreenCenter
  16.   OnCloseQuery = FormCloseQuery
  17.   OnShow = FormShow
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object PageControl1: TPageControl
  21.     Left = 0
  22.     Top = 0
  23.     Width = 421
  24.     Height = 237
  25.     ActivePage = Selector
  26.     Align = alClient
  27.     TabOrder = 0
  28.     object Selector: TTabSheet
  29.       Caption = 'Selector'
  30.       object Label1: TLabel
  31.         Left = 8
  32.         Top = 8
  33.         Width = 50
  34.         Height = 13
  35.         Caption = 'Categories'
  36.       end
  37.       object Label2: TLabel
  38.         Left = 8
  39.         Top = 48
  40.         Width = 27
  41.         Height = 13
  42.         Caption = 'Filters'
  43.       end
  44.       object Label3: TLabel
  45.         Left = 240
  46.         Top = 8
  47.         Width = 47
  48.         Height = 13
  49.         Caption = 'Interfaces'
  50.       end
  51.       object cbCategories: TComboBox
  52.         Left = 8
  53.         Top = 24
  54.         Width = 225
  55.         Height = 21
  56.         Style = csDropDownList
  57.         ItemHeight = 13
  58.         TabOrder = 0
  59.         OnChange = cbCategoriesChange
  60.       end
  61.       object lbFilters: TListBox
  62.         Left = 8
  63.         Top = 64
  64.         Width = 225
  65.         Height = 137
  66.         ItemHeight = 13
  67.         PopupMenu = PopupMenu
  68.         TabOrder = 1
  69.         OnClick = lbFiltersClick
  70.       end
  71.       object Interfaces: TListBox
  72.         Left = 240
  73.         Top = 24
  74.         Width = 169
  75.         Height = 177
  76.         ItemHeight = 13
  77.         TabOrder = 2
  78.         OnDblClick = InterfacesDblClick
  79.       end
  80.     end
  81.     object Pins: TTabSheet
  82.       Caption = 'Pins'
  83.       ImageIndex = 1
  84.       OnShow = PinsShow
  85.       object Label4: TLabel
  86.         Left = 0
  87.         Top = 8
  88.         Width = 20
  89.         Height = 13
  90.         Caption = 'Pins'
  91.       end
  92.       object Label5: TLabel
  93.         Left = 152
  94.         Top = 8
  95.         Width = 47
  96.         Height = 13
  97.         Caption = 'Interfaces'
  98.       end
  99.       object lbPins: TListBox
  100.         Left = 0
  101.         Top = 24
  102.         Width = 145
  103.         Height = 97
  104.         ItemHeight = 13
  105.         PopupMenu = PinMenu
  106.         TabOrder = 0
  107.         OnClick = lbPinsClick
  108.       end
  109.       object PinInterfaces: TListBox
  110.         Left = 152
  111.         Top = 24
  112.         Width = 177
  113.         Height = 97
  114.         ItemHeight = 13
  115.         TabOrder = 1
  116.         OnDblClick = PinInterfacesDblClick
  117.       end
  118.       object MediaTypes: TListBox
  119.         Left = 0
  120.         Top = 128
  121.         Width = 409
  122.         Height = 73
  123.         ItemHeight = 13
  124.         TabOrder = 2
  125.       end
  126.     end
  127.   end
  128.   object FilterGraph: TFilterGraph
  129.     AutoCreate = True
  130.     GraphEdit = False
  131.     Left = 16
  132.     Top = 96
  133.   end
  134.   object Filter: TFilter
  135.     BaseFilter.data = {00000000}
  136.     FilterGraph = FilterGraph
  137.     Left = 48
  138.     Top = 96
  139.   end
  140.   object PopupMenu: TPopupMenu
  141.     OnPopup = PopupMenuPopup
  142.     Left = 80
  143.     Top = 96
  144.     object PropertyPage: TMenuItem
  145.       Caption = 'Property Page'
  146.       OnClick = PropertyPageClick
  147.     end
  148.     object VFWCapture: TMenuItem
  149.       Caption = 'VFW Capture'
  150.       object VFWFormat: TMenuItem
  151.         Caption = 'Format'
  152.         OnClick = VFWFormatClick
  153.       end
  154.       object VFWSource: TMenuItem
  155.         Caption = 'Source'
  156.         OnClick = VFWSourceClick
  157.       end
  158.       object VFWDisplay: TMenuItem
  159.         Caption = 'Display'
  160.         OnClick = VFWDisplayClick
  161.       end
  162.     end
  163.     object VFWConfig: TMenuItem
  164.       Caption = 'VFW Compress'
  165.       object Config1: TMenuItem
  166.         Caption = 'Config'
  167.         OnClick = Config1Click
  168.       end
  169.       object VFWAbout: TMenuItem
  170.         Caption = 'About'
  171.         OnClick = VFWAboutClick
  172.       end
  173.     end
  174.   end
  175.   object PinMenu: TPopupMenu
  176.     OnPopup = PinMenuPopup
  177.     Left = 112
  178.     Top = 96
  179.     object PinProperty: TMenuItem
  180.       Caption = 'Property Page'
  181.       OnClick = PinPropertyClick
  182.     end
  183.   end
  184. end