1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22#include "dialog.hrc" 23#include "helpid.h" 24#include "abstract.hrc" 25 26ModalDialog DLG_INSERT_ABSTRACT 27{ 28 HelpID = HID_INSERT_ABSTRACT ; 29 OutputSize = TRUE ; 30 SVLook = TRUE ; 31 Size = MAP_APPFONT ( 239, 68 ) ; 32 Moveable = TRUE ; 33 FixedLine FL_1 34 { 35 OutputSize = TRUE ; 36 Pos = MAP_APPFONT ( 6, 3 ) ; 37 Size = MAP_APPFONT ( 174, 8 ) ; 38 Text [ en-US ] = "Properties" ; 39 }; 40 FixedText FT_LEVEL 41 { 42 Pos = MAP_APPFONT ( 12, 12 ) ; 43 Size = MAP_APPFONT ( 120, 8 ) ; 44 Text [ en-US ] = "Included outline levels" ; 45 }; 46 NumericField NF_LEVEL 47 { 48 HelpID = "sw:NumericField:DLG_INSERT_ABSTRACT:NF_LEVEL" ; 49 Border = TRUE ; 50 Pos = MAP_APPFONT ( 153, 12 ) ; 51 Size = MAP_APPFONT ( 24, 12 ) ; 52 TabStop = TRUE ; 53 Left = TRUE ; 54 Repeat = TRUE ; 55 Spin = TRUE ; 56 Minimum = 1 ; 57 Maximum = 5 ; 58 Value = 3 ; 59 First = 1 ; 60 Last = 5 ; 61 }; 62 FixedText FT_PARA 63 { 64 Pos = MAP_APPFONT ( 12, 27 ) ; 65 Size = MAP_APPFONT ( 120, 8 ) ; 66 Text [ en-US ] = "Subpoints per level" ; 67 }; 68 NumericField NF_PARA 69 { 70 HelpID = "sw:NumericField:DLG_INSERT_ABSTRACT:NF_PARA" ; 71 Border = TRUE ; 72 Pos = MAP_APPFONT ( 153, 27 ) ; 73 Size = MAP_APPFONT ( 24, 12 ) ; 74 TabStop = TRUE ; 75 Left = TRUE ; 76 Repeat = TRUE ; 77 Spin = TRUE ; 78 Minimum = 1 ; 79 Maximum = 5 ; 80 Value = 1 ; 81 First = 1 ; 82 Last = 5 ; 83 }; 84 FixedText FT_DESC 85 { 86 Pos = MAP_APPFONT ( 12, 43 ) ; 87 Size = MAP_APPFONT ( 165, 16 ) ; 88 WordBreak = TRUE ; 89 Text [ en-US ] = "The abstract contains the selected number of paragraphs from the included outline levels." ; 90 }; 91 OKButton PB_OK 92 { 93 Pos = MAP_APPFONT ( 186, 6 ) ; 94 Size = MAP_APPFONT ( 50, 14 ) ; 95 TabStop = TRUE ; 96 DefButton = TRUE ; 97 }; 98 CancelButton PB_CANCEL 99 { 100 Pos = MAP_APPFONT ( 186, 23 ) ; 101 Size = MAP_APPFONT ( 50, 14 ) ; 102 TabStop = TRUE ; 103 }; 104 HelpButton PB_HELP 105 { 106 Pos = MAP_APPFONT ( 186, 43 ) ; 107 Size = MAP_APPFONT ( 50, 14 ) ; 108 TabStop = TRUE ; 109 }; 110 Text [ en-US ] = "Create AutoAbstract" ; 111}; 112 113// ********************************************************************** EOF 114