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