Avoid potential negative array index access to cached text.
[LibreOffice.git] / chart2 / source / controller / accessibility / ChartElementFactory.cxx
bloba173ac0f4b18e4c9eb900a46ec4aae54a8135356
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "ChartElementFactory.hxx"
21 #include <ObjectIdentifier.hxx>
22 #include "AccessibleChartElement.hxx"
24 namespace chart
26 rtl::Reference<AccessibleBase>
27 ChartElementFactory::CreateChartElement(const AccessibleElementInfo& rAccInfo)
29 ObjectIdentifier aOID(rAccInfo.m_aOID);
30 ObjectType eType(aOID.getObjectType());
32 switch (eType)
34 case OBJECTTYPE_DATA_POINT:
35 case OBJECTTYPE_LEGEND_ENTRY:
36 return new AccessibleChartElement(rAccInfo, 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 return new AccessibleChartElement(rAccInfo, true);
60 case OBJECTTYPE_UNKNOWN:
61 break;
62 default:
63 break;
66 return nullptr;
69 } // namespace chart
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */