-
Notifications
You must be signed in to change notification settings - Fork 1
/
ProjectViewForm.dfm
76 lines (76 loc) · 1.92 KB
/
ProjectViewForm.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
object ProjectView: TProjectView
Left = 0
Top = 0
Caption = 'Project Manager'
ClientHeight = 493
ClientWidth = 244
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object ProjectTree: TVirtualStringTree
AlignWithMargins = True
Left = 3
Top = 3
Width = 238
Height = 487
Align = alClient
Header.AutoSizeIndex = 0
Header.DefaultHeight = 17
Header.Font.Charset = DEFAULT_CHARSET
Header.Font.Color = clWindowText
Header.Font.Height = -11
Header.Font.Name = 'Tahoma'
Header.Font.Style = []
Header.MainColumn = -1
TabOrder = 0
TreeOptions.AutoOptions = [toAutoDropExpand, toAutoExpand, toAutoScrollOnExpand, toAutoTristateTracking, toAutoDeleteMovedNodes]
TreeOptions.SelectionOptions = [toRightClickSelect]
OnContextPopup = ProjectTreeContextPopup
OnDblClick = ProjectTreeDblClick
Columns = <>
end
object ProjectPopup: TPopupMenu
Left = 32
Top = 232
object NewUnit2: TMenuItem
Caption = 'New Unit'
end
object AddUnit2: TMenuItem
Caption = 'Add Existing Unit'
end
object Options3: TMenuItem
Caption = 'Options'
end
end
object UnitPopup: TPopupMenu
Left = 32
Top = 176
object NewUnit1: TMenuItem
Caption = 'New Unit'
end
object AddUnit1: TMenuItem
Caption = 'Add Existing Unit'
end
object RemoveUnit1: TMenuItem
Caption = 'Remove Unit'
end
object Options2: TMenuItem
Caption = 'Options'
end
end
object ActionList: TActionList
Left = 120
Top = 152
object actRemoveSelectedUnit: TAction
Caption = 'Remove from Project'
OnExecute = actRemoveSelectedUnitExecute
end
end
end