source: branches/test1/Client/Forms/UFormMenu.lfm

Last change on this file was 54, checked in by chronos, 12 years ago
  • Added: ChronisAppServer base project.
  • Modified: Changes in client virtual database layer handling.
File size: 2.4 KB
Line 
1object FormMenu: TFormMenu
2 Left = 335
3 Height = 487
4 Top = 108
5 Width = 262
6 Caption = 'Navigation'
7 ClientHeight = 487
8 ClientWidth = 262
9 OnCreate = FormCreate
10 OnDestroy = FormDestroy
11 LCLVersion = '0.9.31'
12 object TabControl1: TTabControl
13 Left = 0
14 Height = 26
15 Top = 0
16 Width = 262
17 TabIndex = 0
18 Tabs.Strings = (
19 'All'
20 'Favorite'
21 'History'
22 )
23 Align = alTop
24 TabOrder = 0
25 end
26 object TreeViewMenu: TTreeView
27 Left = 2
28 Height = 457
29 Top = 28
30 Width = 258
31 Align = alClient
32 BorderSpacing.Around = 2
33 DefaultItemHeight = 16
34 PopupMenu = PopupMenuObjectGroup
35 ReadOnly = True
36 TabOrder = 1
37 OnChange = TreeViewMenuChange
38 OnDblClick = AObjectGroupShowExecute
39 Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips, tvoThemedDraw]
40 end
41 object PopupMenuObject: TPopupMenu
42 Images = MainForm.ImageListActions
43 left = 100
44 top = 164
45 object MenuItem1: TMenuItem
46 Action = AObjectGroupShow
47 Default = True
48 end
49 object MenuItem10: TMenuItem
50 Action = AObjectEdit
51 end
52 object MenuItem9: TMenuItem
53 Action = AObjectDelete
54 end
55 end
56 object PopupMenuObjectGroup: TPopupMenu
57 Images = MainForm.ImageListActions
58 left = 100
59 top = 116
60 object MenuItem5: TMenuItem
61 Action = AObjectGroupEdit
62 Default = True
63 end
64 object MenuItem7: TMenuItem
65 Action = AObjectGroupAddGroup
66 end
67 object MenuItem6: TMenuItem
68 Action = AObjectGroupAddObject
69 end
70 object MenuItem8: TMenuItem
71 Action = AObjectGroupDelete
72 end
73 end
74 object ActionList1: TActionList
75 left = 100
76 top = 214
77 object AObjectEdit: TAction
78 Caption = 'Edit'
79 end
80 object AObjectDelete: TAction
81 Caption = 'Delete'
82 end
83 object AObjectGroupEdit: TAction
84 Caption = 'Edit'
85 OnExecute = AObjectGroupEditExecute
86 end
87 object AObjectGroupAddObject: TAction
88 Caption = 'Add'
89 end
90 object AObjectGroupAddGroup: TAction
91 Caption = 'Add'
92 end
93 object AObjectGroupDelete: TAction
94 Caption = 'Delete'
95 OnExecute = AObjectGroupDeleteExecute
96 end
97 object AObjectGroupShow: TAction
98 Caption = 'Show'
99 OnExecute = AObjectGroupShowExecute
100 end
101 end
102end
Note: See TracBrowser for help on using the repository browser.