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