xref: /trunk/main/cui/source/tabpages/bbdlg.src (revision 56b35d86153c02ff07ff2435fcc383d035fd8df0)
10e2af6afSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
30e2af6afSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
40e2af6afSAndrew Rist * or more contributor license agreements.  See the NOTICE file
50e2af6afSAndrew Rist * distributed with this work for additional information
60e2af6afSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
70e2af6afSAndrew Rist * to you under the Apache License, Version 2.0 (the
80e2af6afSAndrew Rist * "License"); you may not use this file except in compliance
90e2af6afSAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
110e2af6afSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
130e2af6afSAndrew Rist * Unless required by applicable law or agreed to in writing,
140e2af6afSAndrew Rist * software distributed under the License is distributed on an
150e2af6afSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
160e2af6afSAndrew Rist * KIND, either express or implied.  See the License for the
170e2af6afSAndrew Rist * specific language governing permissions and limitations
180e2af6afSAndrew Rist * under the License.
19cdf0e10cSrcweir *
200e2af6afSAndrew Rist *************************************************************/
210e2af6afSAndrew Rist
220e2af6afSAndrew Rist
23cdf0e10cSrcweir // include ---------------------------------------------------------------
24cdf0e10cSrcweir#include <cuires.hrc>
25cdf0e10cSrcweir#include <svx/dialogs.hrc>
26cdf0e10cSrcweir
27*56b35d86SArmin Le Grand// RID_SVXDLG_BBDLG_BACKGROUND and RID_SVXDLG_BBDLG_AREA_TRANS ------------
28*56b35d86SArmin Le Grand
29*56b35d86SArmin Le GrandTabDialog RID_SVXDLG_BBDLG_BACKGROUND
30cdf0e10cSrcweir{
31cdf0e10cSrcweir    OutputSize = TRUE ;
32cdf0e10cSrcweir    SVLook = TRUE ;
33cdf0e10cSrcweir    Size = MAP_APPFONT ( 328 , 155 ) ;
34cdf0e10cSrcweir    Text [ en-US ] = "Border / Background" ;
35cdf0e10cSrcweir    Moveable = TRUE ;
36*56b35d86SArmin Le Grand
37cdf0e10cSrcweir    TabControl 1
38cdf0e10cSrcweir    {
39cdf0e10cSrcweir        OutputSize = TRUE ;
40cdf0e10cSrcweir        Pos = MAP_APPFONT ( 2 , 10 ) ;
41cdf0e10cSrcweir        Size = MAP_APPFONT ( 260 , 135 ) ;
42cdf0e10cSrcweir        PageList =
43cdf0e10cSrcweir        {
44cdf0e10cSrcweir            PageItem
45cdf0e10cSrcweir            {
46cdf0e10cSrcweir                Identifier = RID_SVXPAGE_BORDER ;
47cdf0e10cSrcweir                Text [ en-US ] = "Borders" ;
48cdf0e10cSrcweir            };
49cdf0e10cSrcweir            PageItem
50cdf0e10cSrcweir            {
51cdf0e10cSrcweir                Identifier = RID_SVXPAGE_BACKGROUND ;
52cdf0e10cSrcweir                Text [ en-US ] = "Background" ;
53cdf0e10cSrcweir            };
54cdf0e10cSrcweir        };
55cdf0e10cSrcweir    };
56cdf0e10cSrcweir};
57*56b35d86SArmin Le Grand
58*56b35d86SArmin Le GrandTabDialog RID_SVXDLG_BBDLG_AREA_TRANS
59*56b35d86SArmin Le Grand{
60*56b35d86SArmin Le Grand    OutputSize = TRUE ;
61*56b35d86SArmin Le Grand    SVLook = TRUE ;
62*56b35d86SArmin Le Grand    Size = MAP_APPFONT ( 328 , 155 ) ;
63*56b35d86SArmin Le Grand    Text [ en-US ] = "Border / Background" ;
64*56b35d86SArmin Le Grand    Moveable = TRUE ;
65*56b35d86SArmin Le Grand
66*56b35d86SArmin Le Grand    TabControl 1
67*56b35d86SArmin Le Grand    {
68*56b35d86SArmin Le Grand        OutputSize = TRUE ;
69*56b35d86SArmin Le Grand        Pos = MAP_APPFONT ( 2 , 10 ) ;
70*56b35d86SArmin Le Grand        Size = MAP_APPFONT ( 260 , 135 ) ;
71*56b35d86SArmin Le Grand        PageList =
72*56b35d86SArmin Le Grand        {
73*56b35d86SArmin Le Grand            PageItem
74*56b35d86SArmin Le Grand            {
75*56b35d86SArmin Le Grand                Identifier = RID_SVXPAGE_BORDER ;
76*56b35d86SArmin Le Grand                Text [ en-US ] = "Borders" ;
77*56b35d86SArmin Le Grand            };
78*56b35d86SArmin Le Grand
79*56b35d86SArmin Le Grand            //UUUU new Area and Transparence TabPages
80*56b35d86SArmin Le Grand            PageItem
81*56b35d86SArmin Le Grand            {
82*56b35d86SArmin Le Grand                Identifier = RID_SVXPAGE_AREA;
83*56b35d86SArmin Le Grand                PageResID = RID_SVXPAGE_AREA;
84*56b35d86SArmin Le Grand                Text [ en-US ] = "Area" ;
85*56b35d86SArmin Le Grand            };
86*56b35d86SArmin Le Grand            PageItem
87*56b35d86SArmin Le Grand            {
88*56b35d86SArmin Le Grand                Identifier = RID_SVXPAGE_TRANSPARENCE;
89*56b35d86SArmin Le Grand                PageResID = RID_SVXPAGE_TRANSPARENCE;
90*56b35d86SArmin Le Grand                Text [ en-US ] = "Transparency" ;
91*56b35d86SArmin Le Grand            };
92*56b35d86SArmin Le Grand        };
93*56b35d86SArmin Le Grand    };
94*56b35d86SArmin Le Grand};
95*56b35d86SArmin Le Grand
96cdf0e10cSrcweir // ********************************************************************** EOF
97cdf0e10cSrcweir
98cdf0e10cSrcweir
99cdf0e10cSrcweir
100cdf0e10cSrcweir
101cdf0e10cSrcweir
102cdf0e10cSrcweir
103cdf0e10cSrcweir
104cdf0e10cSrcweir
105cdf0e10cSrcweir
106cdf0e10cSrcweir
107cdf0e10cSrcweir
108cdf0e10cSrcweir
109cdf0e10cSrcweir
110cdf0e10cSrcweir
111cdf0e10cSrcweir
112cdf0e10cSrcweir
113cdf0e10cSrcweir
114cdf0e10cSrcweir
115cdf0e10cSrcweir
116cdf0e10cSrcweir
117cdf0e10cSrcweir
118cdf0e10cSrcweir
119cdf0e10cSrcweir
120cdf0e10cSrcweir
121cdf0e10cSrcweir
122