source: trunk/IDE/Forms/FormProject.lfm

Last change on this file was 75, checked in by chronos, 6 months ago
  • Modified: Removed U prefix from unit names.
  • Modified: Updated Common package.
File size: 1.4 KB
Line 
1object FormProject: TFormProject
2 Left = 507
3 Height = 380
4 Top = 197
5 Width = 496
6 Caption = 'Project manager'
7 ClientHeight = 380
8 ClientWidth = 496
9 DesignTimePPI = 144
10 LCLVersion = '3.2.0.0'
11 object TreeViewProject: TTreeView
12 Left = 0
13 Height = 380
14 Top = 0
15 Width = 496
16 Align = alClient
17 PopupMenu = PopupMenuFile
18 ReadOnly = True
19 TabOrder = 0
20 OnChange = TreeViewProjectChange
21 OnDblClick = TreeViewProjectDblClick
22 Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips, tvoThemedDraw]
23 end
24 object PopupMenuFile: TPopupMenu
25 Images = FormMain.ImageList1
26 Left = 141
27 Top = 57
28 object MenuItem4: TMenuItem
29 Action = AShow
30 end
31 object MenuItem1: TMenuItem
32 Action = AAdd
33 end
34 object MenuItem2: TMenuItem
35 Action = ADelete
36 end
37 object MenuItem3: TMenuItem
38 Action = ARename
39 end
40 end
41 object ActionList1: TActionList
42 Left = 276
43 Top = 60
44 object AAdd: TAction
45 Caption = 'Add'
46 OnExecute = AAddExecute
47 end
48 object ADelete: TAction
49 Caption = 'Delete'
50 OnExecute = ADeleteExecute
51 end
52 object ARename: TAction
53 Caption = 'Rename'
54 OnExecute = ARenameExecute
55 end
56 object AShow: TAction
57 Caption = 'Show'
58 OnExecute = AShowExecute
59 end
60 end
61 object OpenDialog1: TOpenDialog
62 Left = 141
63 Top = 147
64 end
65end
Note: See TracBrowser for help on using the repository browser.