Files
libreoffice/sd/source/ui/slideshow/slideshow.src
Samuel Mehrbrodt b8608fddf0 fdo#45233 Allow editing pps/ppsx Autoplay Presentations
Added a context menu "Edit Presentation" when in Autplay mode.
This has been discussed and approved by the Design team: https://wiki.documentfoundation.org/Design/Meetings/2013-07-20

Change-Id: Ic229e54bd10d23f999f1d746cce38c4004504d28
Reviewed-on: https://gerrit.libreoffice.org/4960
Reviewed-by: Luboš Luňák <l.lunak@suse.cz>
Tested-by: Luboš Luňák <l.lunak@suse.cz>
2013-07-29 11:53:05 +00:00

157 lines
4.5 KiB
Plaintext

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include "glob.hrc"
#include "slideshow.hrc"
Menu RID_SLIDESHOW_CONTEXTMENU
{
ItemList =
{
MenuItem
{
Identifier = CM_NEXT_SLIDE ;
Text [ en-US ] = "~Next" ;
};
MenuItem
{
Identifier = CM_PREV_SLIDE ;
Text [ en-US ] = "~Previous" ;
};
MenuItem
{
Identifier = CM_GOTO;
Text [ en-US ] = "~Go to Slide" ;
SubMenu = Menu
{
ItemList =
{
MenuItem
{
Identifier = CM_FIRST_SLIDE;
Text [ en-US ] = "~First Slide";
};
MenuItem
{
Identifier = CM_LAST_SLIDE;
Text [ en-US ] = "~Last Slide";
};
MenuItem
{
Separator = TRUE;
};
};
};
};
MenuItem
{
Separator = TRUE;
};
MenuItem
{
Identifier = CM_PEN_MODE;
Text [ en-US ] = "Mouse pointer as ~Pen";
};
MenuItem
{
Identifier = CM_WIDTH_PEN;
Text [ en-US ] = "~Pen Width" ;
SubMenu = Menu
{
ItemList =
{
MenuItem
{
Identifier = CM_WIDTH_PEN_VERY_THIN;
Text [ en-US ] = "~Very thin";
};
MenuItem
{
Identifier = CM_WIDTH_PEN_THIN;
Text [ en-US ] = "~Thin";
};
MenuItem
{
Identifier = CM_WIDTH_PEN_NORMAL;
Text [ en-US ] = "~Normal";
};
MenuItem
{
Identifier = CM_WIDTH_PEN_THICK;
Text [ en-US ] = "~Thick";
};
MenuItem
{
Identifier = CM_WIDTH_PEN_VERY_THICK;
Text [ en-US ] = "~Very Thick";
};
};
};
};
MenuItem
{
Identifier = CM_COLOR_PEN ;
Text [ en-US ] = "~Change pen Color..." ;
};
MenuItem
{
Identifier = CM_ERASE_ALLINK ;
Text [ en-US ] = "~Erase all ink on Slide" ;
};
MenuItem
{
Separator = TRUE;
};
MenuItem
{
Identifier = CM_SCREEN;
Text [ en-US ] = "~Screen" ;
SubMenu = Menu
{
ItemList =
{
MenuItem
{
Identifier = CM_SCREEN_BLACK;
Text [ en-US ] = "~Black";
};
MenuItem
{
Identifier = CM_SCREEN_WHITE;
Text [ en-US ] = "~White";
};
};
};
};
MenuItem
{
Identifier = CM_EDIT_PRESENTATION ;
Text [ en-US ] = "E~dit Presentation" ;
};
MenuItem
{
Identifier = CM_ENDSHOW ;
Text [ en-US ] = "~End Show" ;
};
};
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */