office-gobmx/sd/source/ui/dlg/navigatr.src
Ivo Hinkelmann b4ff8642a9 INTEGRATION: CWS mergede01 (1.34.360); FILE MERGED
2007/03/20 14:38:22 ihi 1.34.360.1: #i72301# Remove German
2007-04-19 11:28:39 +00:00

193 lines
5.3 KiB
Text
Raw Blame History

/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: navigatr.src,v $
*
* $Revision: 1.35 $
*
* last change: $Author: ihi $ $Date: 2007-04-19 12:28:39 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
************************************************************************/
#include "navigatr.hrc"
#include "helpids.h"
#include "res_bmp.hrc"
#define BUTTON_WIDTH 13
#define BUTTON_COUNT 7
#define BUTTON_SIZE MAP_APPFONT( BUTTON_WIDTH, BUTTON_WIDTH );
Window FLT_NAVIGATOR
{
HelpId = HID_SD_NAVIGATOR ;
Size = MAP_APPFONT ( 12 + BUTTON_WIDTH * BUTTON_COUNT , 105 ) ;
Text = "Navigator" ;
SVLook = TRUE ;
DialogControl = TRUE;
Control TLB_OBJECTS
{
HelpId = HID_SD_NAVIGATOR_TLB ;
Border = TRUE ;
Pos = MAP_APPFONT ( 3 , 20 ) ;
Size = MAP_APPFONT ( 6 + BUTTON_WIDTH * BUTTON_COUNT , 67 ) ;
TabStop = TRUE ;
};
ToolBox 1
{
HelpId = HID_SD_NAVIGATOR_TBX ;
SVLook = TRUE ;
Pos = MAP_APPFONT ( 3 , 3 ) ;
Size = MAP_APPFONT ( 6 + BUTTON_WIDTH , 15 ) ;
TabStop = TRUE ;
ItemList =
{
ToolBoxItem
{
AutoCheck = TRUE ;
Identifier = TBI_PEN ;
HelpId = HID_SD_NAVIGATOR_TBI_PEN ;
Text [ en-US ] = "Pointer" ;
};
ToolBoxItem
{
Type = TOOLBOXITEM_SEPARATOR ;
};
ToolBoxItem
{
Identifier = TBI_FIRST ;
HelpId = HID_SD_NAVIGATOR_TBI_FIRST ;
//Symbol = IMAGEBUTTON_FIRST ;
Text [ en-US ] = "First Slide" ;
};
ToolBoxItem
{
Identifier = TBI_PREVIOUS ;
HelpId = HID_SD_NAVIGATOR_TBI_PREV ;
//Symbol = IMAGEBUTTON_PREV ;
Text [ en-US ] = "Previous Slide" ;
};
ToolBoxItem
{
Identifier = TBI_NEXT ;
HelpId = HID_SD_NAVIGATOR_TBI_NEXT ;
//Symbol = IMAGEBUTTON_NEXT ;
/* ### ACHTUNG: Neuer Text in Resource? N<>chste Seite : N<>chste Seite */
/* ### ACHTUNG: Neuer Text in Resource? Zur n<>chsten Seite springen : Zur n<>chsten Seite springen */
Text [ en-US ] = "Next Slide" ;
};
ToolBoxItem
{
Identifier = TBI_LAST ;
HelpId = HID_SD_NAVIGATOR_TBI_LAST ;
//Symbol = IMAGEBUTTON_LAST ;
Text [ en-US ] = "Last Slide" ;
};
ToolBoxItem
{
Type = TOOLBOXITEM_SEPARATOR ;
};
ToolBoxItem
{
Identifier = TBI_DRAGTYPE ;
HelpId = HID_SD_NAVIGATOR_TBI_DRAGTYPE ;
DropDown = TRUE ;
//Left = FALSE;
/* ### ACHTUNG: Neuer Text in Resource? Modus f<>r Drag & Drop ausw<73>hlen : Modus f<>r Drag & Drop ausw<73>hlen */
Text [ en-US ] = "Drag Mode" ;
};
};
};
ListBox LB_DOCS
{
HelpId = HID_SD_NAVIGATOR_LB ;
Border = TRUE ;
Pos = MAP_APPFONT ( 3 , 89 ) ;
Size = MAP_APPFONT ( 6 + BUTTON_WIDTH * BUTTON_COUNT , 90 ) ;
TabStop = TRUE ;
DropDown = TRUE ;
QuickHelpText [ en-US ] = "Documents" ;
/* ### ACHTUNG: Neuer Text in Resource? Ge<47>ffnete Dokumente : Ge<47>ffnete Dokumente */
};
#define NAVIGATR_IDLIST \
IdList = \
{ \
TBI_PEN ; \
TBI_FIRST ; \
TBI_PREVIOUS ; \
TBI_NEXT ; \
TBI_LAST ; \
TBI_EMBEDDED ; \
TBI_LINK ; \
TBI_HYPERLINK ; \
}; \
IdCount = { 8 ; };
#define IMAGE_STDBTN_COLOR Color { Red = 0xff00; Green = 0x0000; Blue = 0xff00; }
ImageList IL_NAVIGATR
{
Prefix = "nv";
MaskColor = IMAGE_STDBTN_COLOR ;
NAVIGATR_IDLIST
};
ImageList ILH_NAVIGATR
{
Prefix = "nvh";
MaskColor = IMAGE_STDBTN_COLOR ;
NAVIGATR_IDLIST
};
};