/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #include #include #include ModalDialog DLG_WORDCOUNT { HelpID = HID_DLG_WORDCOUNT ; OutputSize = TRUE ; SVLook = TRUE ; Size = MAP_APPFONT ( 170, 108 ) ; Text [ en-US ] = "Word Count" ; Moveable = TRUE ; FixedLine FL_CURRENT { Pos = MAP_APPFONT ( 6, 3 ) ; Size = MAP_APPFONT ( 158, 8 ) ; Text [ en-US ] = "Current selection" ; }; FixedText FT_CURRENTWORD { Pos = MAP_APPFONT ( 12, 14 ) ; Size = MAP_APPFONT ( 80, 8 ) ; Text [ en-US ] = "Words:" ; }; FixedText FI_CURRENTWORD { Pos = MAP_APPFONT ( 111, 14 ) ; Size = MAP_APPFONT ( 50, 8 ) ; Right = TRUE ; }; FixedText FT_CURRENTCHARACTER { Pos = MAP_APPFONT ( 12, 26 ) ; Size = MAP_APPFONT ( 80, 8 ) ; Text [ en-US ] = "Characters:" ; }; FixedText FI_CURRENTCHARACTER { Pos = MAP_APPFONT ( 111, 26 ) ; Size = MAP_APPFONT ( 50, 8 ) ; Right = TRUE ; }; FixedLine FL_DOC { Pos = MAP_APPFONT ( 6, 40 ) ; Size = MAP_APPFONT ( 158, 8 ) ; Text [ en-US ] = "Whole document" ; }; FixedText FT_DOCWORD { Pos = MAP_APPFONT ( 12, 51 ) ; Size = MAP_APPFONT ( 80, 8 ) ; Text [ en-US ] = "Words:" ; }; FixedText FI_DOCWORD { Pos = MAP_APPFONT ( 111, 51 ) ; Size = MAP_APPFONT ( 50, 8 ) ; Right = TRUE ; }; FixedText FT_DOCCHARACTER { Pos = MAP_APPFONT ( 12, 63 ) ; Size = MAP_APPFONT ( 80, 8 ) ; Text [ en-US ] = "Characters:" ; }; FixedText FI_DOCCHARACTER { Pos = MAP_APPFONT ( 111, 63 ) ; Size = MAP_APPFONT ( 50, 8 ) ; Right = TRUE ; }; FixedLine FL_BOTTOM { Pos = MAP_APPFONT ( 6, 77 ) ; Size = MAP_APPFONT ( 158, 8 ) ; }; OKButton PB_OK { Pos = MAP_APPFONT ( 61, 88 ) ; Size = MAP_APPFONT ( 50, 14 ) ; DefButton = TRUE ; }; HelpButton PB_HELP { Pos = MAP_APPFONT ( 114, 88 ) ; Size = MAP_APPFONT ( 50, 14 ) ; }; }; // ********************************************************************** EOF