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 "app.hrc" 25#include "morphdlg.hrc" 26#include "helpids.h" 27 28/****************************************************************************** 29|* 30\******************************************************************************/ 31ModalDialog DLG_MORPH 32{ 33 HelpID = CMD_SID_POLYGON_MORPHING ; 34 HelpID = ".uno:Morphing" ; 35 OutputSize = TRUE ; 36 SVLook = TRUE ; 37 Size = MAP_APPFONT ( 196, 68 ) ; 38 Moveable = TRUE ; 39 Closeable = TRUE ; 40 OKButton BTN_OK 41 { 42 Pos = MAP_APPFONT ( 141, 6 ) ; 43 Size = MAP_APPFONT ( 50, 14 ) ; 44 TabStop = TRUE ; 45 DefButton = TRUE ; 46 }; 47 CancelButton BTN_CANCEL 48 { 49 Pos = MAP_APPFONT ( 141, 23 ) ; 50 Size = MAP_APPFONT ( 50, 14 ) ; 51 TabStop = TRUE ; 52 }; 53 HelpButton BTN_HELP 54 { 55 Pos = MAP_APPFONT ( 140, 43 ) ; 56 Size = MAP_APPFONT ( 50, 14 ) ; 57 TabStop = TRUE ; 58 }; 59 FixedLine GRP_PRESET 60 { 61 Pos = MAP_APPFONT ( 6, 3 ) ; 62 Size = MAP_APPFONT ( 129, 8 ) ; 63 Text [ en-US ] = "Settings" ; 64 }; 65 FixedText FT_STEPS 66 { 67 Pos = MAP_APPFONT ( 12, 16 ) ; 68 Size = MAP_APPFONT ( 40, 10 ) ; 69 Text [ en-US ] = "Increments" ; 70 }; 71 MetricField MTF_STEPS 72 { 73 HelpID = "sd:MetricField:DLG_MORPH:MTF_STEPS" ; 74 Border = TRUE ; 75 Pos = MAP_APPFONT ( 56, 14 ) ; 76 Size = MAP_APPFONT ( 30, 12 ) ; 77 TabStop = TRUE ; 78 Spin = TRUE ; 79 Repeat = TRUE ; 80 Minimum = 1 ; 81 Maximum = 256 ; 82 First = 1 ; 83 Last = 256 ; 84 }; 85 CheckBox CBX_ATTRIBUTES 86 { 87 HelpID = "sd:CheckBox:DLG_MORPH:CBX_ATTRIBUTES" ; 88 Pos = MAP_APPFONT ( 12, 29 ) ; 89 Size = MAP_APPFONT ( 121, 12 ) ; 90 TabStop = TRUE ; 91 Text [ en-US ] = "Cross-fade attributes" ; 92 }; 93 CheckBox CBX_ORIENTATION 94 { 95 HelpID = "sd:CheckBox:DLG_MORPH:CBX_ORIENTATION" ; 96 Pos = MAP_APPFONT ( 12, 44 ) ; 97 Size = MAP_APPFONT ( 121, 12 ) ; 98 TabStop = TRUE ; 99 Text [ en-US ] = "Same orientation" ; 100 }; 101 Text [ en-US ] = "Cross-fading" ; 102}; 103 104// ********************************************************************** EOF 105