summaryrefslogtreecommitdiffstats
path: root/binfilter/bf_sch/source/core/sch_chdescr.cxx
blob: 07c0c2d4c0a62e0bd2cf001bc4fb2a08ed8d90d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */
#include <bf_svtools/eitem.hxx>

#include "chdescr.hxx"

#include "float.h"
#include "schgroup.hxx"
#include "chtscene.hxx"
namespace binfilter {

/*N*/ ChartDataDescription::ChartDataDescription(long nCols, long nRows, SdrObjList *pList,
/*N*/                                          ChartModel* pModel, BOOL bEnable) :
/*N*/       mnRows(nRows),
/*N*/       mnCols(nCols),
/*N*/       mpModel(pModel),
/*N*/       mpDescrLists(NULL),
/*N*/       mpList(pList),
/*N*/       mpDescrArray(NULL),
/*N*/       mbEnable(bEnable),
/*N*/       mpDescrGroups(NULL)
/*N*/ {
/*N*/ }

/*N*/ void ChartDataDescription::Build( BOOL bRowDescr )
/*N*/ {
/*N*/   Dirty2D( bRowDescr );
/*N*/   if(mpList && mpDescrGroups)
/*N*/   {
/*?*/       for( long nRow=0; nRow<mnRows; nRow++ )
/*?*/       {
/*?*/           if(mpDescrGroups[nRow])
/*?*/               mpList->NbcInsertObject( mpDescrGroups[nRow] );
/*?*/       }
/*?*/   }
/*N*/ }

/*N*/ void ChartDataDescription::Build3D( ChartScene *pScene, Matrix4D* pMatrix )
/*N*/ {
/*N*/   if(pScene && mpDescrGroups)
/*N*/   {
/*?*/       for( long nRow=0; nRow<mnRows; nRow++ )
/*?*/       {
/*?*/           for( long nCol=0; nCol<mnCols; nCol++ )
/*?*/           {
/*?*/               long nIndex = nCol + nRow * mnCols;
/*?*/               if( mpDescrArray[nIndex].fValue != DBL_MIN )
/*?*/               {
/*?*/                   mpDescrArray[nIndex].pLabelObj->SetMarkProtect(TRUE);
/*?*/                   E3dLabelObj* pLabel=new E3dLabelObj(mpDescrArray[nIndex].aTextPos3D,
/*?*/                                                       mpDescrArray[nIndex].pLabelObj);
/*?*/
/*?*/                   CHART_TRACE3( "Descr::Build3D TextPos = (%ld, %ld, %ld)",
/*?*/                                 mpDescrArray[ nIndex ].aTextPos3D.X(),
/*?*/                                 mpDescrArray[ nIndex ].aTextPos3D.Y(),
/*?*/                                 mpDescrArray[ nIndex ].aTextPos3D.Z() );
/*?*/
/*?*/                   pLabel->SetMarkProtect(TRUE);
/*?*/                   pScene->Insert3DObj(pLabel);
/*?*/                   if(pMatrix)
/*?*/                       pLabel->NbcSetTransform(*pMatrix);
/*?*/               }
/*?*/           }
/*?*/       }
/*?*/   }
/*N*/ }

/*N*/ ChartDataDescription::~ChartDataDescription()
/*N*/ {
/*N*/   if(mpDescrLists)
/*?*/       delete[] mpDescrLists;
/*N*/   if(mpDescrGroups)
/*?*/       delete[] mpDescrGroups;
/*N*/   if(mpDescrArray)
/*?*/       delete[] mpDescrArray;
/*N*/ }


/*N*/ void ChartDataDescription::Dirty2D( BOOL /*bRowDescr*/ )
/*N*/ {
/*N*/
/*N*/   if(mpDescrLists)
/*N*/   {
/*?*/       for( long nRow = 0; nRow < mnRows; nRow ++ )
/*?*/       {
/*?*/           if( mpDescrLists[nRow] )
/*?*/           {
/*?*/               for( long nCol = 0; nCol < mnCols; nCol++ )
/*?*/               {
/*?*/                       long nIndex = nCol + nRow * mnCols;
/*?*/                       if (mpDescrArray[nIndex].fValue != DBL_MIN)
/*?*/                           if (mpDescrArray[nIndex].pLabelObj)
/*?*/                               mpDescrLists[nRow]->NbcInsertObject(mpDescrArray[nIndex].pLabelObj);
/*?*/               }
/*?*/           }
/*?*/       }
/*N*/   }
/*N*/ }

}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */