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 "ResourceIds.hrc"
22 : #include "res_BarGeometry.hxx"
23 : #include "ResId.hxx"
24 :
25 : #include "chartview/ChartSfxItemIds.hxx"
26 :
27 : #include <svl/intitem.hxx>
28 : #include <svx/svx3ditems.hxx>
29 :
30 : namespace chart
31 : {
32 :
33 0 : SchLayoutTabPage::SchLayoutTabPage(vcl::Window* pWindow,const SfxItemSet& rInAttrs)
34 : : SfxTabPage(pWindow, "tp_ChartType", "modules/schart/ui/tp_ChartType.ui", &rInAttrs)
35 0 : , m_pGeometryResources(0)
36 : {
37 0 : m_pGeometryResources = new BarGeometryResources( this );
38 0 : }
39 :
40 0 : SchLayoutTabPage::~SchLayoutTabPage()
41 : {
42 0 : disposeOnce();
43 0 : }
44 :
45 0 : void SchLayoutTabPage::dispose()
46 : {
47 0 : delete m_pGeometryResources;
48 0 : m_pGeometryResources = NULL;
49 0 : SfxTabPage::dispose();
50 0 : }
51 :
52 0 : VclPtr<SfxTabPage> SchLayoutTabPage::Create(vcl::Window* pWindow,
53 : const SfxItemSet* rOutAttrs)
54 : {
55 0 : return VclPtr<SchLayoutTabPage>::Create(pWindow, *rOutAttrs);
56 : }
57 :
58 0 : bool SchLayoutTabPage::FillItemSet(SfxItemSet* rOutAttrs)
59 : {
60 :
61 0 : if(m_pGeometryResources && m_pGeometryResources->GetSelectEntryCount())
62 : {
63 0 : long nSegs=32;
64 :
65 0 : long nShape = m_pGeometryResources->GetSelectEntryPos();
66 0 : if(nShape==CHART_SHAPE3D_PYRAMID)
67 0 : nSegs=4;
68 :
69 0 : rOutAttrs->Put(SfxInt32Item(SCHATTR_STYLE_SHAPE,nShape));
70 0 : rOutAttrs->Put(makeSvx3DHorizontalSegmentsItem(nSegs));
71 : }
72 0 : return true;
73 : }
74 :
75 0 : void SchLayoutTabPage::Reset(const SfxItemSet* rInAttrs)
76 : {
77 0 : const SfxPoolItem *pPoolItem = NULL;
78 :
79 0 : if (rInAttrs->GetItemState(SCHATTR_STYLE_SHAPE,true, &pPoolItem) == SfxItemState::SET)
80 : {
81 0 : long nVal = static_cast<const SfxInt32Item*>(pPoolItem)->GetValue();
82 0 : if(m_pGeometryResources)
83 : {
84 0 : m_pGeometryResources->SelectEntryPos(static_cast<sal_uInt16>(nVal));
85 0 : m_pGeometryResources->Show( true );
86 : }
87 : }
88 0 : }
89 :
90 57 : } //namespace chart
91 :
92 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|