1*cde9e8dcSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*cde9e8dcSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*cde9e8dcSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*cde9e8dcSAndrew Rist  * distributed with this work for additional information
6*cde9e8dcSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*cde9e8dcSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*cde9e8dcSAndrew Rist  * "License"); you may not use this file except in compliance
9*cde9e8dcSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*cde9e8dcSAndrew Rist  *
11*cde9e8dcSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*cde9e8dcSAndrew Rist  *
13*cde9e8dcSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*cde9e8dcSAndrew Rist  * software distributed under the License is distributed on an
15*cde9e8dcSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*cde9e8dcSAndrew Rist  * KIND, either express or implied.  See the License for the
17*cde9e8dcSAndrew Rist  * specific language governing permissions and limitations
18*cde9e8dcSAndrew Rist  * under the License.
19*cde9e8dcSAndrew Rist  *
20*cde9e8dcSAndrew Rist  *************************************************************/
21*cde9e8dcSAndrew Rist 
22*cde9e8dcSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_chart2.hxx"
26cdf0e10cSrcweir #include "tp_PointGeometry.hxx"
27cdf0e10cSrcweir #include "TabPages.hrc"
28cdf0e10cSrcweir #include "res_BarGeometry.hxx"
29cdf0e10cSrcweir #include "ResId.hxx"
30cdf0e10cSrcweir 
31cdf0e10cSrcweir #include "chartview/ChartSfxItemIds.hxx"
32cdf0e10cSrcweir 
33cdf0e10cSrcweir // header for SfxInt32Item
34cdf0e10cSrcweir #include <svl/intitem.hxx>
35cdf0e10cSrcweir // header for class Svx3DHorizontalSegmentsItem
36cdf0e10cSrcweir #include <svx/svx3ditems.hxx>
37cdf0e10cSrcweir 
38cdf0e10cSrcweir //.............................................................................
39cdf0e10cSrcweir namespace chart
40cdf0e10cSrcweir {
41cdf0e10cSrcweir //.............................................................................
42cdf0e10cSrcweir 
SchLayoutTabPage(Window * pWindow,const SfxItemSet & rInAttrs)43cdf0e10cSrcweir SchLayoutTabPage::SchLayoutTabPage(Window* pWindow,const SfxItemSet& rInAttrs)
44cdf0e10cSrcweir                  : SfxTabPage(pWindow, SchResId(TP_LAYOUT), rInAttrs)
45cdf0e10cSrcweir                  , m_pGeometryResources(0)
46cdf0e10cSrcweir {
47cdf0e10cSrcweir     Size aPageSize( this->GetSizePixel() );
48cdf0e10cSrcweir     Point aPos( this->LogicToPixel( Point(6,6), MapMode(MAP_APPFONT) ) );
49cdf0e10cSrcweir     m_pGeometryResources = new BarGeometryResources( this );
50cdf0e10cSrcweir     m_pGeometryResources->SetPosPixel( aPos );
51cdf0e10cSrcweir }
52cdf0e10cSrcweir 
~SchLayoutTabPage()53cdf0e10cSrcweir SchLayoutTabPage::~SchLayoutTabPage()
54cdf0e10cSrcweir {
55cdf0e10cSrcweir     if( m_pGeometryResources )
56cdf0e10cSrcweir         delete m_pGeometryResources;
57cdf0e10cSrcweir }
58cdf0e10cSrcweir 
Create(Window * pWindow,const SfxItemSet & rOutAttrs)59cdf0e10cSrcweir SfxTabPage* SchLayoutTabPage::Create(Window* pWindow,
60cdf0e10cSrcweir 										const SfxItemSet& rOutAttrs)
61cdf0e10cSrcweir {
62cdf0e10cSrcweir 	return new SchLayoutTabPage(pWindow, rOutAttrs);
63cdf0e10cSrcweir }
64cdf0e10cSrcweir 
FillItemSet(SfxItemSet & rOutAttrs)65cdf0e10cSrcweir sal_Bool SchLayoutTabPage::FillItemSet(SfxItemSet& rOutAttrs)
66cdf0e10cSrcweir {
67cdf0e10cSrcweir 
68cdf0e10cSrcweir 	if(m_pGeometryResources && m_pGeometryResources->GetSelectEntryCount())
69cdf0e10cSrcweir 	{
70cdf0e10cSrcweir 		long nShape=CHART_SHAPE3D_SQUARE;
71cdf0e10cSrcweir 		long nSegs=32;
72cdf0e10cSrcweir 
73cdf0e10cSrcweir 		nShape = m_pGeometryResources->GetSelectEntryPos();
74cdf0e10cSrcweir 		if(nShape==CHART_SHAPE3D_PYRAMID)
75cdf0e10cSrcweir 			nSegs=4;
76cdf0e10cSrcweir 
77cdf0e10cSrcweir 		rOutAttrs.Put(SfxInt32Item(SCHATTR_STYLE_SHAPE,nShape));
78cdf0e10cSrcweir 		rOutAttrs.Put(Svx3DHorizontalSegmentsItem(nSegs));
79cdf0e10cSrcweir 	}
80cdf0e10cSrcweir 	return sal_True;
81cdf0e10cSrcweir }
82cdf0e10cSrcweir 
Reset(const SfxItemSet & rInAttrs)83cdf0e10cSrcweir void SchLayoutTabPage::Reset(const SfxItemSet& rInAttrs)
84cdf0e10cSrcweir {
85cdf0e10cSrcweir 	const SfxPoolItem *pPoolItem = NULL;
86cdf0e10cSrcweir 
87cdf0e10cSrcweir 	if (rInAttrs.GetItemState(SCHATTR_STYLE_SHAPE,sal_True, &pPoolItem) == SFX_ITEM_SET)
88cdf0e10cSrcweir 	{
89cdf0e10cSrcweir 		long nVal=((const SfxInt32Item*)pPoolItem)->GetValue();
90cdf0e10cSrcweir         if(m_pGeometryResources)
91cdf0e10cSrcweir         {
92cdf0e10cSrcweir 		    m_pGeometryResources->SelectEntryPos(static_cast<sal_uInt16>(nVal));
93cdf0e10cSrcweir             m_pGeometryResources->Show( true );
94cdf0e10cSrcweir         }
95cdf0e10cSrcweir 	}
96cdf0e10cSrcweir }
97cdf0e10cSrcweir 
98cdf0e10cSrcweir //.............................................................................
99cdf0e10cSrcweir } //namespace chart
100cdf0e10cSrcweir //.............................................................................
101