1object NewOtherDialog: TNewOtherDialog
2  Left = 281
3  Height = 434
4  Top = 191
5  Width = 741
6  BorderIcons = [biSystemMenu]
7  Caption = 'NewOtherDialog'
8  ClientHeight = 434
9  ClientWidth = 741
10  Constraints.MinHeight = 100
11  Constraints.MinWidth = 450
12  OnClose = FormClose
13  OnCreate = FormCreate
14  Position = poScreenCenter
15  LCLVersion = '1.9.0.0'
16  object Panel1: TPanel
17    Left = 6
18    Height = 390
19    Top = 6
20    Width = 729
21    Align = alClient
22    BorderSpacing.Around = 6
23    BevelOuter = bvNone
24    ClientHeight = 390
25    ClientWidth = 729
26    TabOrder = 0
27    object ItemsTreeView: TTreeView
28      Left = 0
29      Height = 390
30      Top = 0
31      Width = 295
32      Align = alClient
33      ExpandSignSize = 10
34      ReadOnly = True
35      ScrollBars = ssAutoBoth
36      TabOrder = 0
37      OnDblClick = OkButtonClick
38      OnSelectionChanged = ItemsTreeViewSelectionChanged
39      Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips, tvoThemedDraw]
40    end
41    object DescriptionGroupBox: TGroupBox
42      AnchorSideLeft.Control = ItemsTreeView
43      AnchorSideLeft.Side = asrBottom
44      AnchorSideTop.Control = Owner
45      AnchorSideRight.Control = Owner
46      Left = 300
47      Height = 390
48      Top = 0
49      Width = 429
50      Align = alRight
51      Caption = 'DescriptionGroupBox'
52      ClientHeight = 370
53      ClientWidth = 427
54      TabOrder = 1
55      object DescriptionLabel: TLabel
56        Left = 6
57        Height = 19
58        Top = 6
59        Width = 415
60        Align = alTop
61        BorderSpacing.Around = 6
62        Caption = 'DescriptionLabel'
63        ParentColor = False
64        WordWrap = True
65      end
66      object InheritableComponentsListView: TListView
67        AnchorSideLeft.Control = DescriptionGroupBox
68        AnchorSideTop.Control = CompFilterEdit
69        AnchorSideTop.Side = asrBottom
70        AnchorSideRight.Control = DescriptionGroupBox
71        AnchorSideRight.Side = asrBottom
72        AnchorSideBottom.Control = DescriptionGroupBox
73        AnchorSideBottom.Side = asrBottom
74        Left = 6
75        Height = 320
76        Top = 62
77        Width = 415
78        Anchors = [akTop, akLeft, akRight, akBottom]
79        BorderSpacing.Around = 6
80        Columns = <
81          item
82            Caption = 'Form'
83            Width = 100
84          end
85          item
86            Caption = 'Unit'
87            Width = 313
88          end>
89        HideSelection = False
90        ReadOnly = True
91        RowSelect = True
92        ScrollBars = ssAutoBoth
93        SortType = stText
94        TabOrder = 1
95        ViewStyle = vsReport
96        OnSelectItem = InheritableComponentsListViewSelectItem
97      end
98      object CompFilterEdit: TListViewFilterEdit
99        AnchorSideLeft.Control = DescriptionGroupBox
100        AnchorSideTop.Control = DescriptionLabel
101        AnchorSideTop.Side = asrBottom
102        AnchorSideRight.Control = DescriptionGroupBox
103        AnchorSideRight.Side = asrBottom
104        Left = 6
105        Height = 25
106        Top = 31
107        Width = 415
108        ButtonWidth = 23
109        NumGlyphs = 1
110        Anchors = [akTop, akLeft, akRight]
111        BorderSpacing.Around = 6
112        MaxLength = 0
113        TabOrder = 0
114        FilteredListview = InheritableComponentsListView
115        ByAllFields = True
116      end
117    end
118    object Splitter1: TSplitter
119      Left = 295
120      Height = 390
121      Top = 0
122      Width = 5
123      Align = alRight
124      ResizeAnchor = akRight
125    end
126  end
127  object ButtonPanel: TButtonPanel
128    Left = 6
129    Height = 26
130    Top = 402
131    Width = 729
132    OKButton.Name = 'OKButton'
133    OKButton.DefaultCaption = True
134    OKButton.OnClick = OkButtonClick
135    HelpButton.Name = 'HelpButton'
136    HelpButton.DefaultCaption = True
137    HelpButton.OnClick = HelpButtonClick
138    CloseButton.Name = 'CloseButton'
139    CloseButton.DefaultCaption = True
140    CloseButton.Enabled = False
141    CancelButton.Name = 'CancelButton'
142    CancelButton.DefaultCaption = True
143    TabOrder = 1
144    ShowButtons = [pbOK, pbCancel, pbHelp]
145    ShowBevel = False
146  end
147end
148