_frmVariables.dfm 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. object frmVariables: TfrmVariables
  2. Left = 0
  3. Top = 0
  4. BorderIcons = [biSystemMenu]
  5. BorderStyle = bsSingle
  6. Caption = 'Variables'
  7. ClientHeight = 461
  8. ClientWidth = 917
  9. Color = clBtnFace
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'Tahoma'
  14. Font.Style = []
  15. KeyPreview = True
  16. OldCreateOrder = False
  17. Position = poMainFormCenter
  18. OnKeyPress = FormKeyPress
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object Panel1: TPanel
  22. Left = 0
  23. Top = 0
  24. Width = 917
  25. Height = 77
  26. Align = alTop
  27. BevelOuter = bvNone
  28. Color = clWhite
  29. ParentBackground = False
  30. TabOrder = 0
  31. ExplicitWidth = 716
  32. object Label1: TLabel
  33. Left = 25
  34. Top = 31
  35. Width = 52
  36. Height = 13
  37. Caption = 'Variables'
  38. Font.Charset = DEFAULT_CHARSET
  39. Font.Color = clWindowText
  40. Font.Height = -11
  41. Font.Name = 'Tahoma'
  42. Font.Style = [fsBold]
  43. ParentFont = False
  44. end
  45. end
  46. object cxButton1: TcxButton
  47. Left = 425
  48. Top = 415
  49. Width = 75
  50. Height = 25
  51. Caption = 'Close'
  52. TabOrder = 1
  53. OnClick = cxButton1Click
  54. end
  55. object cxGrid1: TcxGrid
  56. Left = 0
  57. Top = 77
  58. Width = 917
  59. Height = 325
  60. Align = alTop
  61. TabOrder = 2
  62. ExplicitWidth = 716
  63. object cxGrid1DBTableView1: TcxGridDBTableView
  64. Navigator.Buttons.CustomButtons = <>
  65. Navigator.Buttons.First.Visible = False
  66. Navigator.Buttons.PriorPage.Visible = False
  67. Navigator.Buttons.Prior.Visible = False
  68. Navigator.Buttons.Next.Visible = False
  69. Navigator.Buttons.NextPage.Visible = False
  70. Navigator.Buttons.Last.Visible = False
  71. Navigator.Buttons.Insert.Visible = True
  72. Navigator.Buttons.Edit.Visible = False
  73. Navigator.Buttons.Cancel.Visible = False
  74. Navigator.Buttons.Refresh.Visible = False
  75. Navigator.Buttons.SaveBookmark.Visible = False
  76. Navigator.Buttons.GotoBookmark.Visible = False
  77. Navigator.Buttons.Filter.Visible = False
  78. Navigator.Visible = True
  79. ScrollbarAnnotations.CustomAnnotations = <>
  80. DataController.DataSource = frmMain.dsVariables
  81. DataController.Summary.DefaultGroupSummaryItems = <>
  82. DataController.Summary.FooterSummaryItems = <>
  83. DataController.Summary.SummaryGroups = <>
  84. OptionsView.NoDataToDisplayInfoText = '< No variables defined >'
  85. OptionsView.GroupByBox = False
  86. object cxGrid1DBTableView1fldType: TcxGridDBColumn
  87. Caption = 'Type'
  88. DataBinding.FieldName = 'fldType'
  89. PropertiesClassName = 'TcxComboBoxProperties'
  90. Properties.DropDownListStyle = lsFixedList
  91. Properties.Items.Strings = (
  92. 'Static'
  93. 'XPath')
  94. Width = 83
  95. end
  96. object cxGrid1DBTableView1fldURLFilter: TcxGridDBColumn
  97. Caption = 'URL Filter'
  98. DataBinding.FieldName = 'fldURLFilter'
  99. Width = 200
  100. end
  101. object cxGrid1DBTableView1fldXPath: TcxGridDBColumn
  102. Caption = 'XPath'
  103. DataBinding.FieldName = 'fldXPath'
  104. Width = 200
  105. end
  106. object cxGrid1DBTableView1fldContent: TcxGridDBColumn
  107. Caption = 'Content'
  108. DataBinding.FieldName = 'fldContent'
  109. PropertiesClassName = 'TcxComboBoxProperties'
  110. Properties.DropDownListStyle = lsEditFixedList
  111. Properties.Items.Strings = (
  112. 'JSON'
  113. 'XML')
  114. end
  115. object cxGrid1DBTableView1fldName: TcxGridDBColumn
  116. Caption = 'Name'
  117. DataBinding.FieldName = 'fldName'
  118. SortIndex = 0
  119. SortOrder = soAscending
  120. Width = 150
  121. end
  122. object cxGrid1DBTableView1fldValue: TcxGridDBColumn
  123. Caption = 'Value'
  124. DataBinding.FieldName = 'fldValue'
  125. Width = 210
  126. end
  127. end
  128. object cxGrid1Level1: TcxGridLevel
  129. GridView = cxGrid1DBTableView1
  130. end
  131. end
  132. end