source: trunk/Forms/UFormBrowse.lfm

Last change on this file was 15, checked in by chronos, 9 years ago
  • Added: Support for reading file status from working copy.
File size: 2.5 KB
Line 
1object FormBrowse: TFormBrowse
2 Left = 479
3 Height = 538
4 Top = 279
5 Width = 964
6 Caption = 'Browse'
7 ClientHeight = 538
8 ClientWidth = 964
9 Menu = MainMenu1
10 OnCreate = FormCreate
11 OnDestroy = FormDestroy
12 OnShow = FormShow
13 LCLVersion = '1.5'
14 object TreeView1: TTreeView
15 Left = 0
16 Height = 538
17 Top = 0
18 Width = 241
19 Align = alLeft
20 DefaultItemHeight = 24
21 TabOrder = 0
22 end
23 object Splitter1: TSplitter
24 Left = 241
25 Height = 538
26 Top = 0
27 Width = 5
28 end
29 object ListView1: TListView
30 Left = 246
31 Height = 538
32 Top = 0
33 Width = 718
34 Align = alClient
35 Columns = <
36 item
37 Caption = 'Name'
38 Width = 300
39 end
40 item
41 Caption = 'Revision'
42 Width = 80
43 end
44 item
45 Caption = 'Last change date'
46 Width = 100
47 end
48 item
49 Caption = 'Last author'
50 Width = 100
51 end
52 item
53 Caption = 'Status'
54 Width = 259
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 = 353
70 top = 131
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 = 352
96 top = 208
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 = 429
126 top = 516
127 end
128end
Note: See TracBrowser for help on using the repository browser.