/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: dlgsnap.src,v $ * * $Revision: 1.30 $ * * last change: $Author: ihi $ $Date: 2007-04-19 12:25:40 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2005 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 * ************************************************************************/ #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 [ 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 [ en-US ] = "~Delete" ; TabStop = TRUE ; }; FixedLine FL_POSITION { Pos = MAP_APPFONT ( 6 , 3 ) ; Size = MAP_APPFONT ( 76 , 8 ) ; Text [ en-US ] = "Position" ; }; 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 [ en-US ] = "Type" ; }; ImageRadioButton RB_POINT { Pos = MAP_APPFONT ( 12 , 61 ) ; Size = MAP_APPFONT ( 64 , 16 ) ; Text [ en-US ] = "~Point" ; TabStop = TRUE ; RadioButtonImage = Image { MaskColor = IMAGE_MASK_STDCOLOR; ImageBitmap = Bitmap { File = "hlppoint.bmp" ; }; }; }; ImageRadioButton RB_VERTICAL { Pos = MAP_APPFONT ( 12 , 81 ) ; Size = MAP_APPFONT ( 64 , 16 ) ; Text [ en-US ] = "~Vertical" ; TabStop = TRUE ; RadioButtonImage = Image { MaskColor = IMAGE_MASK_STDCOLOR; ImageBitmap = Bitmap { File = "hlplvert.bmp" ; }; }; }; ImageRadioButton RB_HORIZONTAL { Pos = MAP_APPFONT ( 12 , 101 ) ; Size = MAP_APPFONT ( 65 , 16 ) ; Text [ en-US ] = "Hori~zontal" ; TabStop = TRUE ; RadioButtonImage = Image { MaskColor = IMAGE_MASK_STDCOLOR; ImageBitmap = Bitmap { File = "hlplhorz.bmp" ; }; }; }; 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" ; }; }; };