1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22#include "glob.hrc" 23#include "slideshow.hrc" 24 25Menu RID_SLIDESHOW_CONTEXTMENU 26{ 27 ItemList = 28 { 29 MenuItem 30 { 31 Identifier = CM_NEXT_SLIDE ; 32 Text [ en-US ] = "~Next" ; 33 }; 34 MenuItem 35 { 36 Identifier = CM_PREV_SLIDE ; 37 Text [ en-US ] = "~Previous" ; 38 }; 39 MenuItem 40 { 41 Identifier = CM_GOTO ; 42 Text [ en-US ] = "~Go to Slide" ; 43 SubMenu = Menu 44 { 45 ItemList = 46 { 47 MenuItem 48 { 49 Identifier = CM_FIRST_SLIDE ; 50 Text [ en-US ] = "~First Slide" ; 51 }; 52 MenuItem 53 { 54 Identifier = CM_LAST_SLIDE ; 55 Text [ en-US ] = "~Last Slide" ; 56 }; 57 MenuItem 58 { 59 Separator = TRUE ; 60 }; 61 }; 62 }; 63 }; 64 MenuItem 65 { 66 Separator = TRUE ; 67 }; 68 MenuItem 69 { 70 Identifier = CM_PEN_MODE ; 71 Text [ en-US ] = "Mouse pointer as ~Pen" ; 72 }; 73 MenuItem 74 { 75 Identifier = CM_WIDTH_PEN ; 76 Text [ en-US ] = "~Pen Width" ; 77 SubMenu = Menu 78 { 79 ItemList = 80 { 81 MenuItem 82 { 83 Identifier = CM_WIDTH_PEN_VERY_THIN ; 84 Text [ en-US ] = "~Very thin" ; 85 }; 86 MenuItem 87 { 88 Identifier = CM_WIDTH_PEN_THIN ; 89 Text [ en-US ] = "~Thin" ; 90 }; 91 MenuItem 92 { 93 Identifier = CM_WIDTH_PEN_NORMAL ; 94 Text [ en-US ] = "~Normal" ; 95 }; 96 MenuItem 97 { 98 Identifier = CM_WIDTH_PEN_THICK ; 99 Text [ en-US ] = "~Thick" ; 100 }; 101 MenuItem 102 { 103 Identifier = CM_WIDTH_PEN_VERY_THICK ; 104 Text [ en-US ] = "~Very thick" ; 105 }; 106 }; 107 }; 108 }; 109 MenuItem 110 { 111 Identifier = CM_COLOR_PEN ; 112 Text [ en-US ] = "~Change pen Color..." ; 113 }; 114 MenuItem 115 { 116 Identifier = CM_ERASE_ALLINK ; 117 Text [ en-US ] = "~Erase all ink on Slide" ; 118 }; 119 MenuItem 120 { 121 Separator = TRUE ; 122 }; 123 MenuItem 124 { 125 Identifier = CM_SCREEN ; 126 Text [ en-US ] = "~Screen" ; 127 128 SubMenu = Menu 129 { 130 ItemList = 131 { 132 MenuItem 133 { 134 Identifier = CM_SCREEN_BLACK ; 135 Text [ en-US ] = "~Black" ; 136 }; 137 MenuItem 138 { 139 Identifier = CM_SCREEN_WHITE ; 140 Text [ en-US ] = "~White" ; 141 }; 142 }; 143 }; 144 }; 145 MenuItem 146 { 147 Identifier = CM_ENDSHOW ; 148 Text [ en-US ] = "~End Show" ; 149 }; 150 }; 151}; 152 153// ********************************************************************** EOF 154