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 "TableDesignPane.hrc" 25#include "glob.hrc" 26 27Control DLG_TABLEDESIGNPANE 28{ 29 OutputSize = TRUE; 30 DialogControl = TRUE; 31 Border = FALSE; 32 33 Size = MAP_APPFONT( 264, 160 ); 34 Text [ en-US ] = "Table Design"; 35 36 FixedLine FL_STYLE_OPTIONS+1 37 { 38 Pos = MAP_APPFONT ( 143, 3 ) ; 39 Size = MAP_APPFONT ( 120, 10 ) ; 40 OutputSize = TRUE; 41 Text [ en-US ] = "Show"; 42 }; 43 44 CheckBox CB_HEADER_ROW+1 45 { 46 Pos = MAP_APPFONT ( 146, 16 ) ; 47 Size = MAP_APPFONT ( 120 , 10 ) ; 48 TabStop = TRUE ; 49 Text [ en-US ] = "Header Row" ; 50 }; 51 52 CheckBox CB_TOTAL_ROW+1 53 { 54 Pos = MAP_APPFONT ( 146, 29 ) ; 55 Size = MAP_APPFONT ( 120 , 10 ) ; 56 TabStop = TRUE ; 57 Text [ en-US ] = "Total Row" ; 58 }; 59 60 CheckBox CB_BANDED_ROWS+1 61 { 62 Pos = MAP_APPFONT ( 146, 42 ) ; 63 Size = MAP_APPFONT ( 120 , 10 ) ; 64 TabStop = TRUE ; 65 Text [ en-US ] = "Banded Rows" ; 66 }; 67 68 CheckBox CB_FIRST_COLUMN+1 69 { 70 Pos = MAP_APPFONT ( 146, 55 ) ; 71 Size = MAP_APPFONT ( 120 , 10 ) ; 72 TabStop = TRUE ; 73 Text [ en-US ] = "First Column" ; 74 }; 75 76 CheckBox CB_LAST_COLUMN+1 77 { 78 Pos = MAP_APPFONT ( 146, 68 ) ; 79 Size = MAP_APPFONT ( 120 , 10 ) ; 80 TabStop = TRUE ; 81 Text [ en-US ] = "Last Column" ; 82 }; 83 84 CheckBox CB_BANDED_COLUMNS+1 85 { 86 Pos = MAP_APPFONT ( 146, 82 ) ; 87 Size = MAP_APPFONT ( 120 , 10 ) ; 88 TabStop = TRUE ; 89 Text [ en-US ] = "Banded Columns" ; 90 }; 91 92 FixedLine FL_TABLE_STYLES+1 93 { 94 Pos = MAP_APPFONT ( 6, 3 ) ; 95 Size = MAP_APPFONT( 120, 8 ); 96 OutputSize = TRUE; 97 Text [ en-US ] = "Styles"; 98 }; 99 100 Control CT_TABLE_STYLES+1 101 { 102 Pos = MAP_APPFONT ( 6, 14 ) ; 103 Size = MAP_APPFONT( 120, 143 ); 104 Border = TRUE ; 105 TabStop = TRUE ; 106 }; 107}; 108 109ModalDialog DLG_TABLEDESIGNPANE 110{ 111 HelpID = "sd:ModalDialog:DLG_TABLEDESIGNPANE"; 112 OutputSize = TRUE; 113 SVLook = TRUE ; 114 Moveable = TRUE ; 115 Closeable = TRUE ; 116 Size = MAP_APPFONT( 272, 198 ); 117 118 Text [ en-US ] = "Table Design"; 119 120 FixedLine FL_SEP1 121 { 122 Pos = MAP_APPFONT( 135, 14 ); 123 Size = MAP_APPFONT( 8, 143 ); 124 Vert = TRUE ; 125 }; 126 FixedLine FL_SEP2 127 { 128 Pos = MAP_APPFONT ( 0 , 160 ) ; 129 Size = MAP_APPFONT ( 272 , 12 ) ; 130 }; 131 132 HelpButton BTN_HELP 133 { 134 Pos = MAP_APPFONT ( 6 , 176 ) ; 135 Size = MAP_APPFONT ( 50 , 14 ) ; 136 TabStop = TRUE ; 137 }; 138 OKButton BTN_OK 139 { 140 Pos = MAP_APPFONT ( 158 , 176 ) ; 141 Size = MAP_APPFONT ( 50 , 14 ) ; 142 TabStop = TRUE ; 143 DefButton = TRUE ; 144 }; 145 CancelButton BTN_CANCEL 146 { 147 Pos = MAP_APPFONT ( 211 , 176 ) ; 148 Size = MAP_APPFONT ( 50 , 14 ) ; 149 TabStop = TRUE ; 150 }; 151}; 152