-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.view.xml
More file actions
111 lines (107 loc) · 4.94 KB
/
Copy pathMain.view.xml
File metadata and controls
111 lines (107 loc) · 4.94 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<mvc:View height="100%" class="sapUiSizeCompact" controllerName="eve.Main"
xmlns:mvc="sap.ui.core.mvc"
xmlns:l="sap.ui.layout"
xmlns="sap.m"
xmlns:commons="sap.ui.commons"
xmlns:app="http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1"
>
<Page title="" showNavButton="false" showFooter="false"
showSubHeader="false" id="CanvasMainPage">
<headerContent>
<OverflowToolbar id="otb1">
<Button icon="sap-icon://system-exit" type="Transparent"
tooltip="Quit ROOT session" press="onQuitRootPress" />
<Button icon="sap-icon://refresh" type="Transparent"
tooltip="Reload canvas from server" press="onReloadPress" />
<Button icon="sap-icon://user-edit" type="Transparent"
tooltip="Toggle GED editor" press="toggleGedEditor" />
<MenuButton text="File">
<menu>
<Menu itemSelected="onFileMenuAction">
<items>
<MenuItem text="Open" icon="sap-icon://open-folder" />
<MenuItem text="Close canvas" icon="sap-icon://decline" />
<MenuItem text="Save" startsSection="true"
icon="sap-icon://save">
<items>
<MenuItem text="Canvas.png" />
<MenuItem text="Canvas.svg" />
<MenuItem text="Canvas.jpeg" />
</items>
</MenuItem>
<MenuItem text="Save as ..." icon="sap-icon://save" />
<MenuItem text="Interrupt"
startsSection="true" icon="sap-icon://stop" />
<MenuItem text="Quit ROOT" icon="sap-icon://system-exit" />
</items>
</Menu>
</menu>
</MenuButton>
<Button text="Edit" type="Transparent"></Button>
<MenuButton text="View" type="Transparent">
<menu>
<Menu itemSelected="onViewMenuAction">
<items>
<MenuItem text="Editor" icon="{/GedIcon}" />
<MenuItem text="Toolbar" icon="{/ToolbarIcon} "/>
<MenuItem text="Event statusbar" icon="{/StatusIcon}" />
<MenuItem text="Tooltip info" icon="{/TooltipIcon}" />
<MenuItem text="Colors" startsSection="true" />
<MenuItem text="Fonts" />
<MenuItem text="Markers" />
</items>
</Menu>
</menu>
</MenuButton>
<Button text="Options" type="Transparent"></Button>
<MenuButton text="Tools" type="Transparent">
<menu>
<Menu itemSelected="onToolsMenuAction">
<items>
<MenuItem text="Fit panel" />
<MenuItem text="Browser" enabled="false" />
</items>
</Menu>
</menu>
</MenuButton>
<ToolbarSpacer />
<Button text="Help" type="Transparent"></Button>
</OverflowToolbar>
</headerContent>
<subHeader>
<OverflowToolbar>
<Button icon="sap-icon://open-folder" type="Transparent" />
<Button icon="sap-icon://decline" type="Transparent"
press="onCloseCanvasPress" />
<Button icon="sap-icon://stop" type="Transparent"
press="onInterruptPress" />
<Button icon="sap-icon://system-exit" type="Transparent"
tooltip="Quit ROOT session" press="onQuitRootPress" />
</OverflowToolbar>
</subHeader>
<content>
<l:Splitter orientation="Horizontal" id="MainAreaSplitter">
<l:contentAreas>
<mvc:XMLView id="Summary" viewName="eve.Summary" height="100%">
<mvc:layoutData><l:SplitterLayoutData size="33%"/></mvc:layoutData>
</mvc:XMLView>
<l:Splitter id="ViewAreaSplitter">
<mvc:XMLView id="3D" viewName="eve.GL" app:type="3D" height="100%"/>
<l:Splitter orientation="Vertical" id="SecondaryView">
<mvc:XMLView id="RhoPhi" viewName="eve.GL" app:type="RhoPhi" height="100%"/>
<mvc:XMLView id="RhoZ" viewName="eve.GL" app:type="RhoZ" height="100%"/>
</l:Splitter>
</l:Splitter>
</l:contentAreas>
</l:Splitter>
</content>
<footer>
<OverflowToolbar>
<Label text="{/StatusLbl1}" id="FooterLbl1" />
<Label text="{/StatusLbl2}" id="FooterLbl2" />
<Label text="{/StatusLbl3}" id="FooterLbl3" />
<Label text="{/StatusLbl4}" id="FooterLbl4" />
</OverflowToolbar>
</footer>
</Page>
</mvc:View>