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#include <cuires.hrc> 23#include "splitcelldlg.hrc" 24 25ModalDialog RID_SVX_SPLITCELLDLG 26{ 27 HelpID = "cui:ModalDialog:RID_SVX_SPLITCELLDLG" ; 28 OutputSize = TRUE ; 29 SVLook = TRUE ; 30 Size = MAP_APPFONT ( 169, 108 ) ; 31 Text [ en-US ] = "Split Cells" ; 32 Moveable = TRUE ; 33 34 OKButton BT_OK 35 { 36 Pos = MAP_APPFONT ( 115, 6 ) ; 37 Size = MAP_APPFONT ( 50, 14 ) ; 38 TabStop = TRUE ; 39 DefButton = TRUE ; 40 }; 41 CancelButton BT_CANCEL 42 { 43 Pos = MAP_APPFONT ( 115, 23 ) ; 44 Size = MAP_APPFONT ( 50, 14 ) ; 45 TabStop = TRUE ; 46 }; 47 HelpButton BT_HELP 48 { 49 Pos = MAP_APPFONT ( 115, 43 ) ; 50 Size = MAP_APPFONT ( 50, 14 ) ; 51 TabStop = TRUE ; 52 }; 53 FixedText FT_COUNT 54 { 55 Pos = MAP_APPFONT ( 12, 16 ) ; 56 Size = MAP_APPFONT ( 67, 8 ) ; 57 Text [ en-US ] = "~Split cell into" ; 58 Left = TRUE ; 59 }; 60 NumericField ED_COUNT 61 { 62 HelpID = "cui:NumericField:RID_SVX_SPLITCELLDLG:ED_COUNT" ; 63 Border = TRUE ; 64 Pos = MAP_APPFONT ( 82, 14 ) ; 65 Size = MAP_APPFONT ( 21, 12 ) ; 66 TabStop = TRUE ; 67 Left = TRUE ; 68 Right = TRUE ; 69 Repeat = TRUE ; 70 Spin = TRUE ; 71 Minimum = 2 ; 72 Maximum = 20 ; 73 First = 2 ; 74 Last = 5 ; 75 }; 76 FixedLine FL_COUNT 77 { 78 Pos = MAP_APPFONT ( 6, 3 ) ; 79 Size = MAP_APPFONT ( 103, 8 ) ; 80 Text [ en-US ] = "Split" ; 81 }; 82 ImageRadioButton RB_HORZ 83 { 84 HelpID = "cui:ImageRadioButton:RID_SVX_SPLITCELLDLG:RB_HORZ" ; 85 Pos = MAP_APPFONT ( 12, 47 ) ; 86 Size = MAP_APPFONT ( 90, 18 ) ; 87 Group = TRUE ; 88 Text [ en-US ] = "H~orizontally" ; 89 RadioButtonImage = Image 90 { 91 ImageBitmap = Bitmap {File = "zetlhor2.png" ;} ; 92 }; 93 TabStop = TRUE ; 94 Check = TRUE ; 95 }; 96 CheckBox CB_PROP 97 { 98 HelpID = "cui:CheckBox:RID_SVX_SPLITCELLDLG:CB_PROP" ; 99 Pos = MAP_APPFONT ( 18, 68 ) ; 100 Size = MAP_APPFONT ( 91, 12 ) ; 101 Text [ en-US ] = "~Into equal proportions" ; 102 }; 103 Image BMP_SPLIT_VERT 104 { 105 ImageBitmap = Bitmap {File = "zetlver2_h.png" ;} ; 106 }; 107 Image BMP_SPLIT_HORZ 108 { 109 ImageBitmap = Bitmap {File = "zetlhor2_h.png" ;} ; 110 }; 111 ImageRadioButton RB_VERT 112 { 113 HelpID = "cui:ImageRadioButton:RID_SVX_SPLITCELLDLG:RB_VERT" ; 114 Pos = MAP_APPFONT ( 12, 84 ) ; 115 Size = MAP_APPFONT ( 90, 18 ) ; 116 Text [ en-US ] = "~Vertically" ; 117 RadioButtonImage = Image 118 { 119 ImageBitmap = Bitmap {File = "zetlver2.png" ;} ; 120 }; 121 TabStop = TRUE ; 122 }; 123 FixedLine FL_DIR 124 { 125 Pos = MAP_APPFONT ( 6, 36 ) ; 126 Size = MAP_APPFONT ( 103, 8 ) ; 127 Text [ en-US ] = "Direction" ; 128 }; 129}; 130 131// ********************************************************************** EOF 132