_frmVariables.dfm 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. object frmVariables: TfrmVariables
  2. Left = 0
  3. Top = 0
  4. BorderIcons = [biSystemMenu]
  5. BorderStyle = bsSingle
  6. Caption = 'Variables'
  7. ClientHeight = 461
  8. ClientWidth = 1121
  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 = 1121
  25. Height = 77
  26. Align = alTop
  27. BevelOuter = bvNone
  28. Color = clWhite
  29. ParentBackground = False
  30. TabOrder = 0
  31. ExplicitWidth = 917
  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 = 530
  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 = 1121
  59. Height = 325
  60. Align = alTop
  61. TabOrder = 2
  62. ExplicitWidth = 917
  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. SortIndex = 0
  95. SortOrder = soAscending
  96. Width = 83
  97. end
  98. object cxGrid1DBTableView1fldURLFilter: TcxGridDBColumn
  99. Caption = 'URL Filter'
  100. DataBinding.FieldName = 'fldURLFilter'
  101. SortIndex = 2
  102. SortOrder = soAscending
  103. Width = 200
  104. end
  105. object cxGrid1DBTableView1fldPresetFilter: TcxGridDBColumn
  106. Caption = 'Preset Filter'
  107. DataBinding.FieldName = 'fldPresetFilter'
  108. SortIndex = 3
  109. SortOrder = soAscending
  110. Width = 200
  111. end
  112. object cxGrid1DBTableView1fldXPath: TcxGridDBColumn
  113. Caption = 'XPath'
  114. DataBinding.FieldName = 'fldXPath'
  115. Width = 200
  116. end
  117. object cxGrid1DBTableView1fldContent: TcxGridDBColumn
  118. Caption = 'Content'
  119. DataBinding.FieldName = 'fldContent'
  120. PropertiesClassName = 'TcxComboBoxProperties'
  121. Properties.DropDownListStyle = lsEditFixedList
  122. Properties.Items.Strings = (
  123. 'JSON'
  124. 'XML')
  125. SortIndex = 1
  126. SortOrder = soAscending
  127. Width = 70
  128. end
  129. object cxGrid1DBTableView1fldName: TcxGridDBColumn
  130. Caption = 'Name'
  131. DataBinding.FieldName = 'fldName'
  132. SortIndex = 4
  133. SortOrder = soAscending
  134. Width = 150
  135. end
  136. object cxGrid1DBTableView1fldValue: TcxGridDBColumn
  137. Caption = 'Value'
  138. DataBinding.FieldName = 'fldValue'
  139. Width = 210
  140. end
  141. end
  142. object cxGrid1Level1: TcxGridLevel
  143. GridView = cxGrid1DBTableView1
  144. end
  145. end
  146. end