xref: /trunk/main/cui/source/tabpages/bbdlg.src (revision a5f48dc2)
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 ---------------------------------------------------------------
25#include <cuires.hrc>
26#include <svx/dialogs.hrc>
27
28// RID_SVXDLG_BBDLG_BACKGROUND and RID_SVXDLG_BBDLG_AREA_TRANS ------------
29
30TabDialog RID_SVXDLG_BBDLG_BACKGROUND
31{
32	OutputSize = TRUE ;
33	SVLook = TRUE ;
34	Size = MAP_APPFONT ( 328, 155 ) ;
35	Text [ en-US ] = "Border / Background" ;
36	Moveable = TRUE ;
37
38	TabControl 1
39	{
40		OutputSize = TRUE ;
41		Pos = MAP_APPFONT ( 2, 10 ) ;
42		Size = MAP_APPFONT ( 260, 135 ) ;
43		PageList =
44		{
45			PageItem
46			{
47				Identifier = RID_SVXPAGE_BORDER ;
48				Text [ en-US ] = "Borders" ;
49			};
50			PageItem
51			{
52				Identifier = RID_SVXPAGE_BACKGROUND ;
53				Text [ en-US ] = "Background" ;
54			};
55		};
56	};
57};
58
59TabDialog RID_SVXDLG_BBDLG_AREA_TRANS
60{
61	OutputSize = TRUE ;
62	SVLook = TRUE ;
63	Size = MAP_APPFONT ( 328, 155 ) ;
64	Text [ en-US ] = "Border / Background" ;
65	Moveable = TRUE ;
66
67	TabControl 1
68	{
69		OutputSize = TRUE ;
70		Pos = MAP_APPFONT ( 2, 10 ) ;
71		Size = MAP_APPFONT ( 260, 135 ) ;
72		PageList =
73		{
74			PageItem
75			{
76				Identifier = RID_SVXPAGE_BORDER ;
77				Text [ en-US ] = "Borders" ;
78			};
79
80			// UUUU new Area and Transparence TabPages
81			PageItem
82			{
83				Identifier = RID_SVXPAGE_AREA ;
84				PageResID = RID_SVXPAGE_AREA ;
85				Text [ en-US ] = "Area" ;
86			};
87			PageItem
88			{
89				Identifier = RID_SVXPAGE_TRANSPARENCE ;
90				PageResID = RID_SVXPAGE_TRANSPARENCE ;
91				Text [ en-US ] = "Transparency" ;
92			};
93		};
94	};
95};
96
97// ********************************************************************** EOF
98