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
23
24#include "glob.hrc"
25#include "slideshow.hrc"
26
27Menu RID_SLIDESHOW_CONTEXTMENU
28{
29    ItemList =
30    {
31        MenuItem
32        {
33            Identifier = CM_NEXT_SLIDE ;
34            Text [ en-US ] = "~Next" ;
35		};
36        MenuItem
37        {
38            Identifier = CM_PREV_SLIDE ;
39            Text [ en-US ] = "~Previous" ;
40   		};
41		MenuItem
42		{
43            Identifier = CM_GOTO;
44            Text [ en-US ] = "~Go to Slide" ;
45            SubMenu = Menu
46            {
47				ItemList =
48				{
49					MenuItem
50					{
51						Identifier = CM_FIRST_SLIDE;
52						Text [ en-US ] = "~First Slide";
53					};
54					MenuItem
55					{
56						Identifier = CM_LAST_SLIDE;
57						Text [ en-US ] = "~Last Slide";
58					};
59					MenuItem
60					{
61						Separator = TRUE;
62					};
63				};
64			};
65		};
66		MenuItem
67		{
68			Separator = TRUE;
69		};
70        MenuItem
71        {
72            Identifier = CM_PEN_MODE;
73            Text [ en-US ] = "Mouse pointer as ~Pen";
74        };
75        MenuItem
76        {
77            Identifier = CM_WIDTH_PEN;
78            Text [ en-US ] = "~Pen Width" ;
79            SubMenu = Menu
80            {
81                ItemList =
82                {
83                    MenuItem
84                    {
85                        Identifier =  CM_WIDTH_PEN_VERY_THIN;
86                        Text [ en-US ] = "~Very thin";
87                    };
88                    MenuItem
89                    {
90                        Identifier =  CM_WIDTH_PEN_THIN;
91                        Text [ en-US ] = "~Thin";
92                    };
93                    MenuItem
94                    {
95                        Identifier =  CM_WIDTH_PEN_NORMAL;
96                        Text [ en-US ] = "~Normal";
97                    };
98                    MenuItem
99                    {
100                        Identifier =  CM_WIDTH_PEN_THICK;
101                        Text [ en-US ] = "~Thick";
102                    };
103                    MenuItem
104                    {
105                        Identifier =  CM_WIDTH_PEN_VERY_THICK;
106                        Text [ en-US ] = "~Very Thick";
107                    };
108                };
109            };
110        };
111        MenuItem
112        {
113            Identifier = CM_COLOR_PEN ;
114            Text [ en-US ] = "~Change pen Color..." ;
115        };
116        MenuItem
117        {
118            Identifier = CM_ERASE_ALLINK ;
119            Text [ en-US ] = "~Erase all ink on Slide" ;
120        };
121        MenuItem
122        {
123            Separator = TRUE;
124        };
125		MenuItem
126		{
127			Identifier = CM_SCREEN;
128			Text [ en-US ] = "~Screen" ;
129
130			SubMenu = Menu
131			{
132				ItemList =
133				{
134					MenuItem
135					{
136						Identifier = CM_SCREEN_BLACK;
137						Text [ en-US ] = "~Black";
138					};
139					MenuItem
140					{
141						Identifier = CM_SCREEN_WHITE;
142						Text [ en-US ] = "~White";
143					};
144				};
145			};
146		};
147		MenuItem
148		{
149			Identifier = CM_ENDSHOW ;
150			Text [ en-US ] = "~End Show" ;
151		};
152    };
153};
154