tdf#48459 sw inline heading: don't apply inside frames or over 120 chars
[LibreOffice.git] / sc / inc / servuno.hxx
blobb705f3ef01b45e5f5d2515dbda62c539e411880f
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 #pragma once
22 #include <com/sun/star/uno/Sequence.h>
23 #include <com/sun/star/uno/Reference.h>
25 namespace com::sun::star::uno { class XInterface; }
27 class ScDocShell;
29 class ScServiceProvider
31 public:
32 enum class Type
34 SHEET , URLFIELD , PAGEFIELD , PAGESFIELD , DATEFIELD , TIMEFIELD , TITLEFIELD , FILEFIELD ,
35 SHEETFIELD , CELLSTYLE , PAGESTYLE , GRAPHICSTYLE ,
36 // sheet
37 AUTOFORMAT , AUTOFORMATS, CELLRANGES , FUNCTIONDESCRIPTIONS , GLOBALSHEETSETTINGS ,
38 RECENTFUNCTIONS ,
39 // drawing layer tables
40 GRADTAB , HATCHTAB , BITMAPTAB , TRGRADTAB , MARKERTAB , DASHTAB , NUMRULES ,
42 DOCDEFLTS , DRAWDEFLTS ,
44 DOCSPRSETT , DOCCONF ,
46 IMAP_RECT , IMAP_CIRC , IMAP_POLY ,
47 // Support creation of GraphicStorageHandler and EmbeddedObjectResolver
48 EXPORT_GRAPHIC_STORAGE_HANDLER , IMPORT_GRAPHIC_STORAGE_HANDLER , EXPORT_EOR , IMPORT_EOR ,
50 VALBIND , LISTCELLBIND , LISTSOURCE ,
52 CELLADDRESS , RANGEADDRESS ,
54 SHEETDOCSET ,
56 // BM
57 CHDATAPROV , CHART_PIVOTTABLE_DATAPROVIDER,
58 // formula parser
59 FORMULAPARS , OPCODEMAPPER ,
60 // VBA specific
61 VBAOBJECTPROVIDER , VBACODENAMEPROVIDER , VBAGLOBALS ,
63 EXT_TIMEFIELD ,
65 INVALID
68 // pDocShell is not needed for all Services
69 static css::uno::Reference< css::uno::XInterface >
70 MakeInstance( Type nType, ScDocShell* pDocShell );
71 static css::uno::Sequence<OUString> GetAllServiceNames();
72 static Type GetProviderType(std::u16string_view rServiceName);
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */