| 377 | | |
| 378 | | gchar * uiString = |
| 379 | | "<ui>" |
| 380 | | " <menubar name='MenuBar'>" |
| 381 | | " <menu action='FileMenu'>" |
| 382 | | " <menuitem name='OpenFile' action='OpenFile'/>" |
| 383 | | " <separator/>" |
| 384 | | " <menuitem name='Quit' action='Quit'/>" |
| 385 | | " </menu>" |
| 386 | | " <menu action='ViewMenu'>" |
| 387 | | " <menuitem name='ZoomIn' action='ZoomIn'/>" |
| 388 | | " <menuitem name='ZoomOut' action='ZoomOut'/>" |
| 389 | | " <menuitem name='ZoomFit' action='ZoomFit'/>" |
| 390 | | " <menuitem name='ZoomWidth' action='ZoomWidth'/>" |
| 391 | | " <separator />" |
| 392 | | " <menuitem name='RotateRight' action='RotateRight'/>" |
| 393 | | " <menuitem name='RotateLeft' action='RotateLeft'/>" |
| 394 | | " </menu>" |
| 395 | | " <menu action='GoMenu'>" |
| 396 | | " <menuitem name='GoToFirstPage' action='GoToFirstPage'/>" |
| 397 | | " <menuitem name='GoToPreviousPage' action='GoToPreviousPage'/>" |
| 398 | | " <menuitem name='GoToNextPage' action='GoToNextPage'/>" |
| 399 | | " <menuitem name='GoToLastPage' action='GoToLastPage'/>" |
| 400 | | " </menu>" |
| 401 | | " <menu action='HelpMenu'>" |
| 402 | | " <menuitem name='About' action='About'/>" |
| 403 | | " </menu>" |
| 404 | | " </menubar>" |
| 405 | | " <toolbar name='ToolBar'>" |
| 406 | | " <toolitem name='OpenFile' action='OpenFile'/>" |
| 407 | | " <separator/>" |
| 408 | | " <toolitem name='GoToPreviousPage' action='GoToPreviousPage'/>" |
| 409 | | " <toolitem name='GoToNextPage' action='GoToNextPage'/>" |
| 410 | | " <separator/>" |
| 411 | | " <toolitem name='ZoomIn' action='ZoomIn'/>" |
| 412 | | " <toolitem name='ZoomOut' action='ZoomOut'/>" |
| 413 | | " <toolitem name='ZoomFit' action='ZoomFit'/>" |
| 414 | | " <toolitem name='ZoomWidth' action='ZoomWidth'/>" |
| 415 | | " </toolbar>" |
| 416 | | "</ui>"; |
| 417 | | |
| | 377 | |