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 28#include "app.hrc" 29#include "morphdlg.hrc" 30#include "helpids.h" 31 32/****************************************************************************** 33|* 34|* 35|* 36\******************************************************************************/ 37ModalDialog DLG_MORPH 38{ 39 HelpID = CMD_SID_POLYGON_MORPHING ; 40 HelpID = ".uno:Morphing" ; 41 OutputSize = TRUE ; 42 SVLook = TRUE ; 43 Size = MAP_APPFONT ( 196 , 68 ) ; 44 /* ### ACHTUNG: Neuer Text in Resource? �berblenden : �berblenden */ 45 Moveable = TRUE ; 46 Closeable = TRUE ; 47 OKButton BTN_OK 48 { 49 Pos = MAP_APPFONT ( 141 , 6 ) ; 50 Size = MAP_APPFONT ( 50 , 14 ) ; 51 TabStop = TRUE ; 52 DefButton = TRUE ; 53 }; 54 CancelButton BTN_CANCEL 55 { 56 Pos = MAP_APPFONT ( 141 , 23 ) ; 57 Size = MAP_APPFONT ( 50 , 14 ) ; 58 TabStop = TRUE ; 59 }; 60 HelpButton BTN_HELP 61 { 62 Pos = MAP_APPFONT ( 140 , 43 ) ; 63 Size = MAP_APPFONT ( 50 , 14 ) ; 64 TabStop = TRUE ; 65 }; 66 FixedLine GRP_PRESET 67 { 68 Pos = MAP_APPFONT ( 6 , 3 ) ; 69 Size = MAP_APPFONT ( 129 , 8 ) ; 70 Text [ en-US ] = "Settings" ; 71 }; 72 FixedText FT_STEPS 73 { 74 Pos = MAP_APPFONT ( 12 , 16 ) ; 75 Size = MAP_APPFONT ( 40 , 10 ) ; 76 Text [ en-US ] = "Increments" ; 77 }; 78 MetricField MTF_STEPS 79 { 80 HelpID = "sd:MetricField:DLG_MORPH:MTF_STEPS"; 81 Border = TRUE ; 82 Pos = MAP_APPFONT ( 56 , 14 ) ; 83 Size = MAP_APPFONT ( 30 , 12 ) ; 84 TabStop = TRUE ; 85 Spin = TRUE ; 86 Repeat = TRUE ; 87 Minimum = 1 ; 88 Maximum = 256 ; 89 First = 1 ; 90 Last = 256 ; 91 }; 92 CheckBox CBX_ATTRIBUTES 93 { 94 HelpID = "sd:CheckBox:DLG_MORPH:CBX_ATTRIBUTES"; 95 Pos = MAP_APPFONT ( 12 , 29 ) ; 96 Size = MAP_APPFONT ( 121 , 12 ) ; 97 /* ### ACHTUNG: Neuer Text in Resource? Attributierung �berblenden : Attributierung �berblenden */ 98 TabStop = TRUE ; 99 Text [ en-US ] = "Cross-fade attributes" ; 100 }; 101 CheckBox CBX_ORIENTATION 102 { 103 HelpID = "sd:CheckBox:DLG_MORPH:CBX_ORIENTATION"; 104 Pos = MAP_APPFONT ( 12 , 44 ) ; 105 Size = MAP_APPFONT ( 121 , 12 ) ; 106 TabStop = TRUE ; 107 Text [ en-US ] = "Same orientation" ; 108 }; 109 Text [ en-US ] = "Cross-fading" ; 110}; 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144