1object UnitInfoDialog: TUnitInfoDialog
2  Left = 347
3  Height = 307
4  Top = 249
5  Width = 500
6  ActiveControl = Notebook
7  BorderIcons = [biSystemMenu, biMaximize]
8  Caption = 'UnitInfoDialog'
9  ClientHeight = 307
10  ClientWidth = 500
11  OnCreate = FormCreate
12  Position = poScreenCenter
13  LCLVersion = '1.9.0.0'
14  object OkButton: TBitBtn
15    AnchorSideBottom.Control = Owner
16    AnchorSideBottom.Side = asrBottom
17    Left = 419
18    Height = 28
19    Top = 273
20    Width = 75
21    Anchors = [akRight, akBottom]
22    AutoSize = True
23    BorderSpacing.Bottom = 6
24    Cancel = True
25    Caption = '&OK'
26    Constraints.MinWidth = 75
27    Default = True
28    Kind = bkOK
29    ModalResult = 1
30    TabOrder = 0
31  end
32  object Notebook: TPageControl
33    AnchorSideBottom.Control = OkButton
34    Left = 6
35    Height = 261
36    Top = 6
37    Width = 488
38    ActivePage = GeneralPage
39    Align = alTop
40    Anchors = [akTop, akLeft, akRight, akBottom]
41    BorderSpacing.Around = 6
42    TabIndex = 0
43    TabOrder = 1
44    object GeneralPage: TTabSheet
45      Caption = 'GeneralPage'
46      ClientHeight = 234
47      ClientWidth = 484
48      object ClearIncludedBy: TButton
49        Left = 6
50        Height = 25
51        Top = 203
52        Width = 101
53        Anchors = [akLeft, akBottom]
54        AutoSize = True
55        BorderSpacing.Top = 6
56        Caption = 'ClearIncludedBy'
57        OnClick = clearIncludedByClick
58        TabOrder = 0
59      end
60      object ListValues: TListView
61        AnchorSideBottom.Control = ClearIncludedBy
62        Left = 6
63        Height = 191
64        Top = 6
65        Width = 472
66        Anchors = [akTop, akLeft, akRight, akBottom]
67        Columns = <
68          item
69            AutoSize = True
70            Caption = '(name)'
71            Width = 0
72          end
73          item
74            AutoSize = True
75            Caption = '(value)'
76            Width = 470
77          end>
78        ReadOnly = True
79        RowSelect = True
80        ScrollBars = ssAutoBoth
81        ShowColumnHeaders = False
82        TabOrder = 1
83        ViewStyle = vsReport
84      end
85    end
86    object UnitPathsPage: TTabSheet
87      Caption = 'UnitPathsPage'
88      ClientHeight = 234
89      ClientWidth = 484
90      object UnitPathMemo: TMemo
91        Left = 6
92        Height = 223
93        Top = 6
94        Width = 468
95        Align = alClient
96        BorderSpacing.Around = 6
97        ReadOnly = True
98        ScrollBars = ssAutoBoth
99        TabOrder = 0
100      end
101    end
102    object IncludePathsPage: TTabSheet
103      Caption = 'IncludePathsPage'
104      ClientHeight = 234
105      ClientWidth = 484
106      object IncludePathMemo: TMemo
107        Left = 6
108        Height = 223
109        Top = 6
110        Width = 468
111        Align = alClient
112        BorderSpacing.Around = 6
113        ReadOnly = True
114        ScrollBars = ssAutoBoth
115        TabOrder = 0
116      end
117    end
118    object CompleteUnitPathsPage: TTabSheet
119      Caption = 'CompleteUnitPathsPage'
120      ClientHeight = 234
121      ClientWidth = 484
122      object SrcPathMemo: TMemo
123        Left = 6
124        Height = 223
125        Top = 6
126        Width = 468
127        Align = alClient
128        BorderSpacing.Around = 6
129        ReadOnly = True
130        ScrollBars = ssAutoBoth
131        TabOrder = 0
132      end
133    end
134  end
135  object CodeToolsDefsButton: TButton
136    AnchorSideTop.Control = OkButton
137    AnchorSideBottom.Control = OkButton
138    AnchorSideBottom.Side = asrBottom
139    Left = 6
140    Height = 28
141    Top = 273
142    Width = 133
143    Anchors = [akTop, akLeft, akBottom]
144    AutoSize = True
145    Caption = 'CodeToolsDefsButton'
146    OnClick = CodeToolsDefsButtonClick
147    TabOrder = 2
148  end
149  object GotoIncludeDirectiveButton: TButton
150    AnchorSideTop.Control = OkButton
151    AnchorSideRight.Control = OkButton
152    AnchorSideBottom.Control = OkButton
153    AnchorSideBottom.Side = asrBottom
154    Left = 244
155    Height = 28
156    Top = 273
157    Width = 169
158    Anchors = [akTop, akRight, akBottom]
159    AutoSize = True
160    BorderSpacing.Right = 6
161    Caption = 'GotoIncludeDirectiveButton'
162    ModalResult = 6
163    TabOrder = 3
164  end
165end
166