fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / xmloff / source / text / XMLIndexAlphabeticalSourceContext.hxx
blobcfc1573acfc227aadd66111a1ac530e263043062
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 #ifndef _XMLOFF_XMLINDEXALPHABETICALSOURCECONTEXT_HXX_
21 #define _XMLOFF_XMLINDEXALPHABETICALSOURCECONTEXT_HXX_
23 #include "XMLIndexSourceBaseContext.hxx"
24 #include <com/sun/star/uno/Reference.h>
25 #include <com/sun/star/lang/Locale.hpp>
28 namespace com { namespace sun { namespace star {
29 namespace xml { namespace sax { class XAttributeList; } }
30 namespace beans { class XPropertySet; }
31 } } }
34 /**
35 * Import alphabetical (keyword) index source element
37 class XMLIndexAlphabeticalSourceContext : public XMLIndexSourceBaseContext
39 const OUString sMainEntryCharacterStyleName;
40 const OUString sUseAlphabeticalSeparators;
41 const OUString sUseCombinedEntries;
42 const OUString sIsCaseSensitive;
43 const OUString sUseKeyAsEntry;
44 const OUString sUseUpperCase;
45 const OUString sUseDash;
46 const OUString sUsePP;
47 const OUString sIsCommaSeparated;
48 const OUString sSortAlgorithm;
49 const OUString sLocale;
51 ::com::sun::star::lang::Locale aLocale;
52 OUString sAlgorithm;
54 OUString sMainEntryStyleName;
55 sal_Bool bMainEntryStyleNameOK;
57 sal_Bool bSeparators;
58 sal_Bool bCombineEntries;
59 sal_Bool bCaseSensitive;
60 sal_Bool bEntry;
61 sal_Bool bUpperCase;
62 sal_Bool bCombineDash;
63 sal_Bool bCombinePP;
64 sal_Bool bCommaSeparated;
66 public:
68 TYPEINFO();
70 XMLIndexAlphabeticalSourceContext(
71 SvXMLImport& rImport,
72 sal_uInt16 nPrfx,
73 const OUString& rLocalName,
74 ::com::sun::star::uno::Reference<
75 ::com::sun::star::beans::XPropertySet> & rPropSet);
77 ~XMLIndexAlphabeticalSourceContext();
79 protected:
81 virtual void ProcessAttribute(
82 enum IndexSourceParamEnum eParam,
83 const OUString& rValue);
85 virtual void EndElement();
87 virtual SvXMLImportContext* CreateChildContext(
88 sal_uInt16 nPrefix,
89 const OUString& rLocalName,
90 const ::com::sun::star::uno::Reference<
91 ::com::sun::star::xml::sax::XAttributeList> & xAttrList );
94 #endif
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */