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 "drawingml/chart/seriesmodel.hxx"
21 : #include <oox/token/tokens.hxx>
22 :
23 : namespace oox {
24 : namespace drawingml {
25 : namespace chart {
26 :
27 596 : DataLabelModelBase::DataLabelModelBase() :
28 596 : mbDeleted( false )
29 : {
30 596 : }
31 :
32 596 : DataLabelModelBase::~DataLabelModelBase()
33 : {
34 596 : }
35 :
36 256 : DataLabelModel::DataLabelModel() :
37 256 : mnIndex( -1 )
38 : {
39 256 : }
40 :
41 256 : DataLabelModel::~DataLabelModel()
42 : {
43 256 : }
44 :
45 340 : DataLabelsModel::DataLabelsModel() :
46 340 : mbShowLeaderLines( false )
47 : {
48 340 : }
49 :
50 340 : DataLabelsModel::~DataLabelsModel()
51 : {
52 340 : }
53 :
54 468 : PictureOptionsModel::PictureOptionsModel() :
55 : mfStackUnit( 1.0 ),
56 : mnPictureFormat( XML_stretch ),
57 : mbApplyToFront( false ),
58 : mbApplyToSides( false ),
59 468 : mbApplyToEnd( false )
60 : {
61 468 : }
62 :
63 468 : PictureOptionsModel::~PictureOptionsModel()
64 : {
65 468 : }
66 :
67 2 : ErrorBarModel::ErrorBarModel() :
68 : mfValue( 0.0 ),
69 : mnDirection( XML_y ),
70 : mnTypeId( XML_both ),
71 : mnValueType( XML_fixedVal ),
72 2 : mbNoEndCap( false )
73 : {
74 2 : }
75 :
76 2 : ErrorBarModel::~ErrorBarModel()
77 : {
78 2 : }
79 :
80 4 : TrendlineLabelModel::TrendlineLabelModel()
81 : {
82 4 : }
83 :
84 4 : TrendlineLabelModel::~TrendlineLabelModel()
85 : {
86 4 : }
87 :
88 6 : TrendlineModel::TrendlineModel() :
89 : mnOrder( 2 ),
90 : mnPeriod( 2 ),
91 : mnTypeId( XML_linear ),
92 : mbDispEquation( false ),
93 6 : mbDispRSquared( false )
94 : {
95 6 : }
96 :
97 6 : TrendlineModel::~TrendlineModel()
98 : {
99 6 : }
100 :
101 186 : DataPointModel::DataPointModel() :
102 : mnIndex( -1 ),
103 186 : mbInvertNeg( false )
104 : {
105 186 : }
106 :
107 186 : DataPointModel::~DataPointModel()
108 : {
109 186 : }
110 :
111 522 : SeriesModel::SeriesModel() :
112 : mnExplosion( 0 ),
113 : mnIndex( -1 ),
114 : mnMarkerSize( 5 ),
115 : mnMarkerSymbol( XML_auto ),
116 : mnOrder( -1 ),
117 : mbBubble3d( false ),
118 : mbInvertNeg( false ),
119 522 : mbSmooth( false )
120 : {
121 522 : }
122 :
123 522 : SeriesModel::~SeriesModel()
124 : {
125 522 : }
126 :
127 : } // namespace chart
128 : } // namespace drawingml
129 408 : } // namespace oox
130 :
131 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|