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 23 24#include "dialog.hrc" 25#include "helpid.h" 26#include "abstract.hrc" 27 28ModalDialog DLG_INSERT_ABSTRACT 29{ 30 HelpID = HID_INSERT_ABSTRACT ; 31 OutputSize = TRUE ; 32 SVLook = TRUE ; 33 Size = MAP_APPFONT ( 239, 68 ) ; 34 Moveable = TRUE ; 35 FixedLine FL_1 36 { 37 OutputSize = TRUE ; 38 Pos = MAP_APPFONT ( 6, 3 ) ; 39 Size = MAP_APPFONT ( 174, 8 ) ; 40 Text [ en-US ] = "Properties" ; 41 }; 42 FixedText FT_LEVEL 43 { 44 Pos = MAP_APPFONT ( 12, 12 ) ; 45 Size = MAP_APPFONT ( 120, 8 ) ; 46 Text [ en-US ] = "Included outline levels" ; 47 }; 48 NumericField NF_LEVEL 49 { 50 HelpID = "sw:NumericField:DLG_INSERT_ABSTRACT:NF_LEVEL" ; 51 Border = TRUE ; 52 Pos = MAP_APPFONT ( 153, 12 ) ; 53 Size = MAP_APPFONT ( 24, 12 ) ; 54 TabStop = TRUE ; 55 Left = TRUE ; 56 Repeat = TRUE ; 57 Spin = TRUE ; 58 Minimum = 1 ; 59 Maximum = 5 ; 60 Value = 3 ; 61 First = 1 ; 62 Last = 5 ; 63 }; 64 FixedText FT_PARA 65 { 66 Pos = MAP_APPFONT ( 12, 27 ) ; 67 Size = MAP_APPFONT ( 120, 8 ) ; 68 Text [ en-US ] = "Subpoints per level" ; 69 }; 70 NumericField NF_PARA 71 { 72 HelpID = "sw:NumericField:DLG_INSERT_ABSTRACT:NF_PARA" ; 73 Border = TRUE ; 74 Pos = MAP_APPFONT ( 153, 27 ) ; 75 Size = MAP_APPFONT ( 24, 12 ) ; 76 TabStop = TRUE ; 77 Left = TRUE ; 78 Repeat = TRUE ; 79 Spin = TRUE ; 80 Minimum = 1 ; 81 Maximum = 5 ; 82 Value = 1 ; 83 First = 1 ; 84 Last = 5 ; 85 }; 86 FixedText FT_DESC 87 { 88 Pos = MAP_APPFONT ( 12, 43 ) ; 89 Size = MAP_APPFONT ( 165, 16 ) ; 90 WordBreak = TRUE ; 91 Text [ en-US ] = "The abstract contains the selected number of paragraphs from the included outline levels." ; 92 }; 93 OKButton PB_OK 94 { 95 Pos = MAP_APPFONT ( 186, 6 ) ; 96 Size = MAP_APPFONT ( 50, 14 ) ; 97 TabStop = TRUE ; 98 DefButton = TRUE ; 99 }; 100 CancelButton PB_CANCEL 101 { 102 Pos = MAP_APPFONT ( 186, 23 ) ; 103 Size = MAP_APPFONT ( 50, 14 ) ; 104 TabStop = TRUE ; 105 }; 106 HelpButton PB_HELP 107 { 108 Pos = MAP_APPFONT ( 186, 43 ) ; 109 Size = MAP_APPFONT ( 50, 14 ) ; 110 TabStop = TRUE ; 111 }; 112 Text [ en-US ] = "Create AutoAbstract" ; 113}; 114 115// ********************************************************************** EOF 116