xref: /trunk/main/sd/source/ui/slideshow/slideshow.src (revision cdf0e10c)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27
28#include "glob.hrc"
29#include "slideshow.hrc"
30
31Menu RID_SLIDESHOW_CONTEXTMENU
32{
33    ItemList =
34    {
35        MenuItem
36        {
37            Identifier = CM_NEXT_SLIDE ;
38            Text [ en-US ] = "~Next" ;
39		};
40        MenuItem
41        {
42            Identifier = CM_PREV_SLIDE ;
43            Text [ en-US ] = "~Previous" ;
44   		};
45		MenuItem
46		{
47            Identifier = CM_GOTO;
48            Text [ en-US ] = "~Go to Slide" ;
49            SubMenu = Menu
50            {
51				ItemList =
52				{
53					MenuItem
54					{
55						Identifier = CM_FIRST_SLIDE;
56						Text [ en-US ] = "~First Slide";
57					};
58					MenuItem
59					{
60						Identifier = CM_LAST_SLIDE;
61						Text [ en-US ] = "~Last Slide";
62					};
63					MenuItem
64					{
65						Separator = TRUE;
66					};
67				};
68			};
69		};
70		MenuItem
71		{
72			Separator = TRUE;
73		};
74        MenuItem
75        {
76            Identifier = CM_PEN_MODE;
77            Text [ en-US ] = "Mouse pointer as ~Pen";
78        };
79        MenuItem
80        {
81            Identifier = CM_WIDTH_PEN;
82            Text [ en-US ] = "~Pen Width" ;
83            SubMenu = Menu
84            {
85                ItemList =
86                {
87                    MenuItem
88                    {
89                        Identifier =  CM_WIDTH_PEN_VERY_THIN;
90                        Text [ en-US ] = "~Very thin";
91                    };
92                    MenuItem
93                    {
94                        Identifier =  CM_WIDTH_PEN_THIN;
95                        Text [ en-US ] = "~Thin";
96                    };
97                    MenuItem
98                    {
99                        Identifier =  CM_WIDTH_PEN_NORMAL;
100                        Text [ en-US ] = "~Normal";
101                    };
102                    MenuItem
103                    {
104                        Identifier =  CM_WIDTH_PEN_THICK;
105                        Text [ en-US ] = "~Thick";
106                    };
107                    MenuItem
108                    {
109                        Identifier =  CM_WIDTH_PEN_VERY_THICK;
110                        Text [ en-US ] = "~Very Thick";
111                    };
112                };
113            };
114        };
115        MenuItem
116        {
117            Identifier = CM_COLOR_PEN ;
118            Text [ en-US ] = "~Change pen Color..." ;
119        };
120        MenuItem
121        {
122            Identifier = CM_ERASE_ALLINK ;
123            Text [ en-US ] = "~Erase all ink on Slide" ;
124        };
125        MenuItem
126        {
127            Separator = TRUE;
128        };
129		MenuItem
130		{
131			Identifier = CM_SCREEN;
132			Text [ en-US ] = "~Screen" ;
133
134			SubMenu = Menu
135			{
136				ItemList =
137				{
138					MenuItem
139					{
140						Identifier = CM_SCREEN_BLACK;
141						Text [ en-US ] = "~Black";
142					};
143					MenuItem
144					{
145						Identifier = CM_SCREEN_WHITE;
146						Text [ en-US ] = "~White";
147					};
148				};
149			};
150		};
151		MenuItem
152		{
153			Identifier = CM_ENDSHOW ;
154			Text [ en-US ] = "~End Show" ;
155		};
156    };
157};
158