/************************************************************************* * * $RCSfile: dlgsnap.src,v $ * * $Revision: 1.27 $ * * last change: $Author: hjs $ $Date: 2004-06-26 17:59:41 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses * * - GNU Lesser General Public License Version 2.1 * - Sun Industry Standards Source License Version 1.1 * * Sun Microsystems Inc., October, 2000 * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2000 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * * Sun Industry Standards Source License Version 1.1 * ================================================= * The contents of this file are subject to the Sun Industry Standards * Source License Version 1.1 (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.openoffice.org/license.html. * * Software provided under this License is provided on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. * See the License for the specific provisions governing your rights and * obligations concerning the Software. * * The Initial Developer of the Original Code is: Sun Microsystems, Inc. * * Copyright: 2000 by Sun Microsystems, Inc. * * All Rights Reserved. * * Contributor(s): _______________________________________ * * ************************************************************************/ #include "app.hrc" #include "res_bmp.hrc" #include "dlgsnap.hrc" ModalDialog DLG_SNAPLINE { HelpID = SID_CAPTUREPOINT ; OutputSize = TRUE ; SVLook = TRUE ; Size = MAP_APPFONT ( 140 , 125 ) ; Text [ de ] = "Neues Fangobjekt" ; Text [ en-US ] = "New Snap Object" ; Moveable = TRUE ; OKButton BTN_OK { Pos = MAP_APPFONT ( 88 , 6 ) ; Size = MAP_APPFONT ( 46 , 14 ) ; TabStop = TRUE ; DefButton = TRUE ; }; CancelButton BTN_CANCEL { Pos = MAP_APPFONT ( 88 , 23 ) ; Size = MAP_APPFONT ( 46 , 14 ) ; TabStop = TRUE ; }; HelpButton BTN_HELP { Pos = MAP_APPFONT ( 88 , 43 ) ; Size = MAP_APPFONT ( 46 , 14 ) ; TabStop = TRUE ; }; PushButton BTN_DELETE { Pos = MAP_APPFONT ( 88 , 63 ) ; Size = MAP_APPFONT ( 46 , 14 ) ; /* ### ACHTUNG: Neuer Text in Resource? ~Löschen : ~L÷schen */ Text [ de ] = "~Löschen" ; Text [ en-US ] = "~Delete" ; TabStop = TRUE ; Text [ x-comment ] = " "; }; FixedLine FL_POSITION { Pos = MAP_APPFONT ( 6 , 3 ) ; Size = MAP_APPFONT ( 76 , 8 ) ; Text [ de ] = "Position" ; Text [ en-US ] = "Position" ; Text [ x-comment ] = " "; }; FixedText FT_X { Pos = MAP_APPFONT ( 12 , 16 ) ; Size = MAP_APPFONT ( 7 , 10 ) ; Text = "~X" ; }; MetricField MTR_FLD_X { Border = TRUE ; Pos = MAP_APPFONT ( 22 , 14 ) ; Size = MAP_APPFONT ( 54 , 12 ) ; TabStop = TRUE ; Repeat = TRUE ; Spin = TRUE ; Minimum = -5000000 ; Maximum = 5000000 ; StrictFormat = TRUE ; DecimalDigits = 2 ; Unit = FUNIT_MM ; First = -5000000 ; Last = 5000000 ; SpinSize = 50 ; }; FixedText FT_Y { Pos = MAP_APPFONT ( 12 , 32 ) ; Size = MAP_APPFONT ( 7 , 10 ) ; Text = "~Y" ; }; MetricField MTR_FLD_Y { Border = TRUE ; Pos = MAP_APPFONT ( 22 , 30 ) ; Size = MAP_APPFONT ( 54 , 12 ) ; TabStop = TRUE ; Repeat = TRUE ; Spin = TRUE ; Minimum = -5000000 ; Maximum = 5000000 ; StrictFormat = TRUE ; DecimalDigits = 2 ; Unit = FUNIT_MM ; First = -5000000 ; Last = 5000000 ; SpinSize = 50 ; }; FixedLine FL_DIRECTION { Pos = MAP_APPFONT ( 6 , 50 ) ; Size = MAP_APPFONT ( 76 , 8 ) ; Text [ de ] = "Art" ; Text [ en-US ] = "Type" ; Text [ x-comment ] = " "; }; ImageRadioButton RB_POINT { Pos = MAP_APPFONT ( 12 , 61 ) ; Size = MAP_APPFONT ( 64 , 16 ) ; Text [ de ] = "~Punkt" ; Text [ en-US ] = "~Point" ; TabStop = TRUE ; RadioButtonImage = Image { MaskColor = IMAGE_MASK_STDCOLOR; ImageBitmap = Bitmap { File = "hlppoint.bmp" ; }; }; Text [ x-comment ] = " "; }; ImageRadioButton RB_VERTICAL { Pos = MAP_APPFONT ( 12 , 81 ) ; Size = MAP_APPFONT ( 64 , 16 ) ; Text [ de ] = "~Vertikal" ; Text [ en-US ] = "~Vertical" ; TabStop = TRUE ; RadioButtonImage = Image { MaskColor = IMAGE_MASK_STDCOLOR; ImageBitmap = Bitmap { File = "hlplvert.bmp" ; }; }; Text [ x-comment ] = " "; }; ImageRadioButton RB_HORIZONTAL { Pos = MAP_APPFONT ( 12 , 101 ) ; Size = MAP_APPFONT ( 65 , 16 ) ; Text [ de ] = "~Horizontal" ; Text [ en-US ] = "Hori~zontal" ; TabStop = TRUE ; RadioButtonImage = Image { MaskColor = IMAGE_MASK_STDCOLOR; ImageBitmap = Bitmap { File = "hlplhorz.bmp" ; }; }; Text [ x-comment ] = " "; }; Text [ x-comment ] = " "; Image BMP_POINT_H { MaskColor = IMAGE_MASK_STDCOLOR_HC; ImageBitmap = Bitmap { File = "hlppoint_h.bmp" ; }; }; Image BMP_VERTICAL_H { MaskColor = IMAGE_MASK_STDCOLOR_HC; ImageBitmap = Bitmap { File = "hlplvert_h.bmp" ; }; }; Image BMP_HORIZONTAL_H { MaskColor = IMAGE_MASK_STDCOLOR_HC; ImageBitmap = Bitmap { File = "hlplhorz_h.bmp" ; }; }; };