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 // include --------------------------------------------------------------- 24#include <cuires.hrc> 25#include <svx/dialogs.hrc> 26 27// RID_SVXDLG_BBDLG_BACKGROUND and RID_SVXDLG_BBDLG_AREA_TRANS ------------ 28 29TabDialog RID_SVXDLG_BBDLG_BACKGROUND 30{ 31 OutputSize = TRUE ; 32 SVLook = TRUE ; 33 Size = MAP_APPFONT ( 328 , 155 ) ; 34 Text [ en-US ] = "Border / Background" ; 35 Moveable = TRUE ; 36 37 TabControl 1 38 { 39 OutputSize = TRUE ; 40 Pos = MAP_APPFONT ( 2 , 10 ) ; 41 Size = MAP_APPFONT ( 260 , 135 ) ; 42 PageList = 43 { 44 PageItem 45 { 46 Identifier = RID_SVXPAGE_BORDER ; 47 Text [ en-US ] = "Borders" ; 48 }; 49 PageItem 50 { 51 Identifier = RID_SVXPAGE_BACKGROUND ; 52 Text [ en-US ] = "Background" ; 53 }; 54 }; 55 }; 56}; 57 58TabDialog RID_SVXDLG_BBDLG_AREA_TRANS 59{ 60 OutputSize = TRUE ; 61 SVLook = TRUE ; 62 Size = MAP_APPFONT ( 328 , 155 ) ; 63 Text [ en-US ] = "Border / Background" ; 64 Moveable = TRUE ; 65 66 TabControl 1 67 { 68 OutputSize = TRUE ; 69 Pos = MAP_APPFONT ( 2 , 10 ) ; 70 Size = MAP_APPFONT ( 260 , 135 ) ; 71 PageList = 72 { 73 PageItem 74 { 75 Identifier = RID_SVXPAGE_BORDER ; 76 Text [ en-US ] = "Borders" ; 77 }; 78 79 //UUUU new Area and Transparence TabPages 80 PageItem 81 { 82 Identifier = RID_SVXPAGE_AREA; 83 PageResID = RID_SVXPAGE_AREA; 84 Text [ en-US ] = "Area" ; 85 }; 86 PageItem 87 { 88 Identifier = RID_SVXPAGE_TRANSPARENCE; 89 PageResID = RID_SVXPAGE_TRANSPARENCE; 90 Text [ en-US ] = "Transparency" ; 91 }; 92 }; 93 }; 94}; 95 96 // ********************************************************************** EOF 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122