Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "tp_PointGeometry.hxx"
21 : #include "TabPages.hrc"
22 : #include "res_BarGeometry.hxx"
23 : #include "ResId.hxx"
24 :
25 : #include "chartview/ChartSfxItemIds.hxx"
26 :
27 : // header for SfxInt32Item
28 : #include <svl/intitem.hxx>
29 : // header for class Svx3DHorizontalSegmentsItem
30 : #include <svx/svx3ditems.hxx>
31 :
32 : namespace chart
33 : {
34 :
35 0 : SchLayoutTabPage::SchLayoutTabPage(Window* pWindow,const SfxItemSet& rInAttrs)
36 : : SfxTabPage(pWindow, SchResId(TP_LAYOUT), rInAttrs)
37 0 : , m_pGeometryResources(0)
38 : {
39 0 : m_pGeometryResources = new BarGeometryResources( this );
40 0 : }
41 :
42 0 : SchLayoutTabPage::~SchLayoutTabPage()
43 : {
44 0 : delete m_pGeometryResources;
45 0 : }
46 :
47 0 : SfxTabPage* SchLayoutTabPage::Create(Window* pWindow,
48 : const SfxItemSet& rOutAttrs)
49 : {
50 0 : return new SchLayoutTabPage(pWindow, rOutAttrs);
51 : }
52 :
53 0 : bool SchLayoutTabPage::FillItemSet(SfxItemSet& rOutAttrs)
54 : {
55 :
56 0 : if(m_pGeometryResources && m_pGeometryResources->GetSelectEntryCount())
57 : {
58 0 : long nSegs=32;
59 :
60 0 : long nShape = m_pGeometryResources->GetSelectEntryPos();
61 0 : if(nShape==CHART_SHAPE3D_PYRAMID)
62 0 : nSegs=4;
63 :
64 0 : rOutAttrs.Put(SfxInt32Item(SCHATTR_STYLE_SHAPE,nShape));
65 0 : rOutAttrs.Put(Svx3DHorizontalSegmentsItem(nSegs));
66 : }
67 0 : return true;
68 : }
69 :
70 0 : void SchLayoutTabPage::Reset(const SfxItemSet& rInAttrs)
71 : {
72 0 : const SfxPoolItem *pPoolItem = NULL;
73 :
74 0 : if (rInAttrs.GetItemState(SCHATTR_STYLE_SHAPE,true, &pPoolItem) == SFX_ITEM_SET)
75 : {
76 0 : long nVal=((const SfxInt32Item*)pPoolItem)->GetValue();
77 0 : if(m_pGeometryResources)
78 : {
79 0 : m_pGeometryResources->SelectEntryPos(static_cast<sal_uInt16>(nVal));
80 0 : m_pGeometryResources->Show( true );
81 : }
82 : }
83 0 : }
84 :
85 0 : } //namespace chart
86 :
87 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|