123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- object frmVariables: TfrmVariables
- Left = 0
- Top = 0
- BorderIcons = [biSystemMenu]
- BorderStyle = bsSingle
- Caption = 'Variables'
- ClientHeight = 461
- ClientWidth = 917
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Tahoma'
- Font.Style = []
- KeyPreview = True
- OldCreateOrder = False
- Position = poMainFormCenter
- OnKeyPress = FormKeyPress
- PixelsPerInch = 96
- TextHeight = 13
- object Panel1: TPanel
- Left = 0
- Top = 0
- Width = 917
- Height = 77
- Align = alTop
- BevelOuter = bvNone
- Color = clWhite
- ParentBackground = False
- TabOrder = 0
- ExplicitWidth = 716
- object Label1: TLabel
- Left = 25
- Top = 31
- Width = 52
- Height = 13
- Caption = 'Variables'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Tahoma'
- Font.Style = [fsBold]
- ParentFont = False
- end
- end
- object cxButton1: TcxButton
- Left = 425
- Top = 415
- Width = 75
- Height = 25
- Caption = 'Close'
- TabOrder = 1
- OnClick = cxButton1Click
- end
- object cxGrid1: TcxGrid
- Left = 0
- Top = 77
- Width = 917
- Height = 325
- Align = alTop
- TabOrder = 2
- ExplicitWidth = 716
- object cxGrid1DBTableView1: TcxGridDBTableView
- Navigator.Buttons.CustomButtons = <>
- Navigator.Buttons.First.Visible = False
- Navigator.Buttons.PriorPage.Visible = False
- Navigator.Buttons.Prior.Visible = False
- Navigator.Buttons.Next.Visible = False
- Navigator.Buttons.NextPage.Visible = False
- Navigator.Buttons.Last.Visible = False
- Navigator.Buttons.Insert.Visible = True
- Navigator.Buttons.Edit.Visible = False
- Navigator.Buttons.Cancel.Visible = False
- Navigator.Buttons.Refresh.Visible = False
- Navigator.Buttons.SaveBookmark.Visible = False
- Navigator.Buttons.GotoBookmark.Visible = False
- Navigator.Buttons.Filter.Visible = False
- Navigator.Visible = True
- ScrollbarAnnotations.CustomAnnotations = <>
- DataController.DataSource = frmMain.dsVariables
- DataController.Summary.DefaultGroupSummaryItems = <>
- DataController.Summary.FooterSummaryItems = <>
- DataController.Summary.SummaryGroups = <>
- OptionsView.NoDataToDisplayInfoText = '< No variables defined >'
- OptionsView.GroupByBox = False
- object cxGrid1DBTableView1fldType: TcxGridDBColumn
- Caption = 'Type'
- DataBinding.FieldName = 'fldType'
- PropertiesClassName = 'TcxComboBoxProperties'
- Properties.DropDownListStyle = lsFixedList
- Properties.Items.Strings = (
- 'Static'
- 'XPath')
- Width = 83
- end
- object cxGrid1DBTableView1fldURLFilter: TcxGridDBColumn
- Caption = 'URL Filter'
- DataBinding.FieldName = 'fldURLFilter'
- Width = 200
- end
- object cxGrid1DBTableView1fldXPath: TcxGridDBColumn
- Caption = 'XPath'
- DataBinding.FieldName = 'fldXPath'
- Width = 200
- end
- object cxGrid1DBTableView1fldContent: TcxGridDBColumn
- Caption = 'Content'
- DataBinding.FieldName = 'fldContent'
- PropertiesClassName = 'TcxComboBoxProperties'
- Properties.DropDownListStyle = lsEditFixedList
- Properties.Items.Strings = (
- 'JSON'
- 'XML')
- end
- object cxGrid1DBTableView1fldName: TcxGridDBColumn
- Caption = 'Name'
- DataBinding.FieldName = 'fldName'
- SortIndex = 0
- SortOrder = soAscending
- Width = 150
- end
- object cxGrid1DBTableView1fldValue: TcxGridDBColumn
- Caption = 'Value'
- DataBinding.FieldName = 'fldValue'
- Width = 210
- end
- end
- object cxGrid1Level1: TcxGridLevel
- GridView = cxGrid1DBTableView1
- end
- end
- end
|