| 1 | <ui> |
|---|
| 2 | <menubar name="MenuBar"> |
|---|
| 3 | <menu action="FileMenu"> |
|---|
| 4 | <menuitem name="OpenFile" action="OpenFile"/> |
|---|
| 5 | <menuitem name="ReloadFile" action="ReloadFile"/> |
|---|
| 6 | <menuitem name="SaveFile" action="SaveFile"/> |
|---|
| 7 | <placeholder name="PrintPlaceHolder"/> |
|---|
| 8 | <separator/> |
|---|
| 9 | <menuitem name="Quit" action="Quit"/> |
|---|
| 10 | </menu> |
|---|
| 11 | <menu action="EditMenu"> |
|---|
| 12 | <menuitem name="Find" action="Find"/> |
|---|
| 13 | <separator /> |
|---|
| 14 | <menuitem name="PageModeScroll" action="PageModeScroll"/> |
|---|
| 15 | <menuitem name="PageModeText" action="PageModeText"/> |
|---|
| 16 | <separator /> |
|---|
| 17 | <menuitem name="Preferences" action="Preferences"/> |
|---|
| 18 | </menu> |
|---|
| 19 | <menu action="ViewMenu"> |
|---|
| 20 | <menuitem name="ShowToolBar" action="ShowToolBar"/> |
|---|
| 21 | <menuitem name="ShowStatusBar" action="ShowStatusBar"/> |
|---|
| 22 | <menuitem name="ShowIndex" action="ShowIndex"/> |
|---|
| 23 | <separator/> |
|---|
| 24 | <menuitem name="ZoomIn" action="ZoomIn"/> |
|---|
| 25 | <menuitem name="ZoomOut" action="ZoomOut"/> |
|---|
| 26 | <menuitem name="ZoomFit" action="ZoomFit"/> |
|---|
| 27 | <menuitem name="ZoomWidth" action="ZoomWidth"/> |
|---|
| 28 | <separator /> |
|---|
| 29 | <menuitem name="FullScreen" action="FullScreen"/> |
|---|
| 30 | <separator /> |
|---|
| 31 | <menuitem name="RotateRight" action="RotateRight"/> |
|---|
| 32 | <menuitem name="RotateLeft" action="RotateLeft"/> |
|---|
| 33 | </menu> |
|---|
| 34 | <menu action="GoMenu"> |
|---|
| 35 | <menuitem name="GoToFirstPage" action="GoToFirstPage"/> |
|---|
| 36 | <menuitem name="GoToPreviousPage" action="GoToPreviousPage"/> |
|---|
| 37 | <menuitem name="GoToNextPage" action="GoToNextPage"/> |
|---|
| 38 | <menuitem name="GoToLastPage" action="GoToLastPage"/> |
|---|
| 39 | </menu> |
|---|
| 40 | <menu action="HelpMenu"> |
|---|
| 41 | <menuitem name="About" action="About"/> |
|---|
| 42 | </menu> |
|---|
| 43 | </menubar> |
|---|
| 44 | |
|---|
| 45 | <toolbar name="ToolBar"> |
|---|
| 46 | <toolitem name="OpenFile" action="OpenFile"/> |
|---|
| 47 | <separator/> |
|---|
| 48 | <toolitem name="GoToPreviousPage" action="GoToPreviousPage"/> |
|---|
| 49 | <toolitem name="GoToNextPage" action="GoToNextPage"/> |
|---|
| 50 | <separator/> |
|---|
| 51 | <toolitem name="ZoomIn" action="ZoomIn"/> |
|---|
| 52 | <toolitem name="ZoomOut" action="ZoomOut"/> |
|---|
| 53 | <toolitem name="ZoomFit" action="ZoomFit"/> |
|---|
| 54 | <toolitem name="ZoomWidth" action="ZoomWidth"/> |
|---|
| 55 | <separator/> |
|---|
| 56 | <toolitem name="PageModeScroll" action="PageModeScroll"/> |
|---|
| 57 | <toolitem name="PageModeText" action="PageModeText"/> |
|---|
| 58 | </toolbar> |
|---|
| 59 | |
|---|
| 60 | <accelerator name="SlashAccelerator" action="Slash"/> |
|---|
| 61 | <accelerator name="KPAddAccelerator" action="KPAdd"/> |
|---|
| 62 | <accelerator name="KPSubtractAccelerator" action="KPSubtract"/> |
|---|
| 63 | </ui> |
|---|