Branch data 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 : :
21 : : #include "ChartElementFactory.hxx"
22 : : #include "ObjectIdentifier.hxx"
23 : : #include "AccessibleChartElement.hxx"
24 : :
25 : : namespace chart
26 : : {
27 : :
28 : 0 : AccessibleBase* ChartElementFactory::CreateChartElement( const AccessibleElementInfo& rAccInfo )
29 : : {
30 [ # # ]: 0 : ObjectIdentifier aOID( rAccInfo.m_aOID );
31 [ # # ]: 0 : ObjectType eType( aOID.getObjectType() );
32 : :
33 [ # # # # ]: 0 : switch( eType )
34 : : {
35 : : case OBJECTTYPE_DATA_POINT:
36 : : case OBJECTTYPE_LEGEND_ENTRY:
37 [ # # ]: 0 : return new AccessibleChartElement( rAccInfo, false, false );
38 : : case OBJECTTYPE_PAGE:
39 : : case OBJECTTYPE_TITLE:
40 : : case OBJECTTYPE_LEGEND:
41 : : case OBJECTTYPE_DIAGRAM:
42 : : case OBJECTTYPE_DIAGRAM_WALL:
43 : : case OBJECTTYPE_DIAGRAM_FLOOR:
44 : : case OBJECTTYPE_AXIS:
45 : : case OBJECTTYPE_AXIS_UNITLABEL:
46 : : case OBJECTTYPE_GRID:
47 : : case OBJECTTYPE_SUBGRID:
48 : : case OBJECTTYPE_DATA_SERIES:
49 : : case OBJECTTYPE_DATA_LABELS:
50 : : case OBJECTTYPE_DATA_LABEL:
51 : : case OBJECTTYPE_DATA_ERRORS_X:
52 : : case OBJECTTYPE_DATA_ERRORS_Y:
53 : : case OBJECTTYPE_DATA_ERRORS_Z:
54 : : case OBJECTTYPE_DATA_CURVE: // e.g. a statistical method printed as line
55 : : case OBJECTTYPE_DATA_AVERAGE_LINE:
56 : : case OBJECTTYPE_DATA_STOCK_RANGE:
57 : : case OBJECTTYPE_DATA_STOCK_LOSS:
58 : : case OBJECTTYPE_DATA_STOCK_GAIN:
59 : : case OBJECTTYPE_DATA_CURVE_EQUATION:
60 [ # # ]: 0 : return new AccessibleChartElement( rAccInfo, true, false );
61 : : case OBJECTTYPE_UNKNOWN:
62 : 0 : break;
63 : : default:
64 : 0 : break;
65 : : }
66 : :
67 [ # # ]: 0 : return 0;
68 : : }
69 : :
70 : : } // namespace chart
71 : :
72 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|