2004/07/12 19:01:40 dr 1.45.188.7: RESYNC: (1.48-1.49); FILE MERGED 2004/07/06 17:10:54 dr 1.45.188.6: #i22928# string review changes 2004/06/04 20:24:29 dr 1.45.188.5: RESYNC: (1.47-1.48); FILE MERGED 2004/05/19 14:52:19 dr 1.45.188.4: RESYNC: (1.46-1.47); FILE MERGED 2004/03/09 12:57:39 dr 1.45.188.3: #i22640# string review 2004/01/05 16:50:00 dr 1.45.188.2: RESYNC: (1.45-1.46); FILE MERGED 2003/12/18 14:05:39 dr 1.45.188.1: #i22640# SvxAlignmentTabPage: new orientation controls: svx::DialControl, svx::WrapField, svx::OrientationHelper #i22640# SvxAlignmentTabPage: SvxOrientationItem replaced by SfxBoolItem for stacked state #i22640# SvxAlignmentTabPage: ImageButton replaced by CheckBox for stacked state #i22928# SvxAlignmentTabPage: Added "Fill" to horizontal alignment #i22640# Moved border controls from SvxAlignmentTabPage to SvxBorderTabPage
317 lines
9.8 KiB
Plaintext
317 lines
9.8 KiB
Plaintext
/*************************************************************************
|
||
*
|
||
* $RCSfile: align.src,v $
|
||
*
|
||
* $Revision: 1.50 $
|
||
*
|
||
* last change: $Author: hr $ $Date: 2004-08-02 17:40:45 $
|
||
*
|
||
* The Contents of this file are made available subject to the terms of
|
||
* either of the following licenses
|
||
*
|
||
* - GNU Lesser General Public License Version 2.1
|
||
* - Sun Industry Standards Source License Version 1.1
|
||
*
|
||
* Sun Microsystems Inc., October, 2000
|
||
*
|
||
* GNU Lesser General Public License Version 2.1
|
||
* =============================================
|
||
* Copyright 2000 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
|
||
*
|
||
*
|
||
* Sun Industry Standards Source License Version 1.1
|
||
* =================================================
|
||
* The contents of this file are subject to the Sun Industry Standards
|
||
* Source License Version 1.1 (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.openoffice.org/license.html.
|
||
*
|
||
* Software provided under this License is provided on an "AS IS" basis,
|
||
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
||
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
||
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
||
* See the License for the specific provisions governing your rights and
|
||
* obligations concerning the Software.
|
||
*
|
||
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
||
*
|
||
* Copyright: 2000 by Sun Microsystems, Inc.
|
||
*
|
||
* All Rights Reserved.
|
||
*
|
||
* Contributor(s): _______________________________________
|
||
*
|
||
*
|
||
************************************************************************/
|
||
// include ---------------------------------------------------------------
|
||
#include "dialogs.hrc"
|
||
#include "helpid.hrc"
|
||
#include "align.hrc"
|
||
// pragma ----------------------------------------------------------------
|
||
|
||
#define MASKCOLOR \
|
||
MaskColor = Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; }
|
||
|
||
// define ---------------------------------------------------------------
|
||
#define IL_LOCK_MCOL Color { Red=0xFFFF; Green=0x0000; Blue=0xFFFF; }
|
||
// RID_SVXPAGE_ALIGNMENT -------------------------------------------------
|
||
TabPage RID_SVXPAGE_ALIGNMENT
|
||
{
|
||
HelpId = HID_ALIGNMENT ;
|
||
Hide = TRUE ;
|
||
Text [ de ] = "Ausrichtung" ;
|
||
Text [ en-US ] = "Alignment" ;
|
||
Size = MAP_APPFONT ( 260 , 185 ) ;
|
||
SVLook = TRUE ;
|
||
FixedLine FL_ALIGNMENT
|
||
{
|
||
Pos = MAP_APPFONT ( 6 , 3 ) ;
|
||
Size = MAP_APPFONT ( 248 , 8 ) ;
|
||
Text [ de ] = "Textausrichtung" ;
|
||
Text [ en-US ] = "Text alignment";
|
||
};
|
||
FixedText FT_HORALIGN
|
||
{
|
||
Pos = MAP_APPFONT ( 12 ,14 ) ;
|
||
Size = MAP_APPFONT ( 100 , 8 ) ;
|
||
Text [ de ] = "H~orizontal" ;
|
||
Text [ en-US ] = "Hori~zontal";
|
||
};
|
||
ListBox LB_HORALIGN
|
||
{
|
||
Border = TRUE;
|
||
Pos = MAP_APPFONT ( 12 , 25 );
|
||
Size = MAP_APPFONT ( 100 , 60 );
|
||
TabStop = TRUE;
|
||
DropDown = TRUE;
|
||
StringList [ de ] =
|
||
{
|
||
< "Standard" ; ALIGNDLG_HORALIGN_STD ; > ;
|
||
< "Links" ; ALIGNDLG_HORALIGN_LEFT ; > ;
|
||
< "Zentriert" ; ALIGNDLG_HORALIGN_CENTER ; > ;
|
||
< "Rechts" ; ALIGNDLG_HORALIGN_RIGHT ; > ;
|
||
< "Block" ; ALIGNDLG_HORALIGN_BLOCK ; > ;
|
||
< "Ausgef<65>llt" ; ALIGNDLG_HORALIGN_FILL ; > ;
|
||
};
|
||
StringList [ en-US ] =
|
||
{
|
||
< "Default" ; ALIGNDLG_HORALIGN_STD ; > ;
|
||
< "Left" ; ALIGNDLG_HORALIGN_LEFT ; > ;
|
||
< "Center" ; ALIGNDLG_HORALIGN_CENTER ; > ;
|
||
< "Right" ; ALIGNDLG_HORALIGN_RIGHT ; > ;
|
||
< "Justified" ; ALIGNDLG_HORALIGN_BLOCK ; > ;
|
||
< "Filled" ; ALIGNDLG_HORALIGN_FILL ; > ;
|
||
};
|
||
};
|
||
FixedText FT_INDENT
|
||
{
|
||
Pos = MAP_APPFONT ( 118 , 14 ) ;
|
||
Size = MAP_APPFONT ( 40 , 8 ) ;
|
||
Text [ de ] = "Einzu~g" ;
|
||
Text [ en-US ] = "I~ndent" ;
|
||
};
|
||
MetricField ED_INDENT
|
||
{
|
||
Border = TRUE ;
|
||
Pos = MAP_APPFONT ( 118 , 25 ) ;
|
||
Size = MAP_APPFONT ( 36 , 12 ) ;
|
||
Repeat = TRUE ;
|
||
Spin = TRUE ;
|
||
Minimum = 0 ;
|
||
Maximum = 990 ;
|
||
SpinSize = 10 ;
|
||
Unit = FUNIT_POINT ;
|
||
};
|
||
FixedText FT_VERALIGN
|
||
{
|
||
Pos = MAP_APPFONT ( 160 , 14 ) ;
|
||
Size = MAP_APPFONT ( 88 , 8 ) ;
|
||
Text [ de ] = "~Vertikal" ;
|
||
Text [ en-US ] = "~Vertical";
|
||
};
|
||
ListBox LB_VERALIGN
|
||
{
|
||
Border = TRUE;
|
||
Pos = MAP_APPFONT ( 160 , 25 );
|
||
Size = MAP_APPFONT ( 88 , 60 );
|
||
TabStop = TRUE;
|
||
DropDown = TRUE;
|
||
StringList [ de ] =
|
||
{
|
||
< "Standard" ; ALIGNDLG_VERALIGN_STD ; > ;
|
||
< "Oben" ; ALIGNDLG_VERALIGN_TOP ; > ;
|
||
< "Mitte" ; ALIGNDLG_VERALIGN_MID ; > ;
|
||
< "Unten" ; ALIGNDLG_VERALIGN_BOTTOM ; > ;
|
||
};
|
||
StringList [ en-US ] =
|
||
{
|
||
< "Default" ; ALIGNDLG_VERALIGN_STD ; > ;
|
||
< "Top" ; ALIGNDLG_VERALIGN_TOP ; > ;
|
||
< "Middle" ; ALIGNDLG_VERALIGN_MID ; > ;
|
||
< "Bottom" ; ALIGNDLG_VERALIGN_BOTTOM ; > ;
|
||
};
|
||
};
|
||
FixedLine FL_ORIENTATION
|
||
{
|
||
Pos = MAP_APPFONT ( 6 , 43 ) ;
|
||
Size = MAP_APPFONT ( 248 , 8 ) ;
|
||
Text [ de ] = "Textorientierung" ;
|
||
Text [ en-US ] = "Text orientation" ;
|
||
};
|
||
TriStateBox BTN_TXTSTACKED
|
||
{
|
||
Pos = MAP_APPFONT ( 133 , 54 ) ;
|
||
Size = MAP_APPFONT ( 115 , 10 ) ;
|
||
TabStop = TRUE ;
|
||
Text [ de ] = "~Senkrecht gestapelt";
|
||
Text[ en-US ] = "Ve~rtically stacked";
|
||
};
|
||
Control CTR_DIAL
|
||
{
|
||
HelpId = HID_ALIGNMENT_CTR_DIAL ;
|
||
Pos = MAP_APPFONT ( 12 , 60 ) ;
|
||
Size = MAP_APPFONT ( 42 , 43 ) ;
|
||
Text = "ABCD" ;
|
||
};
|
||
FixedText FT_DEGREES
|
||
{
|
||
Pos = MAP_APPFONT ( 72 , 54 ) ;
|
||
Size = MAP_APPFONT ( 50 , 8 ) ;
|
||
Text [ de ] = "~Winkel" ;
|
||
Text [ en-US ] = "De~grees";
|
||
};
|
||
NumericField NF_DEGREES
|
||
{
|
||
Border = TRUE ;
|
||
Pos = MAP_APPFONT ( 72 , 65 ) ;
|
||
Size = MAP_APPFONT ( 40 , 12 ) ;
|
||
TabStop = TRUE ;
|
||
Repeat = TRUE ;
|
||
Spin = TRUE ;
|
||
Minimum = 0 ;
|
||
Maximum = 359 ;
|
||
SpinSize = 5 ;
|
||
StrictFormat = TRUE ;
|
||
};
|
||
FixedText FT_BORDER_LOCK
|
||
{
|
||
Pos = MAP_APPFONT ( 72 , 83 ) ;
|
||
Size = MAP_APPFONT ( 70 , 8 ) ;
|
||
Text [ de ] = "Bezugs~kante" ;
|
||
Text [ en-US ] = "Re~ference edge" ;
|
||
};
|
||
Control CTR_BORDER_LOCK
|
||
{
|
||
HelpId = HID_ALIGNMENT_CTR_BORDER_LOCK ;
|
||
Pos = MAP_APPFONT ( 72 , 94 ) ;
|
||
Size = MAP_APPFONT ( 50 , 15 ) ;
|
||
TabStop = TRUE ;
|
||
};
|
||
TriStateBox BTN_ASIAN_VERTICAL
|
||
{
|
||
Pos = MAP_APPFONT ( 143 , 68 ) ;
|
||
Size = MAP_APPFONT ( 105 , 10 ) ;
|
||
TabStop = TRUE ;
|
||
Text [ de ] = "Asiatischer ~Layoutmodus" ;
|
||
Text [ en-US ] = "Asian layout ~mode" ;
|
||
};
|
||
FixedLine FL_WRAP
|
||
{
|
||
Pos = MAP_APPFONT ( 6 , 115 ) ;
|
||
Size = MAP_APPFONT ( 248 , 8 ) ;
|
||
Text [ de ] = "Eigenschaften" ;
|
||
Text [ en-US ] = "Properties" ;
|
||
};
|
||
TriStateBox BTN_WRAP
|
||
{
|
||
Pos = MAP_APPFONT ( 12 , 126 ) ;
|
||
Size = MAP_APPFONT ( 236 , 10 ) ;
|
||
Text [ de ] = "Automatischer Zeilenumbru~ch" ;
|
||
Text [ en-US ] = "~Wrap text automatically" ;
|
||
};
|
||
TriStateBox BTN_HYPH
|
||
{
|
||
Pos = MAP_APPFONT ( 22 , 139 ) ;
|
||
Size = MAP_APPFONT ( 226 , 10 ) ;
|
||
Text [ de ] = "Silben~trennung aktiv" ;
|
||
Text [ en-US ] = "Hyphenation ~active";
|
||
};
|
||
TriStateBox BTN_SHRINK
|
||
{
|
||
Pos = MAP_APPFONT( 12, 152 );
|
||
Size = MAP_APPFONT( 236, 10 );
|
||
Text [ de ] = "~An Zellgr<67><72>e anpassen";
|
||
Text [ en-US ] = "~Shrink to fit cell size";
|
||
};
|
||
FixedText FT_TEXTFLOW
|
||
{
|
||
Pos = MAP_APPFONT( 12 , 170 );
|
||
Size = MAP_APPFONT( 64 , 8 );
|
||
Text [ de ] = "Te~xtrichtung";
|
||
Text [ en-US ] = "Te~xt direction";
|
||
};
|
||
ListBox LB_FRAMEDIR
|
||
{
|
||
Pos = MAP_APPFONT( 78 , 168 );
|
||
Size = MAP_APPFONT( 170 , 50 );
|
||
Border = TRUE;
|
||
DropDown = TRUE;
|
||
};
|
||
ImageList IL_LOCK_BMPS
|
||
{
|
||
Prefix = "lo";
|
||
MaskColor = IL_LOCK_MCOL ;
|
||
IdList =
|
||
{
|
||
IID_BOTTOMLOCK ;
|
||
IID_TOPLOCK ;
|
||
IID_CELLLOCK ;
|
||
};
|
||
IdCount = { 3 ; };
|
||
};
|
||
ImageList IL_LOCK_BMPS_HC
|
||
{
|
||
Prefix = "loh";
|
||
MaskColor = IL_LOCK_MCOL ;
|
||
IdList =
|
||
{
|
||
IID_BOTTOMLOCK ;
|
||
IID_TOPLOCK ;
|
||
IID_CELLLOCK ;
|
||
};
|
||
IdCount = { 3 ; };
|
||
};
|
||
String STR_BOTTOMLOCK
|
||
{
|
||
Text [ de ] = "Textausdehnung von unterer Zellkante aus." ;
|
||
Text [ en-US ] = "Text Extension From Lower Cell Border" ;
|
||
};
|
||
String STR_TOPLOCK
|
||
{
|
||
Text [ de ] = "Textausdehnung von oberer Zellkante aus." ;
|
||
Text [ en-US ] = "Text Extension From Upper Cell Border" ;
|
||
};
|
||
String STR_CELLLOCK
|
||
{
|
||
Text [ de ] = "Textausdehnung nur innerhalb der Zelle." ;
|
||
Text [ en-US ] = "Text Extension Inside Cell" ;
|
||
};
|
||
};
|
||
// ********************************************************************** EOF
|
||
|