source: trunk/Forms/FormBrowse.lfm

Last change on this file was 23, checked in by chronos, 2 weeks ago
  • Modified: All unit renamed to names without U prefix.
  • Modified: Removed global form variables.
  • Modified: Code cleanup.
File size: 2.5 KB
Line 
1object FormBrowse: TFormBrowse
2 Left = 479
3 Height = 807
4 Top = 279
5 Width = 1446
6 Caption = 'Browse'
7 ClientHeight = 807
8 ClientWidth = 1446
9 DesignTimePPI = 144
10 Menu = MainMenu1
11 OnCreate = FormCreate
12 OnDestroy = FormDestroy
13 OnShow = FormShow
14 LCLVersion = '3.6.0.0'
15 object TreeView1: TTreeView
16 Left = 0
17 Height = 807
18 Top = 0
19 Width = 362
20 Align = alLeft
21 TabOrder = 0
22 end
23 object Splitter1: TSplitter
24 Left = 362
25 Height = 807
26 Top = 0
27 Width = 8
28 end
29 object ListView1: TListView
30 Left = 370
31 Height = 807
32 Top = 0
33 Width = 1076
34 Align = alClient
35 Columns = <
36 item
37 Caption = 'Name'
38 Width = 450
39 end
40 item
41 Caption = 'Revision'
42 Width = 120
43 end
44 item
45 Caption = 'Last change date'
46 Width = 150
47 end
48 item
49 Caption = 'Last author'
50 Width = 150
51 end
52 item
53 Caption = 'Status'
54 Width = 388
55 end>
56 OwnerData = True
57 PopupMenu = PopupMenu1
58 ReadOnly = True
59 RowSelect = True
60 SmallImages = Core.ImageList1
61 TabOrder = 2
62 ViewStyle = vsReport
63 OnData = ListView1Data
64 OnDblClick = AOpenExecute
65 OnSelectItem = ListView1SelectItem
66 end
67 object PopupMenu1: TPopupMenu
68 Images = Core.ImageList1
69 Left = 530
70 Top = 197
71 object MenuItem1: TMenuItem
72 Action = AAdd
73 end
74 object MenuItem2: TMenuItem
75 Action = ADelete
76 end
77 object MenuItem3: TMenuItem
78 Action = ARename
79 end
80 object MenuItem4: TMenuItem
81 Action = AUpdate
82 end
83 object MenuItem5: TMenuItem
84 Action = AProperties
85 end
86 object MenuItem6: TMenuItem
87 Action = AOpen
88 end
89 object MenuItem7: TMenuItem
90 Action = ALogShow
91 end
92 end
93 object ActionList1: TActionList
94 Images = Core.ImageList1
95 Left = 528
96 Top = 312
97 object AAdd: TAction
98 Caption = 'Add'
99 OnExecute = AAddExecute
100 end
101 object ADelete: TAction
102 Caption = 'Delete'
103 OnExecute = ADeleteExecute
104 end
105 object ARename: TAction
106 Caption = 'Rename'
107 OnExecute = ARenameExecute
108 end
109 object AUpdate: TAction
110 Caption = 'Update'
111 end
112 object AProperties: TAction
113 Caption = 'Properties'
114 end
115 object AOpen: TAction
116 Caption = 'Open'
117 OnExecute = AOpenExecute
118 end
119 object ALogShow: TAction
120 Caption = 'Show log'
121 OnExecute = ALogShowExecute
122 end
123 end
124 object MainMenu1: TMainMenu
125 Left = 644
126 Top = 774
127 end
128end
Note: See TracBrowser for help on using the repository browser.