1/************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27#include <helpid.h> 28#include <dialog.hrc> 29#include <wordcountdialog.hrc> 30ModalDialog DLG_WORDCOUNT 31{ 32 HelpID = HID_DLG_WORDCOUNT ; 33 OutputSize = TRUE ; 34 SVLook = TRUE ; 35 Size = MAP_APPFONT ( 170 , 108 ) ; 36 Text [ en-US ] = "Word Count" ; 37 Moveable = TRUE ; 38 39 FixedLine FL_CURRENT 40 { 41 Pos = MAP_APPFONT ( 6 , 3 ) ; 42 Size = MAP_APPFONT ( 158 , 8 ) ; 43 Text [ en-US ] = "Current selection"; 44 }; 45 FixedText FT_CURRENTWORD 46 { 47 Pos = MAP_APPFONT ( 12 , 14 ) ; 48 Size = MAP_APPFONT ( 80 , 8 ) ; 49 Text [ en-US ] = "Words:"; 50 }; 51 FixedText FI_CURRENTWORD 52 { 53 Pos = MAP_APPFONT ( 111 , 14 ) ; 54 Size = MAP_APPFONT ( 50 , 8 ) ; 55 Right = TRUE; 56 }; 57 FixedText FT_CURRENTCHARACTER 58 { 59 Pos = MAP_APPFONT ( 12 , 26 ) ; 60 Size = MAP_APPFONT ( 80 , 8 ) ; 61 Text [ en-US ] = "Characters:"; 62 }; 63 FixedText FI_CURRENTCHARACTER 64 { 65 Pos = MAP_APPFONT ( 111 , 26 ) ; 66 Size = MAP_APPFONT ( 50 , 8 ) ; 67 Right = TRUE; 68 }; 69 FixedLine FL_DOC 70 { 71 Pos = MAP_APPFONT ( 6, 40 ) ; 72 Size = MAP_APPFONT ( 158 , 8 ) ; 73 Text [ en-US ] = "Whole document"; 74 }; 75 FixedText FT_DOCWORD 76 { 77 Pos = MAP_APPFONT ( 12, 51 ) ; 78 Size = MAP_APPFONT ( 80 , 8 ) ; 79 Text [ en-US ] = "Words:"; 80 }; 81 FixedText FI_DOCWORD 82 { 83 Pos = MAP_APPFONT ( 111 , 51 ) ; 84 Size = MAP_APPFONT ( 50 , 8 ) ; 85 Right = TRUE; 86 }; 87 FixedText FT_DOCCHARACTER 88 { 89 Pos = MAP_APPFONT ( 12 , 63 ) ; 90 Size = MAP_APPFONT ( 80 , 8 ) ; 91 Text [ en-US ] = "Characters:"; 92 }; 93 FixedText FI_DOCCHARACTER 94 { 95 Pos = MAP_APPFONT ( 111, 63 ) ; 96 Size = MAP_APPFONT ( 50, 8 ) ; 97 Right = TRUE; 98 }; 99 FixedLine FL_BOTTOM 100 { 101 Pos = MAP_APPFONT ( 6 , 77 ) ; 102 Size = MAP_APPFONT ( 158 , 8 ) ; 103 }; 104 OKButton PB_OK 105 { 106 Pos = MAP_APPFONT ( 61 , 88 ) ; 107 Size = MAP_APPFONT ( 50 , 14 ) ; 108 DefButton = TRUE ; 109 }; 110 HelpButton PB_HELP 111 { 112 Pos = MAP_APPFONT ( 114 , 88 ) ; 113 Size = MAP_APPFONT ( 50 , 14 ) ; 114 }; 115}; 116