unoxml: port testXNamedNodeMap_AttributesMap from java to c++
[libreoffice.git] / chart2 / source / inc / servicenames.hxx
blob0f5cbe2b40f93d23fe0ba7b4e414b357a4b74752
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 .
19 #pragma once
21 #include <rtl/ustring.hxx>
23 inline constexpr OUString CHART_MODEL_SERVICE_IMPLEMENTATION_NAME
24 = u"com.sun.star.comp.chart2.ChartModel"_ustr;
25 inline constexpr OUString CHART_MODEL_SERVICE_NAME = u"com.sun.star.chart2.ChartDocument"_ustr;
26 //@todo create your own service containing the service com.sun.star.document.OfficeDocument
28 inline constexpr OUString CHART_VIEW_SERVICE_IMPLEMENTATION_NAME
29 = u"com.sun.star.comp.chart2.ChartView"_ustr;
30 inline constexpr OUString CHART_VIEW_SERVICE_NAME = u"com.sun.star.chart2.ChartView"_ustr;
32 inline constexpr OUString CHART_FRAMELOADER_SERVICE_IMPLEMENTATION_NAME
33 = u"com.sun.star.comp.chart2.ChartFrameLoader"_ustr;
34 inline constexpr OUString CHART_FRAMELOADER_SERVICE_NAME
35 = u"com.sun.star.frame.SynchronousFrameLoader"_ustr;
37 inline constexpr OUString CHART_WIZARD_DIALOG_SERVICE_IMPLEMENTATION_NAME
38 = u"com.sun.star.comp.chart2.WizardDialog"_ustr;
39 inline constexpr OUString CHART_WIZARD_DIALOG_SERVICE_NAME
40 = u"com.sun.star.chart2.WizardDialog"_ustr;
42 inline constexpr OUString CHART_TYPE_DIALOG_SERVICE_IMPLEMENTATION_NAME
43 = u"com.sun.star.comp.chart2.ChartTypeDialog"_ustr;
44 inline constexpr OUString CHART_TYPE_DIALOG_SERVICE_NAME
45 = u"com.sun.star.chart2.ChartTypeDialog"_ustr;
47 // wrapper for old UNO API (com.sun.star.chart)
48 inline constexpr OUString CHART_CHARTAPIWRAPPER_IMPLEMENTATION_NAME
49 = u"com.sun.star.comp.chart2.ChartDocumentWrapper"_ustr;
50 inline constexpr OUString CHART_CHARTAPIWRAPPER_SERVICE_NAME
51 = u"com.sun.star.chart2.ChartDocumentWrapper"_ustr;
53 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */