diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-06-06 11:02:23 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-06-06 11:02:23 +0000 |
commit | 5750dca0d846d5a427a8f8820e23b61ea2c8e023 (patch) | |
tree | de047f6ec3b731ad28c215d4258f5a0dcbf8d70f /sd/source/ui/dlg | |
parent | bc714cde2597c75301b5da34f3ab6182af6a078e (diff) |
INTEGRATION: CWS impressodf12 (1.28.12); FILE MERGED
2008/05/29 12:30:17 cl 1.28.12.1: #i75927# bullet rework
Diffstat (limited to 'sd/source/ui/dlg')
-rw-r--r-- | sd/source/ui/dlg/paragr.src | 57 |
1 files changed, 47 insertions, 10 deletions
diff --git a/sd/source/ui/dlg/paragr.src b/sd/source/ui/dlg/paragr.src index dbc9dd07c773..5ec06f06cf1d 100644 --- a/sd/source/ui/dlg/paragr.src +++ b/sd/source/ui/dlg/paragr.src @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: paragr.src,v $ - * $Revision: 1.28 $ + * $Revision: 1.29 $ * * This file is part of OpenOffice.org. * @@ -29,7 +29,9 @@ ************************************************************************/ #include <svx/dialogs.hrc> +#include "glob.hrc" #include "paragr.hrc" + TabDialog TAB_PARAGRAPH { OutputSize = TRUE ; @@ -48,7 +50,6 @@ TabDialog TAB_PARAGRAPH PageItem { Identifier = RID_SVXPAGE_STD_PARAGRAPH ; - /* ### ACHTUNG: Neuer Text in Resource? Einzge und Abstnde : Einzge und Abstnde */ Text [ en-US ] = "Indents & Spacing" ; PageResID = RID_SVXPAGE_STD_PARAGRAPH ; }; @@ -64,13 +65,12 @@ TabDialog TAB_PARAGRAPH PageResID = RID_SVXPAGE_PARA_ASIAN ; Text [ en-US ] = "Asian Typography"; }; - /* - PageItem { - Identifier = RID_SVXPAGE_EXT_PARAGRAPH; - Text [ en-US ] = "Paragraph (Extensions)"; - PageResID = RID_SVXPAGE_EXT_PARAGRAPH; - }; -*/ + PageItem + { + Identifier = RID_TABPAGE_PARA_NUMBERING; + Text = "Numbering"; + PageResID = RID_TABPAGE_PARA_NUMBERING; + }; PageItem { Identifier = RID_SVXPAGE_TABULATOR ; @@ -101,12 +101,49 @@ TabDialog TAB_PARAGRAPH { Pos = MAP_APPFONT ( 169 , 151 ) ; Size = MAP_APPFONT ( 50 , 14 ) ; - /* ### ACHTUNG: Neuer Text in Resource? Zurck : Zurck */ Text [ en-US ] = "Return" ; TabStop = TRUE ; }; }; +TabPage RID_TABPAGE_PARA_NUMBERING +{ + HelpId = RID_TABPAGE_PARA_NUMBERING ; + Hide = TRUE ; + Text = "Numbering" ; + Size = MAP_APPFONT ( 260 , 185 ) ; + + TriStateBox CB_NEW_START + { + Pos = MAP_APPFONT ( 6 , 6 ) ; + Size = MAP_APPFONT ( 160 , 10 ) ; + TabStop = TRUE ; + Text = "R~estart at this paragraph" ; + }; + TriStateBox CB_NUMBER_NEW_START + { + Pos = MAP_APPFONT ( 15 , 21 ) ; + Size = MAP_APPFONT ( 103 , 10 ) ; + Disable = TRUE ; + Text = "S~tart with" ; + }; + NumericField NF_NEW_START + { + Border = TRUE ; + Pos = MAP_APPFONT ( 124 , 20 ) ; + Size = MAP_APPFONT ( 26 , 12 ) ; + TabStop = TRUE ; + Left = TRUE ; + Repeat = TRUE ; + Spin = TRUE ; + Minimum = 0 ; + Maximum = 9999 ; + Value = 0 ; + First = 0 ; + Last = 9999 ; + Disable = TRUE ; + }; +}; |