xref: /aoo4110/main/svx/inc/lightdlg.hxx (revision b1cdbd2c)
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 
25 #ifndef _SVX_LIGHT3D_HXX_
26 #define _SVX_LIGHT3D_HXX_
27 
28 #include <svx/dlgctl3d.hxx>
29 #include <vcl/fixed.hxx>
30 #include <vcl/group.hxx>
31 #include <sfx2/tabdlg.hxx>
32 #include <sfx2/basedlgs.hxx>
33 
34 #ifndef _FIELD_HXX //autogen
35 #include <vcl/field.hxx>
36 #endif
37 #include <svx/dlgctrl.hxx>
38 
39 /*************************************************************************
40 |*
41 |* 3D-Tab-Dialog
42 |*
43 \************************************************************************/
44 
45 class Svx3DTabDialog : public SfxTabDialog
46 {
47 private:
48 	const SfxItemSet&	rOutAttrs;
49 
50 public:
51 			Svx3DTabDialog( Window* pParent, const SfxItemSet* pAttr );
52 			~Svx3DTabDialog();
53 };
54 
55 /*************************************************************************
56 |*
57 |* 3D-SingleTab-Dialog
58 |*
59 \************************************************************************/
60 class Svx3DSingleTabDialog : public SfxSingleTabDialog
61 {
62 private:
63 	const SfxItemSet&	rOutAttrs;
64 
65 public:
66 		Svx3DSingleTabDialog( Window* pParent, const SfxItemSet* pAttr );
67 		~Svx3DSingleTabDialog();
68 };
69 
70 #endif // _SVX_LIGHT3D_HXX_
71 
72