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 <helpid.h> 25#include <dialog.hrc> 26#include <wordcountdialog.hrc> 27 28ModalDialog DLG_WORDCOUNT 29{ 30 HelpID = HID_DLG_WORDCOUNT ; 31 OutputSize = TRUE ; 32 SVLook = TRUE ; 33 Size = MAP_APPFONT ( 170, 108 ) ; 34 Text [ en-US ] = "Word Count" ; 35 Moveable = TRUE ; 36 37 FixedLine FL_CURRENT 38 { 39 Pos = MAP_APPFONT ( 6, 3 ) ; 40 Size = MAP_APPFONT ( 158, 8 ) ; 41 Text [ en-US ] = "Current selection" ; 42 }; 43 FixedText FT_CURRENTWORD 44 { 45 Pos = MAP_APPFONT ( 12, 14 ) ; 46 Size = MAP_APPFONT ( 80, 8 ) ; 47 Text [ en-US ] = "Words:" ; 48 }; 49 FixedText FI_CURRENTWORD 50 { 51 Pos = MAP_APPFONT ( 111, 14 ) ; 52 Size = MAP_APPFONT ( 50, 8 ) ; 53 Right = TRUE ; 54 }; 55 FixedText FT_CURRENTCHARACTER 56 { 57 Pos = MAP_APPFONT ( 12, 26 ) ; 58 Size = MAP_APPFONT ( 80, 8 ) ; 59 Text [ en-US ] = "Characters:" ; 60 }; 61 FixedText FI_CURRENTCHARACTER 62 { 63 Pos = MAP_APPFONT ( 111, 26 ) ; 64 Size = MAP_APPFONT ( 50, 8 ) ; 65 Right = TRUE ; 66 }; 67 FixedLine FL_DOC 68 { 69 Pos = MAP_APPFONT ( 6, 40 ) ; 70 Size = MAP_APPFONT ( 158, 8 ) ; 71 Text [ en-US ] = "Whole document" ; 72 }; 73 FixedText FT_DOCWORD 74 { 75 Pos = MAP_APPFONT ( 12, 51 ) ; 76 Size = MAP_APPFONT ( 80, 8 ) ; 77 Text [ en-US ] = "Words:" ; 78 }; 79 FixedText FI_DOCWORD 80 { 81 Pos = MAP_APPFONT ( 111, 51 ) ; 82 Size = MAP_APPFONT ( 50, 8 ) ; 83 Right = TRUE ; 84 }; 85 FixedText FT_DOCCHARACTER 86 { 87 Pos = MAP_APPFONT ( 12, 63 ) ; 88 Size = MAP_APPFONT ( 80, 8 ) ; 89 Text [ en-US ] = "Characters:" ; 90 }; 91 FixedText FI_DOCCHARACTER 92 { 93 Pos = MAP_APPFONT ( 111, 63 ) ; 94 Size = MAP_APPFONT ( 50, 8 ) ; 95 Right = TRUE ; 96 }; 97 FixedLine FL_BOTTOM 98 { 99 Pos = MAP_APPFONT ( 6, 77 ) ; 100 Size = MAP_APPFONT ( 158, 8 ) ; 101 }; 102 OKButton PB_OK 103 { 104 Pos = MAP_APPFONT ( 61, 88 ) ; 105 Size = MAP_APPFONT ( 50, 14 ) ; 106 DefButton = TRUE ; 107 }; 108 HelpButton PB_HELP 109 { 110 Pos = MAP_APPFONT ( 114, 88 ) ; 111 Size = MAP_APPFONT ( 50, 14 ) ; 112 }; 113}; 114 115// ********************************************************************** EOF 116