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