_frmVariables.dfm 3.2 KB

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