1object BuildModeDiffDialog: TBuildModeDiffDialog
2  Left = 407
3  Height = 409
4  Top = 266
5  Width = 476
6  BorderIcons = [biSystemMenu, biMaximize]
7  Caption = 'BuildModeDiffDialog'
8  ClientHeight = 409
9  ClientWidth = 476
10  OnActivate = FormActivate
11  OnCreate = FormCreate
12  Position = poScreenCenter
13  LCLVersion = '2.1.0.0'
14  object ButtonPanel: TButtonPanel
15    Left = 6
16    Height = 26
17    Top = 377
18    Width = 464
19    OKButton.Name = 'OKButton'
20    OKButton.DefaultCaption = True
21    OKButton.Enabled = False
22    HelpButton.Name = 'HelpButton'
23    HelpButton.DefaultCaption = True
24    HelpButton.Enabled = False
25    CloseButton.Name = 'CloseButton'
26    CloseButton.DefaultCaption = True
27    CancelButton.Name = 'CancelButton'
28    CancelButton.DefaultCaption = True
29    CancelButton.Enabled = False
30    TabOrder = 2
31    ShowButtons = [pbClose]
32    ShowBevel = False
33  end
34  object ModeLabel: TLabel
35    AnchorSideLeft.Control = Owner
36    AnchorSideTop.Control = ModeComboBox
37    AnchorSideTop.Side = asrCenter
38    Left = 6
39    Height = 14
40    Top = 10
41    Width = 60
42    BorderSpacing.Left = 6
43    Caption = 'ModeLabel'
44    ParentColor = False
45  end
46  object ModeComboBox: TComboBox
47    AnchorSideLeft.Control = ModeLabel
48    AnchorSideLeft.Side = asrBottom
49    AnchorSideTop.Control = Owner
50    AnchorSideRight.Control = Owner
51    AnchorSideRight.Side = asrBottom
52    Left = 72
53    Height = 23
54    Top = 6
55    Width = 398
56    Anchors = [akTop, akLeft, akRight]
57    BorderSpacing.Around = 6
58    ItemHeight = 14
59    OnChange = ModeComboBoxChange
60    Style = csDropDownList
61    TabOrder = 0
62  end
63  object DiffLabel: TLabel
64    Left = 6
65    Height = 14
66    Top = 33
67    Width = 48
68    Caption = 'DiffLabel'
69    ParentColor = False
70  end
71  object DiffTreeView: TTreeView
72    AnchorSideTop.Control = DiffLabel
73    AnchorSideTop.Side = asrBottom
74    Left = 6
75    Height = 318
76    Top = 53
77    Width = 464
78    Align = alBottom
79    Anchors = [akTop, akLeft, akRight, akBottom]
80    BorderSpacing.Around = 6
81    TabOrder = 1
82  end
83end
84