xref: /aoo4110/main/cui/source/tabpages/bbdlg.cxx (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 // MARKER(update_precomp.py): autogen include statement, do not remove
25 #include "precompiled_cui.hxx"
26 
27 // include ---------------------------------------------------------------
28 #include <tools/shl.hxx>
29 #include <svx/dialogs.hrc>
30 #include <cuires.hrc>
31 #include "page.hrc"
32 
33 #include "bbdlg.hxx"
34 #include "border.hxx"
35 #include "backgrnd.hxx"
36 #include <dialmgr.hxx>
37 
38 // class SvxBorderBackgroundDlg ------------------------------------------
39 
SvxBorderBackgroundDlg(Window * pParent,const SfxItemSet & rCoreSet,sal_Bool bEnableSelector)40 SvxBorderBackgroundDlg::SvxBorderBackgroundDlg( Window *pParent,
41 												const SfxItemSet& rCoreSet,
42 												sal_Bool bEnableSelector ) :
43 
44 	SfxTabDialog( pParent, CUI_RES( RID_SVXDLG_BBDLG ), &rCoreSet ),
45 	bEnableBackgroundSelector( bEnableSelector )
46 {
47 	FreeResource();
48 	AddTabPage( RID_SVXPAGE_BORDER, SvxBorderTabPage::Create, 0 );
49 	AddTabPage( RID_SVXPAGE_BACKGROUND, SvxBackgroundTabPage::Create, 0 );
50 }
51 
52 // -----------------------------------------------------------------------
53 
~SvxBorderBackgroundDlg()54 SvxBorderBackgroundDlg::~SvxBorderBackgroundDlg()
55 {
56 }
57 
58 // -----------------------------------------------------------------------
59 
PageCreated(sal_uInt16 nPageId,SfxTabPage & rTabPage)60 void SvxBorderBackgroundDlg::PageCreated( sal_uInt16 nPageId, SfxTabPage& rTabPage )
61 {
62 	// Umschalten zwischen Farbe/Grafik ermoeglichen:
63 
64 	if ( bEnableBackgroundSelector && (RID_SVXPAGE_BACKGROUND == nPageId) )
65 		((SvxBackgroundTabPage&)rTabPage).ShowSelector( );
66 }
67 
68 
69