sw a11y: clang-format SidebarWinAccessible code
[LibreOffice.git] / configmgr / source / xcdparser.hxx
blob1ca32931ea485671c86eb8e0d9d1353360657977
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 <sal/config.h>
24 #include <set>
26 #include <rtl/ref.hxx>
27 #include <rtl/ustring.hxx>
28 #include <xmlreader/xmlreader.hxx>
30 #include "parser.hxx"
32 namespace xmlreader { struct Span; }
34 namespace configmgr {
36 struct Data;
38 class XcdParser: public Parser {
39 public:
40 XcdParser(
41 int layer, std::set< OUString > const & processedDependencies,
42 Data & data);
44 private:
45 virtual ~XcdParser() override;
47 virtual xmlreader::XmlReader::Text getTextMode() override;
49 virtual bool startElement(
50 xmlreader::XmlReader & reader, int nsId, xmlreader::Span const & name,
51 std::set< OUString > const * existingDependencies) override;
53 virtual void endElement(xmlreader::XmlReader const & reader) override;
55 virtual void characters(xmlreader::Span const & text) override;
57 enum State {
58 STATE_START, STATE_DEPENDENCIES, STATE_DEPENDENCY, STATE_COMPONENTS };
60 int layer_;
61 std::set< OUString > const & processedDependencies_;
62 Data & data_;
63 State state_;
64 OUString dependencyFile_;
65 bool dependencyOptional_;
66 rtl::Reference< Parser > nestedParser_;
67 long nesting_;
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */