Update ooo320-m1
[ooovba.git] / chart2 / source / controller / dialogs / tp_3D_SceneAppearance.src
blob77c6263dc437bacaee25e692120c3e1fe4407d36
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: tp_3D_SceneAppearance.src,v $
10  * $Revision: 1.3 $
11  *
12  * This file is part of OpenOffice.org.
13  *
14  * OpenOffice.org is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU Lesser General Public License version 3
16  * only, as published by the Free Software Foundation.
17  *
18  * OpenOffice.org is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU Lesser General Public License version 3 for more details
22  * (a copy is included in the LICENSE file that accompanied this code).
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * version 3 along with OpenOffice.org.  If not, see
26  * <http://www.openoffice.org/license.html>
27  * for a copy of the LGPLv3 License.
28  *
29  ************************************************************************/
31 #include "tp_3D_SceneAppearance.hrc"
32 #include "dlg_View3D.hrc"
33 #include "SchSlotIds.hxx"
35 #define WIDTH_FL 108
36 #define WIDTH_LB 57
37 #define WIDTH_FT 41
39 #define HEIGHT_FL 8
40 #define HEIGHT_LB 12
41 #define HEIGHT_FT 10
43 #define POS_X_0 6
44 #define POS_X_1 6 
45 #define POS_X_2 POS_X_1+WIDTH_FT+4
47 #define POS_Y_SCHEME 8
48 #define POS_Y_SEPERATOR (POS_Y_SCHEME+13)
50 #define POS_Y_SHADING       (POS_Y_SEPERATOR+16)
51 #define POS_Y_OBJECTLINES   (POS_Y_SHADING+16)
52 #define POS_Y_ROUNDEDEDGE   (POS_Y_OBJECTLINES+16)
55 TabPage TP_3D_SCENEAPPEARANCE
57     OutputSize = TRUE ;
58     SVLook = TRUE ;
59     Hide = TRUE ;
60     Size = MAP_APPFONT ( VIEW3D_PAGE_WIDTH , VIEW3D_PAGE_HEIGHT ) ;
62     FixedText FT_SCHEME
63     {
64         Pos = MAP_APPFONT ( POS_X_1 , POS_Y_SCHEME  ) ;
65         Size = MAP_APPFONT ( WIDTH_FT , HEIGHT_FT ) ;
66         Text [ en-US ] = "Sche~me" ;
67     };
68     ListBox LB_SCHEME
69     {
70         Border = TRUE;
71         TabStop = TRUE;
72         DropDown = TRUE;
73         Pos = MAP_APPFONT ( POS_X_2 , POS_Y_SCHEME-2  ) ;
74         Size = MAP_APPFONT ( WIDTH_LB , HEIGHT_LB ) ;
75     };
76     FixedLine FL_SEPERATOR
77     {
78         Pos = MAP_APPFONT ( POS_X_0 , POS_Y_SEPERATOR  ) ;
79         Size = MAP_APPFONT ( WIDTH_FL , HEIGHT_FL ) ;
80     };    
81     
82     CheckBox CB_SHADING
83     {
84         Pos = MAP_APPFONT ( POS_X_1 , POS_Y_SHADING ) ;
85         Size = MAP_APPFONT ( WIDTH_FL , HEIGHT_LB ) ;
86         Text [ en-US ] = "~Shading" ;
87     };
88     CheckBox CB_OBJECTLINES
89     {
90         Pos = MAP_APPFONT ( POS_X_1 , POS_Y_OBJECTLINES ) ;
91         Size = MAP_APPFONT ( WIDTH_FL , HEIGHT_LB ) ;
92         Text [ en-US ] = "~Object borders" ;
93     };
94     Checkbox CB_ROUNDEDEDGE
95     {
96         Pos = MAP_APPFONT ( POS_X_1 , POS_Y_ROUNDEDEDGE  ) ;
97         Size = MAP_APPFONT ( WIDTH_FL , HEIGHT_LB ) ;
98         Text [ en-US ] = "~Rounded edges" ;
99     };